Page 23 of 506 FirstFirst ... 1321222324253373123 ... LastLast
Results 221 to 230 of 5054
  1. #221
    Join Date
    May 2007
    Posts
    471
    Plugin Contributions
    0

    Default 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
    Error: Nothing to do - no query or query-file specified. Failed to set up version tracker table /home/content/i/l/o/ilovephotogift/html/admin/includes/module_installation/yellow1912_ssu/current_version.txt is missing Module version could not be found in file and database
    Jill || I Love Zen Cart Templates || 2 Dogs Design
    I Love To Help But Let's Keep It Public Please To Help Others!

  2. #222
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default 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.
    Last edited by yellow1912; 9 May 2008 at 02:30 PM.
    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

  3. #223
    Join Date
    May 2007
    Posts
    471
    Plugin Contributions
    0

    Default 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 ERROR: Cannot create table module_version_tracker because it already exists Note: 1 statements ignored. See "upgrade_exceptions" table for additional details. 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......
    Jill || I Love Zen Cart Templates || 2 Dogs Design
    I Love To Help But Let's Keep It Public Please To Help Others!

  4. #224
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    set admin/includes/module_installation permission to 0777

    Regards
    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

  5. #225
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default 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.
    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

  6. #226
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default 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/
    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

  7. #227
    Join Date
    Feb 2006
    Location
    Central Coast, NSW, Australia
    Posts
    560
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    @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 ?

  8. #228
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default 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.
    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

  9. #229
    Join Date
    Dec 2004
    Posts
    1,031
    Plugin Contributions
    0

    Default 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....
    Live and learn... the Zen way.

  10. #230
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by mydanilo View Post
    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.
    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

 

 

Similar Threads

  1. v151 Simple SEO URLs for ZC 1.5.x [Support Thread]
    By cvhainb in forum All Other Contributions/Addons
    Replies: 46
    Last Post: 8 Jun 2022, 09:42 AM
  2. Simple SEO URL, Ultimate SEO URLs, Ceon URI Mapping SEO
    By pizza392 in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 21 Jan 2015, 10:49 AM
  3. How do I tell what version my Simple SEO URL addon mod, and others, are?
    By kevinmc3 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 6 May 2010, 01:32 AM
  4. Can't create new thread in Simple SEO URL forum
    By gseiber in forum General Questions
    Replies: 1
    Last Post: 3 Apr 2010, 01:56 PM
  5. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR