Search found 5176 matches

Search found 5176 matches

Re: about version 3.0.4.1

There have been no changes to the database tables in 3.0.4.1 from 3.0.4.0. So you shouldn't need to run the upgrade script, just update the files.

Jump to post
  • Tue May 20, 2025 4:26 pm
  • Replies 1
  • Views 319
Re: Opencart and API

OpenCart 3.0.x has an API, but it's really for its own order editor and may not be much use to you.
https://docs.opencart.com/en-gb/system/users/api/

Jump to post
  • Mon May 19, 2025 4:39 pm
  • Replies 4
  • Views 238
Re: what is the difference between Authorization Type: Automatic and Manual?

I'm guessing you are talking about a setting in a payment extension. Perhaps providing more information as suggested in the forum rules would help others answer you question. viewtopic.php?t=200480

Jump to post
  • Fri May 16, 2025 4:08 pm
  • Replies 2
  • Views 2262
Re: How to prevent duplicate products at checkout?

The line of code that adds a customers stored cart when logged is in system/library/cart/cart.php. $this->db->query("UPDATE " . DB_PREFIX . "cart SET session_id = '" . $this->db->escape($this->session->getId()) . "' WHERE api_id = '0' AND customer_id = '" . (int)$this->...

Jump to post
  • Wed May 14, 2025 6:12 pm
  • Replies 13
  • Views 2658
Re: Opencart buying error

I will give up on opencart, because nothing works. I am trying to start this store for a 7 months now and all the time something doesn't work. All the time there is a problem. I have installed opencart for 15 times I even install new server and start all over for 3 times. And now google captcha doe...

Jump to post
  • Tue May 13, 2025 4:00 pm
  • Replies 8
  • Views 699
Re: Warning: open_basedir needs to allow access to /home/...

$json['error'] = sprintf($this->language->get('error_open_basedir'), $required); Did that and we pass the installation process BUT now we have Warning: realpath(): open_basedir restriction in effect. File(/home/..../webapps) is not within the allowed path(s): (/home/..../webapps/.......:/var/lib/ph...

Jump to post
  • Sun May 04, 2025 11:05 pm
  • Replies 12
  • Views 6503
Re: What PHP Mailer does OC v3.0.3.8 use?

oursupersoftware wrote:
Fri May 02, 2025 2:40 pm
Unfortunately both of them give the same error.
If it gives the same error with your domain in the error message then I'm guessing you mail server is doing a reverse DNS lookup and still not allowing that IP address and domain combination.

Jump to post
  • Fri May 02, 2025 5:30 pm
  • Replies 22
  • Views 8742
Re: What PHP Mailer does OC v3.0.3.8 use?

As a test you could replace the SERVER_NAME with an IP address. In ssystem/library/mail/smtp.php chang. fputs($handle, 'EHLO ' . getenv('SERVER_NAME') . "\r\n"); To. fputs($handle, 'EHLO [' . $_SERVER['SERVER_ADDR'] . "]\r\n"); So I tried your response and $_SERVER['SERVER_ADDR'...

Jump to post
  • Thu May 01, 2025 6:57 pm
  • Replies 22
  • Views 8742
Re: Maintenance Mode Message

It's text_message in common/maintenance in the language editor or language files.

Jump to post
  • Wed Apr 30, 2025 6:49 pm
  • Replies 3
  • Views 535
Re: Suggested workflow for shipping PayPal orders

What version of the PayPal Checkout extension are you using? I believe 3.1.0 and above will allow you to send tracking back to PayPal.

Jump to post
  • Fri Apr 25, 2025 11:54 pm
  • Replies 4
  • Views 1287
Re: Warning: open_basedir needs to allow access to /home/...

I’ve tried several things with my provider. I CANNOT get past this point. What a crappy installation. Even the checkbox under Status says "passed." But it keeps showing this error: Warning: open_basedir needs to allow access to /home/un119489/domains/<domain>.nl/ Please help Yes, 4.x seem...

Jump to post
  • Fri Apr 25, 2025 11:19 pm
  • Replies 12
  • Views 6503
Re: Opencart buying error

Try contacting your host. The error suggests that there may be something wrong with the server missing certificates or ciphers. These will not be the same ones used by you domain.

Jump to post
  • Tue Apr 22, 2025 6:37 pm
  • Replies 8
  • Views 699
Re: Upgrading to 4.1 from 4.0.2.3, Error line 9

The upgrade in 4.1.0.3 work for me. You would need to restore from a backup before you attempted the upgrade or fix the errors in you database.

Jump to post
  • Thu Apr 17, 2025 6:13 pm
  • Replies 31
  • Views 7024
Re: Semrush Warning alt attributes opencart defualt loading image.

Look the path. /catalog/view/theme/default/image/loading.gif thats default opencart!!! No it isn't. Look at a clean download and you won't find that file. https://github.com/opencart/opencart/tree/3.0.x.x/upload/catalog/view/theme/default/image It must of been added by your theme or an extension.

Jump to post
  • Thu Apr 17, 2025 4:02 pm
  • Replies 8
  • Views 665
Re: Fedex Extension Isn't connecting to Some addresses but others are OK?

Interesting that the company name had an effect. It's used in the following place in the extension. https://github.com/opencart/opencart/blob/27bc420b43c4c8bcc83c9f30c21939d56a786929/upload/catalog/model/extension/shipping/fedex.php#L104 https://github.com/opencart/opencart/blob/27bc420b43c4c8bcc83c...

Jump to post
  • Thu Apr 17, 2025 12:35 am
  • Replies 11
  • Views 2882
Re: What PHP Mailer does OC v3.0.3.8 use?

As a test you could replace the SERVER_NAME with an IP address.

In ssystem/library/mail/smtp.php chang.

Code: Select all

fputs($handle, 'EHLO ' . getenv('SERVER_NAME') . "\r\n");
To.

Code: Select all

fputs($handle, 'EHLO [' . $_SERVER['SERVER_ADDR'] . "]\r\n");

Jump to post
  • Wed Apr 16, 2025 5:57 pm
  • Replies 22
  • Views 8742
Re: Fedex Extension Isn't connecting to Some addresses but others are OK?

You can check the standard OpenCart error log. The extension will write errors there. If there are no errors it could be that some of the services are not selected in the settings or the services have changed. The built in FedEx extension hasn't been updated in many years.

Jump to post
  • Tue Apr 15, 2025 11:27 pm
  • Replies 11
  • Views 2882
Re: What PHP Mailer does OC v3.0.3.8 use?

I also checked what my SERVER_NAME is, and it's mydomain.com Unfortunately I'm not able to check what SERVER_NAME is on my mail server. The mail server won't have SERVER_NAME as that's just for web servers. It will just be the mail server configuration. Have you asked whoever hosts you mail server?

Jump to post
  • Tue Apr 15, 2025 4:28 pm
  • Replies 22
  • Views 8742
Re: Warning: open_basedir needs to allow access to /home/...

That setting should work as it includes a directory above the install directory. If you do need to change it you will have to ask your host.

Jump to post
  • Tue Apr 15, 2025 4:14 pm
  • Replies 12
  • Views 6503

Search found 5176 matches