Search found 4595 matches

Search found 4595 matches

Re: www.elegantmarket.ro doesn't work properly

Something like the following should work.

Code: Select all

RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^(.*)$ https://.example.com/$1 [R=301,L]

Jump to post
  • Thu Mar 28, 2024 8:28 am
  • Replies 2
  • Views 45
Re: Image manager not working correctly

Use your web browser's developer console to check for errors.

Jump to post
  • Thu Mar 28, 2024 8:23 am
  • Replies 2
  • Views 60
Re: How to disable the Site Shutdown function? 3.0.3.8

Look at the action_pre_action in system/config/catalog.php. You could remove the 'startup/maintenance' entry. Else look in catalog/controller/startup/maintenance.php. However, I wouldn't recommend it as a final solution. If it is being changed by someone and not just a bug, they probably have access...

Jump to post
  • Thu Mar 28, 2024 2:57 am
  • Replies 16
  • Views 265
Re: OpenCart SEO Pagination issue on category pages - /page/2//page/2

I would say category/page/3 is no better for SEO, it may just look nicer. I believe Google expects ?page=3. https://developers.google.com/search/docs/specialty/ecommerce/pagination-and-incremental-page-loading#use-urls-correctly If you did want to fix the issue, try disabling your other extensions t...

Jump to post
  • Thu Mar 28, 2024 2:44 am
  • Replies 5
  • Views 670
Re: access admin module without token

@add creative, It stays on the admin login page and the function doesn't execute. I also removed the parameter and put an index function with a log write in the file just to make sure and that isn't being executed either. Just tested by adding extension/module/account to the 3 lists and I was able ...

Jump to post
  • Thu Mar 28, 2024 2:25 am
  • Replies 7
  • Views 1390
Re: access admin module without token

I'm trying to accomplish the same thing here. I have a cron that I want to run on a controller in the admin and I don't want to bother with events or create a duplicate file in another directory. Is this method of putting the path in the ignore array of the login and permissions file still valid. W...

Jump to post
  • Wed Mar 27, 2024 6:44 pm
  • Replies 7
  • Views 1390
Re: Page number at the end in all our products listings.

Your canonical link on that page is wrong in that it includes the page parameter when is shouldn't. Default OpenCart doesn't do that so it is caused by one one of your extensions.

You could also inspect the URLs in the Google Search Console and see what the referring page is.

Jump to post
  • Tue Mar 26, 2024 5:40 pm
  • Replies 1
  • Views 101
Re: OpenCart SEO Pagination issue on category pages - /page/2//page/2

Check in the extension's options and see it you can switch of the changing of pagination URLs.

Jump to post
  • Tue Mar 26, 2024 8:00 am
  • Replies 5
  • Views 670
Re: how to stop google from indexing this type of URL

Adding to robots.txt will stop Google from crawling, but will not stop indexing. If you want to remove pages from the indexed results, you can set noindex. Adding something like following to htaccess would set noindex. <If "%{QUERY_STRING} =~ m#(sort|order|limit|tag|search|sub_category|descript...

Jump to post
  • Mon Mar 25, 2024 8:03 pm
  • Replies 2
  • Views 125
Re: Discount "-" negative sign missing in checkout total

Try changing.

Code: Select all

'value' => (($discount / 100) * $total['total']),
To.

Code: Select all

'value' => -(($discount / 100) * $total['total']),

Jump to post
  • Sat Mar 23, 2024 5:42 pm
  • Replies 5
  • Views 215
Re: Encoded URL's don't work... And how to fix it?

I don't see any links encoded like that on Google Shopping. How are you sending your products to Google Shopping?

Jump to post
  • Fri Mar 22, 2024 9:04 pm
  • Replies 5
  • Views 225
Re: Log on as admin in maintenance mode and can't see the front end....

As this is present in 4.0.2.3 as well... I'm wondering, what is the intended behavior here ? 2 cookies with same session id (accessing same file / db entry) and different paths? I've hit this issue trying to execute an action triggered by catalog/model/checkout/order/addHistory/before, where I need...

Jump to post
  • Fri Mar 22, 2024 8:24 pm
  • Replies 16
  • Views 1980
Re: Encoded URL's don't work... And how to fix it?

No, because that would be incorrect. Instead of "product_id" being equal to "40", you are saying "product_id=40" is equal to "". = reserved character and should only be encoded if it's data and not used to delimit parameters and parameter values. You can see t...

Jump to post
  • Fri Mar 22, 2024 6:38 pm
  • Replies 5
  • Views 225
Re: Calculating Options Prices

Have you selected - from the drop down when setting the product option price?

Jump to post
  • Fri Mar 22, 2024 5:31 pm
  • Replies 3
  • Views 188
Re: OpenCart SEO Pagination issue on category pages - /page/2//page/2

It's caused by an extension as OpenCart doesn't st the page like that. Check what extensions the store has installed.

Jump to post
  • Fri Mar 22, 2024 1:06 am
  • Replies 5
  • Views 670
Re: Problem with logging in after migrating from localhost to the server.

If the engine is different also check that the field types, lengths and collation are not differnt.

Jump to post
  • Fri Mar 22, 2024 1:02 am
  • Replies 5
  • Views 261
Re: Categories with Subcategories

It does seem to be fixed in the latest code on GitHub.

Jump to post
  • Thu Mar 21, 2024 3:54 am
  • Replies 6
  • Views 471
Re: Error when adding more than 2 images of product

Check the theme image size settings, maybe you have an extra character with the number. Also try the default theme.

Jump to post
  • Mon Mar 18, 2024 8:17 pm
  • Replies 4
  • Views 284
Re: If statement to stop fake registrations

The file would be catalog/controller/account/register.php. You would need to add to function validate. if ($this->request->post['firstname'] == substr($this->request->post['lastname'], 0, strlen($this->request->post['firstname'])) { $this->error['lastname'] = $this->language->get('error_lastname'); ...

Jump to post
  • Mon Mar 18, 2024 5:51 pm
  • Replies 6
  • Views 383

Search found 4595 matches