Thanks for the very quick reply and you were absolutely right. After removing the code it works flawless again.
Thanks!
Printable View
I'm setting up a new 1.3.8a based cart, and decided to use SSU instead of the old Ultimate SEOS my 1.3.6 cart used. Everything seems great, except file extensions don't seem to work for me. I'm sure someone else has probably had a similar issue, I've been searching the thread but I haven't been able to find much.
Just wondering if anyone could point me in a helpful sort of direction.
Thanks
A
I am getting the following error when I go into admin to enable SSU after a fresh install of version 3.6.6 on zencart1.3.8...
Warning: require_once(includes/classes/module_installer.php) [function.require-once]: failed to open stream: No such file or directory in /home/kennebe1/public_html/admin/ssu.php on line 11
Fatal error: require_once() [function.require]: Failed opening required 'includes/classes/module_installer.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/kennebe1/public_html/admin/ssu.php on line 11
Any help?!?!
Thanks
Sounds Good
I have run into a little trouble, I get
when trying to open Simple SEO manager.Quote:
Warning: require_once(includes/classes/module_installer.php) [function.require-once]: failed to open stream: No such file or directory in /home/ccrsport/public_html/admin/ssu.php on line 10
Fatal error: require_once() [function.require]: Failed opening required 'includes/classes/module_installer.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ccrsport/public_html/admin/ssu.php on line 10
I thought I installed everything properly and configured it but probably not. My hiccup may be with the the configure.php file. For DIR_WS_CATALOG I originally had '/' but I changed it to 'RewriteBase /' and not sure if that is right.
You need this installed:
http://zencart-module-manager.google...r_rev16zip.zip
OK, maybe we just need some hand holding, but we're beating our heads against the wall. Or maybe we can't see the forest for the trees <grin>. After going through the several pertinent thread (more than once), we decided SSU was the way for us to go.
We're running 1.37 with several add-ons. But we've set up a test shop using WAMP for a localhost test for our CreekTree shop, installed Module Manager, installed Simple SEO, configured it, and it appears to work fine in both Firefox and IE7. We've run the Google sitemap, Google base, & Live Update add-ons against the localhost database and the XML all appear to have worked fine. So it appears that basically we're in good shape.
But I keep coming back to earlier posts about redirects and the htaccess file, and I can't seem to get my arms around this, after several times thru more than this thread. Are redirects for old URLs an issue any more? If so, what do I need to do? If not, the next step would be backup the production online, and install there?
:blink::dontgetit:unsure:
Many thanks for your input!
Hello Yellow
On one of my site I am trying to apply the redirect from mydomain.com to www.mydomain.com using this code:
This is the current .htaccess I have from your downloadPHP Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
How do I do that using your mod. If I do paste the code to redirect in the current htaccess I get a 500 errorPHP Code:
<PRE>#### 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 /</PRE>
<PRE># Deny access from .htaccess
RewriteRule ^\.htaccess$ - [F]</PRE>
<PRE>RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
#### EOF SSU</PRE>