Re: Simple SEO URL [support thread]
Hi Guys,
I have been using this mod for the last few years.
I have upgrade to 1.3.9f, and upgraded the latest Module manager, and SSU 3.8.5.
It all looks good and like it should be working however every link i click on returns the home page/index only. I have tried to do a whole lot of problem solving myself but cannot isolate whats causing it. I think the htaccess file is not working. What i have is below.
Does anyone smarter than i have any ideas for me to try? :smile:
#### BOF SSU
Options +FollowSymLinks -MultiViews
RewriteEngine On
# Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
#RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L,PT]
#### EOF SSU
Re: Simple SEO URL [support thread]
p.s the url returns correctly but the page renders only as the home page if that helps too.
Re: Simple SEO URL [support thread]
I've installed the latest Simple SEO mod in my 1.3.9 install, and now my admin shows a blank page. I've spent the last few hours diving into it and from the best that I can tell it's crashing in the init_admin_auth.php file. Specifically on the line calling\:
zen_redirect(zen_href_link(FILENAME_LOGIN, '', 'SSL'));
FILENAME_LOGIN is "login"
I don't know enough about zencart or zen_href_link to figure out how to debug further. Has anyone run into this, or doies anyone have advice on getting to the root of the problem? I'm out of ideas.
Thanks,
TJ
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
hitch
Hi Guys,
I have been using this mod for the last few years.
I have upgrade to 1.3.9f, and upgraded the latest Module manager, and SSU 3.8.5.
It all looks good and like it should be working however every link i click on returns the home page/index only. I have tried to do a whole lot of problem solving myself but cannot isolate whats causing it. I think the htaccess file is not working. What i have is below.
Does anyone smarter than i have any ideas for me to try? :smile:
#### BOF SSU
Options +FollowSymLinks -MultiViews
RewriteEngine On
# Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /
# Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
#RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L,PT]
#### EOF SSU
Further to this i have done a Fresh install of zencar t1.3.9f, the latest module manager, and the SSU 3.8.5 and get the same result. I think this means its an internal conflict between the software, or a problem with my htaccess and server however i have tried every option i can find on the htaccess with no success. No errors just the index page re loads on every url clicked (yet the url looks correct)
Does anyone else have this set up working on 1.3.9f? Can anyone help?
Thanks All
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
zubenubi
Having a wee problem with my cart @
http://www.bigmenslargeclothes.co.uk/. When I click on the login link I get brought to the the login page which is https...
when I type in my username and password and click login, I get redirected to the main page but it's an http page (ie without the S)
Going from a secure https to a non secure http results in an error in IE6 which might be a bit off putting to customers.
I've posted elsewhere about this and I'm told (by no less than Dr Byte) that...
to test to see what i mean you can try logging in (using ie6) with
username- test AT gmail DOT com
password-testing
it's doin my loaf in! any help would be appreciated
Hey there, I'm still having problems with this. Anybody any suggestions?
Ta
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
foteek
I've installed the latest Simple SEO mod in my 1.3.9 install, and now my admin shows a blank page. I've spent the last few hours diving into it and from the best that I can tell it's crashing in the init_admin_auth.php file. Specifically on the line calling\:
zen_redirect(zen_href_link(FILENAME_LOGIN, '', 'SSL'));
FILENAME_LOGIN is "login"
I don't know enough about zencart or zen_href_link to figure out how to debug further. Has anyone run into this, or doies anyone have advice on getting to the root of the problem? I'm out of ideas.
Thanks,
TJ
I had the same problem. What i did was in the includes/classes/ssu/parser.php on line 10 the following.
protected protected static function getClass() {
Take the first protected away and it will work
It must look like this.
protected static function getClass() {
Hopes it helps.
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
hitch
Further to this i have done a Fresh install of zencar t1.3.9f, the latest module manager, and the SSU 3.8.5 and get the same result. I think this means its an internal conflict between the software, or a problem with my htaccess and server however i have tried every option i can find on the htaccess with no success. No errors just the index page re loads on every url clicked (yet the url looks correct)
Does anyone else have this set up working on 1.3.9f? Can anyone help?
Thanks All
I have the exact same problem, so who knows what can cause this.
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
Waij
I have the exact same problem, so who knows what can cause this.
Run the ssu_check.php that you uploaded when you installed this module. It should be in the root of your server if you haven't deleted it to see what it tell you about your .htaccess file.
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
countrycharm
Run the ssu_check.php that you uploaded when you installed this module. It should be in the root of your server if you haven't deleted it to see what it tell you about your .htaccess file.
I have done this and enetered the suggested code in the htaccess and no change.
any other ideas?
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
hitch
I have done this and enetered the suggested code in the htaccess and no change.
any other ideas?
You can try this. At the end of your .htaccess you will find these 2 lines.
Quote:
#RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L,PT]
Change the top one so it is active like this
Quote:
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
#RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L,PT]
See if that will work for you, and make sure you clear your cache in admin each time you make a change to simple seo.