Search found 5051 matches

Search found 5051 matches

Re: Show store name in the from field on order confirmation emails.

Store Name in the settings is used as the sender for the emails. What do you have it set to?

Jump to post
  • Tue Jan 14, 2025 7:28 pm
  • Replies 1
  • Views 195
Re: Customer/Admin Login problem

You might want to clear all the cookies and then check the domains, path and flags in the console. Maybe you have a redirect to https and you config is http or vice versa.

Jump to post
  • Wed Jan 08, 2025 3:25 am
  • Replies 13
  • Views 1122
Re: Customer/Admin Login problem

Check your admin common.js is correctly loading.

Jump to post
  • Tue Jan 07, 2025 5:36 pm
  • Replies 13
  • Views 1122
Re: Customer/Admin Login problem

Use you web browser's developer tool to check the login request and response in the network tab. Also check the session cookie is not being reset and is for the correct domain and path.

Jump to post
  • Mon Jan 06, 2025 7:36 pm
  • Replies 13
  • Views 1122
Re: Receive an email anytime admin logs in [SOLVED]

Being "trusted" vs being a proper ip address are two different things. This is about the fact that $_SERVER['HTTP_X_FORWARDED_FOR'] may not contain a single ip address but a comma separated string of ip addresses. I.e. a format issue. Whether you should or should not trust what is ultimat...

Jump to post
  • Thu Jan 02, 2025 9:17 pm
  • Replies 39
  • Views 1991
Re: Product discount strange behavior

The master branch on GitHub is a development branch and not version 4.0.2.3. Looks like that part of the code is still being worked or has not been tested.

Jump to post
  • Thu Jan 02, 2025 9:13 pm
  • Replies 5
  • Views 709
Re: Receive an email anytime admin logs in [SOLVED]

Both $_SERVER['HTTP_CLIENT_IP'] and $_SERVER['HTTP_X_FORWARDED_FOR'] should not be trusted. Only use them if you are using a proxy that sets them. If you do need to use them, then pass both though filter_var or at the very least pass through htmlspecialchars (or use $this->request->server version) i...

Jump to post
  • Thu Jan 02, 2025 8:00 pm
  • Replies 39
  • Views 1991
Re: Product discount strange behavior

Looks like you have an extension installed the the issue is with that extension.

Jump to post
  • Thu Jan 02, 2025 7:32 pm
  • Replies 5
  • Views 709
Re: When an affiliate registers an errors come up.

Could be a theme issue. Try with the default theme.

Jump to post
  • Sun Dec 22, 2024 9:39 pm
  • Replies 3
  • Views 615
Re: Office365 > email issue > contact form

You may get more details of why the password was rejected by temporarily changing line 306 of system/library/mail/smtp.php to the following.

throw new \Exception($error_text . ' Reply: ' . $reply);

Jump to post
  • Fri Dec 20, 2024 5:32 pm
  • Replies 14
  • Views 1411
Re: PayPal Checkout Integration Issues

I am having what appears to be the same exact issue. I have been running great since August and now on Dec 16 everything just started marking all orders as cancelled in OC and I can only find them using the missing orders filter. The payments are processing and paypal is collection money but during...

Jump to post
  • Fri Dec 20, 2024 5:23 pm
  • Replies 6
  • Views 2568
Re: My Account page not show up

There is no /account page in OpenCart. The URL should be something like /en-gb?route=account/account.

Jump to post
  • Thu Dec 19, 2024 5:12 pm
  • Replies 3
  • Views 589
Re: Clicking the X clear cart button inside shopping cart doesn't not refresh the page to show empty cart

Use your web browser's developer tool to look for error. There should be a POST via common.js to /index.php?route=checkout/cart/remove which will return JSON and trigger a JavaScript redirect.

Jump to post
  • Wed Dec 18, 2024 8:58 pm
  • Replies 13
  • Views 1149
Re: cache issue with one controller

PHP will set the Cache-Control and Expires headers when session_start is called, with nocache being the default. https://www.php.net/manual/en/function.session-cache-limiter.php In OpenCart 3.0.4.0 the headers have been set for all PHP generated responses. https://github.com/opencart/opencart/commit...

Jump to post
  • Mon Dec 16, 2024 3:37 am
  • Replies 8
  • Views 503
Re: cache issue with one controller

Sounds like a browser cache, but could be a caching proxy or cache extension. What are the Cache-Control and Expires headers set to for that page? Use your web browser developer tool to find out.

Jump to post
  • Sun Dec 15, 2024 11:38 pm
  • Replies 8
  • Views 503
Re: cache issue with one controller

What cache are you trying to stop?

Jump to post
  • Sun Dec 15, 2024 9:06 pm
  • Replies 8
  • Views 503

Search found 5051 matches