Results 1 to 10 of 5054

Hybrid View

  1. #1
    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

  2. #2
    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

  3. #3
    Join Date
    Oct 2008
    Posts
    12
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Alrite, as this may help others, I will try to go through each problem I encountered while helping jill8026 to resolve his problem:
    Thanks so much for providing this explanation. It has gotten me so much further than I was when starting this install. Things seem to be coming together now, I've followed all of the steps you mentioned for people hosting w/ GoDaddy however I seem to be having problems with specific categories and pages.

    For example if you go to my site:
    http://www.sunshinecampingsupplies.com/

    You will notice that the "Tents" category works great, however "Camping Chairs" just displays a blank page. I notice that this only seems to occur on Categories with 1 item in them.

    Also if you go to Tents and order a Coleman Test Tent it takes you to a blank page with the URL /coleman-test-tent-p-13/action/add_product

    I read something about Going to Extras > SSU Manager and delete my cache. I tried that and it works great for "all cache"and "category cache" but for the rest I get the message "cache/ssu folder is not writable Could not open dir". I've confirmed that all folders in the cache dir are set to 777. When I browse those folders I see that there are files in the cache/categories directory, but there aren't any in the cache/pages directory.

    I'm using the .htaccess file you mentioned in that post about godaddy. here is what i'm using:

    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 /
    
    # 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
    Anything you could do to point me in the right direction would sure be appreciated because I'm out of ideas here.

    Thanks so much,

    Tom

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

    Default Re: Simple SEO URL [support thread]

    For a faster fix, I sent you a pm to see if I can access your site. Im very interested to see why we have such problem with GoDaddy as well.
    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

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