Yay! As per PM instructions, upgraded to version 3.6.2 and the page links are working the way they should now! Thanx Yellow!![]()
Yay! As per PM instructions, upgraded to version 3.6.2 and the page links are working the way they should now! Thanx Yellow!![]()
HunnyBee Design
"A man's manners are a mirror in which he shows his portrait." ~ Johann Wolfgang von Goethe
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Hi yellow,
I just installed SSU v3.5.2 (php5) on my another store
When ssu is turned on, the main page of the store loads fine but for the categories and products "Redirect Loop" error is displayed.
My store url is: http://www.starruby.in/store
Contents of store/.htaccess file before installing ssu:
##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:
Options +FollowSymLinks
RewriteEngine On
#RewriteBase /store/
# From Ultimate SEO URLs
RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING}
RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING}
RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING)
RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING)
# For Open Operations Info Manager
RewriteRule ^(.*)-i-([0-9]+).html$ index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING}
# For dreamscape's News & Articles Manager
RewriteRule ^news/?$ index\.php?main_page=news&%{QUERY_STRING}
RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING}
RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING}
RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING}
RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING}
RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING}
RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING)
# 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}
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.* [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301]
Contents of store/.htaccess file after installing ssu:
##### NOTE: Replace /shop/ with the relative web path of your catalog in the "Rewrite Base" line below:
Options +FollowSymLinks
RewriteEngine On
#RewriteBase /store/
#### BOF SSU
Options +FollowSymLinks
RewriteEngine On
# Change "/zencart/ to the correct setting
# if your site is located at root folder, then you should have RewriteBase /
# Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
RewriteBase /store/
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} -f [OR]
RewriteCond %{SCRIPT_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU
# For Open Operations Info Manager
RewriteRule ^(.*)-i-([0-9]+).html$ index\.php?main_page=info_manager&pages_id=$2&%{QUERY_STRING}
# For dreamscape's News & Articles Manager
RewriteRule ^news/?$ index\.php?main_page=news&%{QUERY_STRING}
RewriteRule ^news/rss.xml$ index\.php?main_page=news_rss&%{QUERY_STRING}
RewriteRule ^news/archive/?$ index\.php?main_page=news_archive&%{QUERY_STRING}
RewriteRule ^news/([0-9]{4})-([0-9]{2})-([0-9]{2}).html$ index\.php?main_page=news&date=$1-$2-$3&%{QUERY_STRING}
RewriteRule ^news/archive/([0-9]{4})-([0-9]{2}).html$ index\.php?main_page=news_archive&date=$1-$2&%{QUERY_STRING}
RewriteRule ^news/(.*)-a-([0-9]+)-comments.html$ index\.php?main_page=news_comments&article_id=$2&%{QUERY_STRING}
RewriteRule ^news/(.*)-a-([0-9]+).html$ index\.php?main_page=news_article&article_id=$2&%{QUERY_STRING)
# 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}
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.* [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301]
I am sure this error has something to do with the .htaccess file.
Also one more problem is that I had configured the .htaccess file so as to automatically redirect non-www users to the www version of the site (that is from http://starruby.in/store to http://www.starruby.in/store). However after adding the ssu code to .htaccess file even that code does not work.
I have turned off ssu temporarily until this problem is sorted out.
Thanks,
Harshil
Last edited by starruby; 28 Dec 2008 at 05:41 PM. Reason: Edited to add: I had ultimate seo urls previously installed which I removed before installing ssu
Why do you have htaccess rule for Ultimate seo url there?
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Also, the code to redirect www etc has to be placed BEFORE ssu code.
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
a Problem duplicate.html)
http:/...../sillas-de-paseo-bebe-confort-c-217_242.html
http://..../sillas-de-paseo-bebe-confort-c-217_242
If in the url I put with http:/...../sillas-de-paseo-bebe-confort-c-217_242.html me has to transform it in http://..../sillas-de-paseo-bebe-confort-c-217_242 or error404
This mod is awesome!!! However, I'm having a problem with the Wordpress integration (WOZ) I used. Before installing SSU the url for my wordpress install was http://www/sitename.com/index.php?main_page=wordpress
SSU wants to rewrite it to http://www.sitename.com/wordpress
which breaks my wordpress page.
Does anybody have any familiarity with this?
I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me
Bookmarks