Right, fixed the problem. Basically, because I have only one language installed, I had to define the language as SEO_URL($languages_id = 1) :)
Printable View
Right, fixed the problem. Basically, because I have only one language installed, I had to define the language as SEO_URL($languages_id = 1) :)
Little problem, I have read through most of this thread and think I've got the general jist of it.
The SEO URL's work as expected, but whenever I try and login and place an order etc. I get a 404 page.
We are using a shared SSL to handle the payment/accounts. Reading this thread there's a lot of people who say "Set Skip SSL".
I am using version 2.103 of the plugin and 1.3.7 of Zen, and having trouble to find the checkbox.
Is it only in the beta? As it's a live shop, I'm a bit apprehensive using the beta installation.
Failing that, what could be the problem and any suggestions to how I can go to fix it?
View this post and download the beta and check out the official SEO URL Bug tracker.
You need to be on the beta - or at least, that's how I got my stores working.
But, obviously, TEST ON A TEST SITE FIRST! And if you can't, back everything (including databases) up, twice for good measure, then do it at 3am!
I am having problems with not receiving my paypal orders. I see that this was a problem in Dec and Jan, has it been fixed? I am trying to figure out if this is the problem, anyone else having trouble with it?
Yes, View this post and checkout the official SEO URL Bug tracker.
I am using zen cart 1.3.7 seo 3.0
.htaccess.php_seo:
##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /www.mommyandbabyessentials.com/
# From Ultimate SEO URLs
RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
# For Open Operations Info Manager
RewriteRule ^(.*)-i-([0-9]+).html$ index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING} [L]
# For dreamscape's News & Articles Manager
RewriteRule ^news/?$ index\.php?main_page=news&%{QUERY_STRING} [L]
RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING} [L]
RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING} [L]
RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING} [L]
RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING} [L]
RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING} [L]
RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING} [L]
# All other pages
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*).html$ index\.php?main_page=$1&%{QUERY_STRING} [L]
Thanks, this is getting very frustrating, not being able to see orders!!
OK, whoah whoah whoah there! Someone didn't read the manual, did they ;)
First of all, there's something seriously wrong with the rewrite base! I'm amazed it works at all, although your shop's not showing any products or anything, which isn't surprising. For you, the rewrite base should be /
This is ALL we have in our .htaccess:
You don't need ANY of that other guff if you're using SEO 3.0 b1.Code:Options +FollowSymLinks
RewriteEngine On
RewriteBase /party-store/
So, backup your .htaccess file and try replacing it with
Code:Options +FollowSymLinks
RewriteEngine On
RewriteBase /
Okay I changed it, but it still didn't work. I am very new to this, so I am learning as I go (not a good way!!) Okay, I think I have another problem, should I have 2 htaccess.php files? One has google checkout info and the other is the seo info. Is this correct or should I combine them? One is htaccess.php and the other is htaccess.php_SEO Thanks, sorry for the stupid question!