Search found 1469 matches

Search found 1469 matches

Re: moving to new server problem

The whitespace issue is caused by outdated twig dependency on PHP 7.4. I don't have the fixes offhand, you will need to search for it or rollback to php 7.3. There are also a couple more PHP 7.4 fixes needed on OC versions prior to 3.0.3.6 Maybe PM @xxvirusxx he might have a list of fixes for PHP 7.4.

Jump to post
  • Sat Mar 13, 2021 6:24 am
  • Replies 41
  • Views 4900
Re: moving to new server problem

Check your hosting cPanel and see if It has mod-security enabled. Most likely its triggering a rule, you may have to contact your host on this one.

Jump to post
  • Fri Mar 12, 2021 6:39 am
  • Replies 41
  • Views 4900
Re: moving to new server problem

Thank you, almost there ... web now loading but with this: Warning: fopen(/home/rcaction/public_html/storage/logs/openbay.log): failed to open stream: No such file or directory in /home/rcaction/public_html/racevta.com/store/system/library/log.php on line 22Warning: fopen(/home/rcaction/public_html...

Jump to post
  • Fri Mar 12, 2021 6:18 am
  • Replies 41
  • Views 4900
Re: [SOLUTION] OC 3.0.3.7 Timezone Issue

Do you happen to know the mysql syntaxt for the same? I don't have phpmyadmin at the moment. As always backup, but below should work. UPDATE `oc_setting` SET `value` = 'UTC' WHERE `key` = 'config_timezone'; Another option is to set the system/config/default.php timezone to match what you selected i...

Jump to post
  • Fri Mar 12, 2021 4:29 am
  • Replies 60
  • Views 47364
Re: error at file manger image not view

Did you check for mod-security? :path: /image/cache/catalog/Ammrik/photo/ product's /N14826518A/N14826518A_1%20(1)-100x100.jpg Note product's. - A folder name with an Apostrophe could trigger a mod-sec rule, you really shouldn't use Apostrophes in file or folder names. Otherwise check via FTP and se...

Jump to post
  • Thu Mar 11, 2021 5:25 pm
  • Replies 18
  • Views 1059
Re: Options +FollowSymlinks and browser error 500

The best people to ask are your web host, you can read more here - https://stackoverflow.com/a/30911880

Jump to post
  • Thu Mar 11, 2021 5:44 am
  • Replies 3
  • Views 815
Re: error at file manger image not view

Could be a number of things, mod-security, PHP memory limit, etc. Check your browser console logs for any error.

Jump to post
  • Thu Mar 11, 2021 4:20 am
  • Replies 18
  • Views 1059
Re: Error: undefined when accessing store via www

Doesn't really matter. Its a personal preference, as long as you have the proper 301 redirect should be fine.

Jump to post
  • Thu Mar 11, 2021 4:14 am
  • Replies 7
  • Views 581
Re: Product Images Are not Fetching

Hello Mona I have the same problem, i used this mode open graph tags but it doesn't work. all tags are correct but there is something wrong when fetish the image from cache folder. i'm using V3.2.3 may you help me? Use what mod? If you want help provide a link to your site and some relevant informa...

Jump to post
  • Thu Mar 11, 2021 3:17 am
  • Replies 8
  • Views 579
Re: error at file manger image not view

mangood442 wrote:
Wed Mar 10, 2021 8:37 pm
error at file manger image not view
i cant show image at file manger
oc3.0.3.3
Check your PHP server error logs and opencart error logs.

Jump to post
  • Thu Mar 11, 2021 3:15 am
  • Replies 18
  • Views 1059
Re: Duplicate products in order (backoffice)

What theme? Link to site?

Is it duplicated in the customers account as well?

Jump to post
  • Thu Mar 11, 2021 3:10 am
  • Replies 5
  • Views 553
Re: Error: undefined when accessing store via www

You need to redirect www to non-www plenty of topics on here how to do it.

Jump to post
  • Thu Mar 11, 2021 2:56 am
  • Replies 7
  • Views 581
Re: can't login to admin panel

The cause of this for me was definitely changing the time zone in Open Cart settings. Temporary solution was to change line 15 of framework.php in the system folder. The line before: date_default_timezone_set($config->get('date_timezone')); The line after: date_default_timezone_set('America/Chicago...

Jump to post
  • Wed Mar 10, 2021 1:46 pm
  • Replies 25
  • Views 56513
Re: How to edit reward mail style?

Because that email is sent as plain text. To use html you would need to set the Content-Type to html. admin/controller/mail/reward.php $mail->setText($this->load->view('mail/reward', $data)); to $mail->setHtml($this->load->view('mail/reward', $data)); Then clear your twig cache.

Jump to post
  • Wed Mar 10, 2021 7:36 am
  • Replies 1
  • Views 228
Re: Modifications overrides: /system/storage/modification and /storage/modification

Hi, I'm getting confused by the following two caching folders: /storage/modification /system/storage/modification What's the difference between them? system/storage/modification is default on install. When you first install opencart it will prompt you to move the storage folder outside of the publi...

Jump to post
  • Tue Mar 09, 2021 4:35 pm
  • Replies 5
  • Views 599
Re: Modifications overrides: /system/storage/modification and /storage/modification

/storage/modification ^ This is where ocmod cache files are written to. Basically its a clone of the original file with modifications (ocmod) applied to it. If your looking at getting into Opencart development also reference the wiki. Ocmod: https://github.com/opencart/opencart/wiki/Modification-Sys...

Jump to post
  • Tue Mar 09, 2021 4:30 pm
  • Replies 5
  • Views 599
Re: Image not showing after Server migration

Opencart version?

PHP error logs and opencart error logs?

Jump to post
  • Tue Mar 09, 2021 8:49 am
  • Replies 6
  • Views 541
Re: Shipping products in separate boxes

Doubt the default UPS extension has changed much over the last 3 years. You can always PM the developer and ask.

Might be other options in the marketplace, otherwise you are looking at something custom.

Jump to post
  • Tue Mar 09, 2021 6:58 am
  • Replies 6
  • Views 423
Re: Shipping products in separate boxes

For UPS qphoria has - https://www.opencart.com/index.php?rout ... n_id=19578

If you are a programmer, there are also 3rd party classes to calculate boxing algorithms, but you still need to tie the logic into the shipping API.

Jump to post
  • Tue Mar 09, 2021 6:48 am
  • Replies 6
  • Views 423
Re: Captcha 3 not blocking bots from registering...

An old school HoneyPot method is still pretty effective. Lots of examples you can use.

Jump to post
  • Tue Mar 09, 2021 5:41 am
  • Replies 5
  • Views 671

Search found 1469 matches