Search found 29 matches

Search found 29 matches

acx

Re: RewriteEngine On setting

You have

Code: Select all

RewriteEngine On
more than once.

RewriteEngine On should be at the *very top* of your .htaccess and present only one time.

Jump to post
  • Fri Aug 03, 2018 4:54 pm
  • Replies 1
  • Views 514

acx

Re: Copy existing shop from server locally on xampp

Did you adjust the paths on both catalog and admin of config.php? Chances are, they're pointing to your remote server (host's) directory structure, whereas if you're using XAMPP, your config.php should feature paths similar to this (the path to Opencart on your computer): define('DIR_IMAGE', 'C:\\pa...

Jump to post
  • Fri Aug 03, 2018 4:49 pm
  • Replies 1
  • Views 3919

acx

Re: No image directory

What's in your config.php for the images path (both admin and catalog directories)?
Did you move hosts recently?

Code: Select all

define('DIR_IMAGE', '/this/is/your/image/path/');

Jump to post
  • Fri Aug 03, 2018 4:46 pm
  • Replies 8
  • Views 2694

acx

Re: 404 error for SEO url after upload from local host to live

Is this your path on your host's server? RewriteBase /opencart/ Usually, it is something like: RewriteBase / or RewriteBase /public_html/user/example.com/ Also check the paths in your config.php file, as well as admin/config.php Additionally, this is a localhost path: <Directory "D:/xampp/apps/...

Jump to post
  • Thu Jun 14, 2018 2:50 am
  • Replies 1
  • Views 1513

acx

Re: editing controller but dont effect the frontend

Editing the controller alone does not pass data to the front-end; the controller passes data. You then have to call the data the controller is passing. Say you make the change in your controller, like so: $data['mytest'] = 'this is my test'; You have to edit the corresponding template file (aka 'the...

Jump to post
  • Mon May 28, 2018 12:48 pm
  • Replies 2
  • Views 1628

acx

Re: Hepl HTTPS to HTTPSS error

Open config.php in your public_html folder and look for httpss in the settings and set it to https.

Jump to post
  • Fri May 18, 2018 1:31 am
  • Replies 9
  • Views 2501

acx

Re: Https password protected store folder authenticating twice

htpasswd authentication is a server directive, not related to Opencart. When you visit this password-protected page for the first session, is the URL or bookmark you are accessing with, http? RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L] Because if you are, once ...

Jump to post
  • Wed May 09, 2018 1:16 pm
  • Replies 5
  • Views 1057

acx

Re: Change item name for paypal order

You can change what is passed to PayPal from the payment extension controller.

For example, if you're using PayPal standard:
controller/extension/payment/pp_standard.php:

Code: Select all

$data['item_name'] = html_entity_decode(//put what you want in this spot//, ENT_QUOTES, 'UTF-8');

Jump to post
  • Tue May 08, 2018 10:56 am
  • Replies 4
  • Views 21687

acx

Re: Canada and US shipping

I am having difficulty with shipping my products using Canada Post and USPS. Do I need 2 sites.. a .com for USPS and a .ca for Canada Post? Or is there a way to have both on one site? You can have both on one site. You can either: - Install shipping modules specific to either USPS & Canada Post...

Jump to post
  • Tue May 08, 2018 10:51 am
  • Replies 1
  • Views 275

acx

Re: Can't login to admin after SSL expired

Can you get into ftp?

If so, login and navigate to admin/config.php and replace the https entry with http, and you will be able to login to your site without ssl.

Jump to post
  • Mon May 07, 2018 8:28 am
  • Replies 1
  • Views 813

acx

Re: Not able to get alert emails form web site.

Check with your host. If you are unknowingly using incorrect mail settings, failures may not show up in Opencart's error logs, but they will appear in the server's syslog.

Jump to post
  • Mon May 07, 2018 8:25 am
  • Replies 5
  • Views 2083

acx

Re: Debugging events with no logs

The renaming was indeed the cause of the problem. Although I cleared the VQcache and refreshed the modifications in OC it still expected the old class name somehow. If this is an extension, you also need to clear the modification cache and/or update the code that is saved to the modification databa...

Jump to post
  • Mon May 07, 2018 8:16 am
  • Replies 6
  • Views 3089

acx

Re: Invalid token session. Please login again.

Have you made any changes recently?

This tends to happen when the url gets malformed; most commonly, a space between the token =sdgsghuisdjndsui

Jump to post
  • Wed May 02, 2018 12:25 am
  • Replies 22
  • Views 19546

acx

Re: Debugging events with no logs

Fatal error: Class 'Controllereventshippingrate' not found in D:\appdata\IIS\vhosts\domain\subdomain\vqmod\vqcache\vq2-storage_modification_system_engine_action.php on line 71 This is from vQmod, there's a missing class it expects to see, but doesn't: Controllereventshippingrate - Clear the vQmod c...

Jump to post
  • Wed May 02, 2018 12:08 am
  • Replies 6
  • Views 3089

acx

Re: Orders only showing "Backordered"

Check what Stripe's default statuses are set to under Extensions -> Payment -> Stripe. Also check your settings on Stripe's website to see if perhaps they upgraded the API your extension is using that sends unexpected results (though unlikely; providers tend to send warnings before doing such a move...

Jump to post
  • Thu Apr 26, 2018 7:55 am
  • Replies 1
  • Views 399

acx

Re: Debugging events with no logs

Often times when Open carts' error.log is empty, the errors get logged to the server logs.

Check your control panel's error log and you'll likely find messages of interest.

Jump to post
  • Thu Apr 26, 2018 7:52 am
  • Replies 6
  • Views 3089

acx

Re: Question on Compatibility

PHP 5.6 & 7.0 are end of life later this year. http://php.net/supported-versions.php You may have a longer leeway being on Centos (with regards to 7.0.x) as they backport security patches, but if at all possible - get off 5.3 immediately. You're running a large number of unpatched vulnerabilitie...

Jump to post
  • Sun Apr 22, 2018 2:54 pm
  • Replies 2
  • Views 536

acx

Re: Include parent category slug in url of categories

You would have to rewrite the code bits that generate the breadcrumb on categories *and* product pages, as well as adjust the reference in htaccess that process the redirects.

It's worth mentioning that "long" urls have a counter-active measure when it comes to SEO.

Jump to post
  • Sat Apr 21, 2018 12:11 pm
  • Replies 5
  • Views 1601

acx

Parent Category Breadcrumbs for 2.3.0.2 & 3.0.2.0 Free

This super simple Opencart plugin works by adding a modification to your Opencart product page that generates SEO-friendly links to all parent and subcategories for the product. https://image.opencart.com/cache/5adab44591ca4-resize-710x380.jpg Download from Opencart Marketplace View the source code ...

Jump to post
  • Sat Apr 21, 2018 12:03 pm
  • Replies 0
  • Views 1700

acx

Re: Having some mysql issues

Are you trying to install?

If so, select PDO instead of MySQLi and see if that works.

Jump to post
  • Sat Apr 21, 2018 7:39 am
  • Replies 4
  • Views 2912

Search found 29 matches