Re: Simple SEO URL [support thread]
sorry about that...I have that installed but now have the following..
still NO INPUT FILE when clicking on a product and here is the error I get in the admin area:
Warning: file(/home/content/i/l/o/ilovephotogift/html/admin/includes/module_installation/install.sql): failed to open stream: No such file or directory in /home/content/i/l/o/ilovephotogift/html/admin/includes/classes/module_installer.php on line 201
http://www.ilovephotogifts.com/admin...cons/error.gif Error: Nothing to do - no query or query-file specified. http://www.ilovephotogifts.com/admin...cons/error.gif Failed to set up version tracker table http://www.ilovephotogifts.com/admin...ns/warning.gif /home/content/i/l/o/ilovephotogift/html/admin/includes/module_installation/yellow1912_ssu/current_version.txt is missing http://www.ilovephotogifts.com/admin...cons/error.gif Module version could not be found in file and database
Re: Simple SEO URL [support thread]
Hi jill,
Make sure you downloaded that module from here (rev15) and upload the unzipped package to its appropriate folders:
http://code.google.com/p/zencart-mod...downloads/list
From the errors you posted, it looks like the needed files are not there.
Regards.
PS: you are missing admin/includes/module_installation/install.sql for some reason.
Re: Simple SEO URL [support thread]
thanks yellow...i am getting there but still have issues....
here is admin errors that are left in extras/simple seo manager:
Failed: 1 http://www.ilovephotogifts.com/admin...cons/error.gif ERROR: Cannot create table module_version_tracker because it already exists http://www.ilovephotogifts.com/admin...ns/warning.gif Note: 1 statements ignored. See "upgrade_exceptions" table for additional details. http://www.ilovephotogifts.com/admin...cons/error.gif Failed to set up version tracker table
That is what comes up as soon as I enter it.....
and I am still getting the error of no input file specified when I click on a category on my site although the category title is correct......
Re: Simple SEO URL [support thread]
set admin/includes/module_installation permission to 0777
Regards
Re: Simple SEO URL [support thread]
Alrite, as this may help others, I will try to go through each problem I encountered while helping jill8026 to resolve his problem:
1. You need module-manager for this mod:
http://code.google.com/p/zencart-mod...downloads/list
Troubleshooting: http://code.google.com/p/zencart-mod...i/Installation
2. No input file specified.
This seems to be a specific problem because of the way GoDaddy configured their server, it may happen on other hosts that use php on cgi as well.
Seems like a number of fixes needed to be applied when you encounter this problem:
i. Use the .htaccess below:
Code:
#### BOF SSU
Options +FollowSymLinks -MultiViews
RewriteEngine On
# Make sure to change "test_site" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
RewriteBase /test_site/
# 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
ii. Create a file call php.ini in your ZC root folder with the content:
Code:
cgi.fix_pathinfo = 1
If you are using php5, change that to php5.ini
iii. Open includes/init_includes/init_ssu.php and find this line:
PHP Code:
function parse_url(){
global $request_type;
Add below:
PHP Code:
foreach($_GET as $key=>$value)
if(strstr($key,'/') || strstr($value,'/')) unset($_GET[$key]);
That's it for now, I will try to find a better way to get around this problem.
Re: Simple SEO URL [support thread]
SSU rev 229 released
1. Address a number of problems encountered when running PHP as CGI
2. Use strpos instead of strstr
3. Minor bug fixes
https://svn.rubikintegration.com/zen...ipped_modules/
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
yellow1912
@Mike:
If you think of it like this: think of category as a parent folder, then the product as a file or a child folder, now does it make more sense to use the current link style?
Plus this link style is used by most website out there (Zencart or not), so I believe people will be more familiar with it.
Thanks mydanilo and yellow
I took a read through from 140 as suggested, and can see the points of discussion regarding the need for category id to be in the URL,
Howver, like mydanilo, I have seen a few other sites that are Zen, and using an alternate SEO and they do not include the cat id..
If it has to be, then it has to be, just I agree with others that the "look" of the URL is just as important, which brings to me another point, can you force the URL to include Uppercase First Character in the URL ?
Re: Simple SEO URL [support thread]
Well, since you can have thousands of products/categories, some of them have the same name, the id MUST be there on the link, no other way.
As for the cat id, you can remove them, but if you do so you have to remove them from All product links to avoid duplicated content. And as I mentioned before, zencart by default has it there, that means that it is needed somewhere. Removing it means you risk losing a core feature.
Why do you want to have upper case in the links? People always try to avoid that as much as they can.
Re: Simple SEO URL [support thread]
Mike, have you ever seen upper case in a url? Don't think that is even possible. Try and type an url in the address bar in your browser and hit enter. See what happens? Url's are lower case....
Re: Simple SEO URL [support thread]
Quote:
Originally Posted by
mydanilo
Mike, have you ever seen upper case in a url? Don't think that is even possible. Try and type an url in the address bar in your browser and hit enter. See what happens? Url's are lower case....
If you havent noticed yet, cPath has the P in uppercase.
@Mike: But why do we have to complicate things? I dont feel comfortable with upper case in the links. And SSU is open-source, you can jump in and make the changes you want. The function you want to edit is _parse_name, clean cache after you make any change.