Search found 4600 matches

Search found 4600 matches

Re: Password Reset Email Issue

Could be an issue with the version of Twig on PHP 7.4. There are a few topics on the forum about it.
viewtopic.php?f=199&t=228129

Jump to post
  • Thu Jun 30, 2022 9:17 pm
  • Replies 6
  • Views 229
Re: Password Reset Email Issue

It would be helpful to give more information such as PHP version, theme, extensions and whether it's the customer reset email or not.

Jump to post
  • Thu Jun 30, 2022 4:43 pm
  • Replies 6
  • Views 229
Re: Payment Methods show a form to fill in credit card information

larenewadespitler wrote:
Thu Jun 30, 2022 1:21 am
I grabbed the original Opencart 2.3.0.2 PayPal files for Controller, Language, Model, and View and replaced them in my Document Root Catalog folder. It didn't help.
Did you check for those files in storage/modification for any changes?

Jump to post
  • Thu Jun 30, 2022 3:11 am
  • Replies 12
  • Views 932
Re: Unable to login Admin Dashboard and as a Returning Customer

What PHP version are the sites running on? Have you checked the PHP error log as well as the OpenCart one?

Jump to post
  • Wed Jun 29, 2022 7:16 pm
  • Replies 6
  • Views 369
Re: Payment Methods show a form to fill in credit card information

You may have already done this, but first check the pp_payflow_iframe.php files in the controller, model and language extension/payment folders. Compare them against a clean download. You could also compare all your files.

Jump to post
  • Wed Jun 29, 2022 7:35 am
  • Replies 12
  • Views 932
Re: Show count in filter only but not category

Switch it off and change this line to the following.
https://github.com/opencart/opencart/bl ... er.php#L59

Code: Select all

'name'      => $filter['name'] . ' (' . $this->model_catalog_product->getTotalProducts($filter_data) . ')'

Jump to post
  • Wed Jun 29, 2022 12:31 am
  • Replies 2
  • Views 148
Re: Unable to pass step 3 OpenCart configuration

You need mysqli enabled. It also best not to make your phpinfo public.

Jump to post
  • Tue Jun 28, 2022 4:33 pm
  • Replies 1
  • Views 221
Re: XML view is not being generated.

If there is not a unique line. Either use the index attribute on the search to select the correct search line. Or use a unique line to search for and use the offset attribute on the add to add your code in the correct position. See the examples at the link below. Also look at the vQmod documentation...

Jump to post
  • Tue Jun 28, 2022 12:52 am
  • Replies 22
  • Views 918
Re: XML view is not being generated.

You can use replace. <file path="admin/model/catalog/product.php"> <operation> <search> <![CDATA[mpn = '" . $this->db->escape($data['mpn']) . "',]]> </search> <add position="replace"> <![CDATA[mpn = '" . $this->db->escape($data['mpn']) . "', cost = '" . $...

Jump to post
  • Mon Jun 27, 2022 3:24 am
  • Replies 22
  • Views 918
Re: XML view is not being generated.

The search will find all places anyway. So if you have the same entry in two places you will get two changes.

Jump to post
  • Sat Jun 25, 2022 8:48 pm
  • Replies 22
  • Views 918
Re: XML view is not being generated.

You can't search for multiple lines, only single lines.

Jump to post
  • Sat Jun 25, 2022 1:58 am
  • Replies 22
  • Views 918
Re: External processing guide?

You can add order statuses in System -> Localisation -> Order Statuses. Look at addOrderHistory for what you should change when updating the status. https://github.com/opencart/opencart/blob/3.0.3.8/upload/catalog/model/checkout/order.php#L344-L346 Payment extension shouldn't have an issue with diff...

Jump to post
  • Fri Jun 24, 2022 4:17 pm
  • Replies 2
  • Views 124
Re: frontend not working Fatal error: Uncaught Error: Call to a member function link

It would be helpful to post your OpenCart version, PHP version, theme and any extensions you are using.

Jump to post
  • Thu Jun 23, 2022 9:33 pm
  • Replies 2
  • Views 158
Re: What does this mean ? public_html/admin/model/tool/image.php on line 14

It means one of your image files has something wrong with it. It also looks like you have display errors on. If your site is a live site you need to switch off displaying of errors. You need make sure display errors in set to off in all 3 places. Your PHP settings, in system/config/default.php and i...

Jump to post
  • Thu Jun 23, 2022 5:44 pm
  • Replies 7
  • Views 439
Re: Admin order email FROM/TO

The simplest would be the following. but you might have to change the sender as well.

Code: Select all

$header .= 'From: =?UTF-8?B?' . base64_encode($this->sender) . '?= <no-reply@example.com>' . PHP_EOL;

Jump to post
  • Thu Jun 23, 2022 4:15 pm
  • Replies 3
  • Views 88
Re: WWW settings question

You will need to decide if you want to use www or without. Then set your config.php files with the correct version and add a redirect in your htaccess to redirect from one to the other.

Jump to post
  • Wed Jun 22, 2022 11:48 pm
  • Replies 13
  • Views 1747
Re: Customer Was Allowed to Checkout Without Paying Using 'Free Checkout'

siteadvice wrote:
Wed Jun 22, 2022 11:02 pm
Mostly I was just interested to find out if there are any known incidences of this happening.
Not seen this happen myself. However, we find most checkout problems are caused by extensions.

Jump to post
  • Wed Jun 22, 2022 11:46 pm
  • Replies 12
  • Views 442
Re: Admin order email FROM/TO

It would depend on if you wanted to change the from address for all emails or just some of them.

Having the to and from the same shouldn't cause any problems. Are you SPF and DKIM records set correctly for your domain? Have you checked with an online email deliverability tester?

Jump to post
  • Wed Jun 22, 2022 9:43 pm
  • Replies 3
  • Views 88
Re: Customer Was Allowed to Checkout Without Paying Using 'Free Checkout'

When you view the order in your admin, is the Payment Method actually set to Free Checkout?

Have you checked both the OpenCart and PHP error logs for error messages at the time of the order?

What theme and extensions are you using?

Jump to post
  • Wed Jun 22, 2022 7:46 pm
  • Replies 12
  • Views 442

Search found 4600 matches