Search found 1469 matches

Search found 1469 matches

Re: Button change stylesheet

Code: Select all

@media (prefers-color-scheme: dark) {}
Not really an opencart question, you could use local storage to save the user preference. Otherwise you can use @media CSS at-rule mentioned above to auto-detect in modern browsers.

Jump to post
  • Tue Mar 09, 2021 5:14 am
  • Replies 8
  • Views 634
Re: Shared Server Permission Issue wont allow extension installation

phil_was_here wrote:
Tue Mar 09, 2021 2:51 am
When install any extension from exetension installer it says


Extension installation taking place please wait...

And does nothing

The installer moved the folders itself.
Check your PHP server error log and opencart error log.

Also to ensure this isn't a cache issue, try in another browser.

Jump to post
  • Tue Mar 09, 2021 3:34 am
  • Replies 12
  • Views 646
Re: Opencart 3 on AWS Lightsail not allowing to install extensions

manos.lk wrote:
Sat Mar 06, 2021 3:27 am
"Internal Server Error" and stops. When I refresh the page, the extension installer page lists out the extension, but it does not work.
PHP server error logs are needed for 500 errors. When you obtain that post back.

Jump to post
  • Tue Mar 09, 2021 2:33 am
  • Replies 2
  • Views 372
Re: Shared Server Permission Issue wont allow extension installation

phil_was_here wrote:
Tue Mar 09, 2021 2:02 am
Well...
Folder is outside public_html and permissions are 755 yet i cant install extensions....

Explain more by "cant install". Are you getting an error from OC or just nothing happens?

Jump to post
  • Tue Mar 09, 2021 2:25 am
  • Replies 12
  • Views 646
Re: Multiple Users logged in with the same account

Should also look at your phpinfo and see what's under session. Issue might lie there or with your web host.

Jump to post
  • Mon Mar 08, 2021 1:49 am
  • Replies 17
  • Views 1521
Re: Load Products in Catalog (ADMIN) is too slow

There is no one answer for this. Your best bet is to work with a developer and sever admin. Depends on the many factors (eg number of users on the site, no Indexes, poorly written extensions, etc) . There are "cache extensions" on the marketplace you can also try. With a million products, ...

Jump to post
  • Sun Mar 07, 2021 3:43 am
  • Replies 3
  • Views 421
Re: What SMTP cipher (?) is Opencart using

Jale wrote:
Sat Mar 06, 2021 7:17 pm
  • Engine: SMTP
  • SMTP host: ssl://smtp.zoho.eu
  • SMTP port: 465
What the hell is a cipher?
  • SMTP host: ssl://smtp.zoho.eu
SSL is your Encryption protocol. For Zoho I believe you need your store email to also match that of your Zoho email account, also you may need an APP password setup.

Jump to post
  • Sun Mar 07, 2021 3:34 am
  • Replies 3
  • Views 242
Re: New Install - can't save store settings - "The page you request cannot be found"

Check and see if mod-security is being triggered. You might have.a section in your hosting control panel to manage mod-sec or otherwise reach out to your host.

Jump to post
  • Sun Mar 07, 2021 2:20 am
  • Replies 1
  • Views 247
Re: emailing problem

Check your PHP server error log. Ensure you have proper SPF and DKIM records setup.

Reach out to your web host and explain the issue.

Jump to post
  • Sat Mar 06, 2021 5:23 pm
  • Replies 14
  • Views 924
Re: Fatal Error trying to go to backup/restore

Use phpMyAdmin for import/Export. Problems like this are one of the reasons that built in feature isn't the best option.

Jump to post
  • Sat Mar 06, 2021 10:23 am
  • Replies 7
  • Views 1815
Re: Version 3.0.3.6 twig debug (dump)

For OC 3.0.3.6 twig was updated so you can reference usage below. system/library/template/twig.php $config = array( ... 'debug' => true, // set debug true should not be used in production! ..... After $twig = new \Twig\Environment($loader, $config); Add $twig->addExtension(new \Twig\Extension\DebugE...

Jump to post
  • Sat Mar 06, 2021 6:18 am
  • Replies 4
  • Views 1426
Re: Multiple Users logged in with the same account

Yesterday I had 2 developers checking this for hours and none of them understood it. At some point one of them changed 2 lines in catalog.php to $_['session_engine'] = 'file'; [it was DB before] $_['session_name'] = 'OCSESSIDXXX'; [ one of the domains has only 3 letters - here XXXX- to the end of O...

Jump to post
  • Sat Mar 06, 2021 2:48 am
  • Replies 17
  • Views 1521
Re: How to retrieve customer database

fegdeed wrote:
Fri Mar 05, 2021 6:07 am
I agree with phpMyAdmin database export, but does "system > maintenance > backup/restore" in opencart admin work?
Not advised using that for database work or anything in that regard. phpMyAdmin, IDE or SQL dump are your best options.

Jump to post
  • Fri Mar 05, 2021 6:31 am
  • Replies 6
  • Views 439
Re: recurrent site goes down need databse repair

megalca wrote:
Thu Mar 04, 2021 12:57 am
Extensions:
I am only using extensions downloaded from the opencart marketplace. I would even know where to start to make an extension.
Thanks
List the extensions please? Link to site? Are you using Journal theme?

Jump to post
  • Thu Mar 04, 2021 2:25 am
  • Replies 30
  • Views 1497
Re: recurrent site goes down need databse repair

megalca wrote:
Tue Mar 02, 2021 7:24 am
#6 /home/ninja/public_html/mydomain.com/sy in /home/public_html/storage/modification/system/library/db/mysqli.php on line 40
What ocmod are you using that would need to modify the system/library/db/mysqli.php??

Jump to post
  • Wed Mar 03, 2021 2:01 pm
  • Replies 30
  • Views 1497
Re: Header fatal error

Caused by an ocmod. You will need to track down the offending extension and contact the developer or otherwise fix it yourself.

Editing the modification cache file will do nothing to permanently fix the issue, you need to resolve the actual modification causing the issue.

Jump to post
  • Tue Mar 02, 2021 5:44 pm
  • Replies 2
  • Views 180
Re: Install inoperable

Check your server PHP error logs.

Jump to post
  • Tue Mar 02, 2021 2:15 am
  • Replies 1
  • Views 321
Re: Enabling SSL breaks images

Not seeing any issue? Link to problem?

Jump to post
  • Tue Mar 02, 2021 2:13 am
  • Replies 3
  • Views 339
Re: [SOLUTION] OC 3.0.3.7 Timezone Issue

Here's my fix in system/framework.php replace date_default_timezone_set($config->get('date_timezone')); with if ($config->has('config_timezone')) { date_default_timezone_set($config->get('config_timezone')); } else { date_default_timezone_set($config->get('date_timezone')); } Either solution could ...

Jump to post
  • Mon Mar 01, 2021 3:43 am
  • Replies 60
  • Views 46649

Search found 1469 matches