Page 181 of 506 FirstFirst ... 81131171179180181182183191231281 ... LastLast
Results 1,801 to 1,810 of 5054
  1. #1801
    Join Date
    Nov 2008
    Location
    Canterbury
    Posts
    44
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi again!

    OK, SSU is now accessible via my admin>extras!

    But I am having trouble with the configuration instructions.

    I am using ZC version 1.3.8a.

    What does this part of the instructions mean??

    WARNING:

    A. If your path_to_store/.htaccess file is not blank, do NOT overwrite it. Open that file and append the following lines:

    #### BOF SSU
    Options +FollowSymLinks
    RewriteEngine On
    # Change "/zencart/ to the correct setting
    # if your site is located at root folder, then you should have RewriteBase /
    # Go to your include/configure.php, this value should be the same with the value of DIR_WS_CATALOG
    RewriteBase /zencart/

    # 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


    Sorry, I am completely dumb at this.

    I have not done what has been specified above, I am assuming it is essential....!

    Any guidance please?

    Thanks

    Paul

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

    Default Re: Simple SEO URL [support thread]

    Paul, that .htaccess file should be placed at your zencart store root folder.

    SSU 3+ goes with a file called ssu_check.php which can be accessed at http://linktoyourstore/ssu_check.php, which will suggest the correct content of .htaccess

    If you read that instruction part slowly, maybe you will get it? If you dont, please list the specific part you dont get.
    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. #1803
    Join Date
    Nov 2008
    Location
    Canterbury
    Posts
    44
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Paul, that .htaccess file should be placed at your zencart store root folder.

    SSU 3+ goes with a file called ssu_check.php which can be accessed at http://linktoyourstore/ssu_check.php, which will suggest the correct content of .htaccess

    If you read that instruction part slowly, maybe you will get it? If you dont, please list the specific part you dont get.
    Hi Yellow, Thanks for your reply.

    OK, where do I get the .htaccess file from? There is one in mystore.co.uk/admin/.htaccess

    There is also a .htaccess in the zip file for SSU. Is it either of those, or are they the same file?

    Once I have the file I just move it to mystore.co.uk/.htaccess ?

    Thanks for your patience!

    Paul

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

    Default Re: Simple SEO URL [support thread]

    The files in the package are in the correct folders already. So if you see a file .htaccess in the store folder (not in the admin), then it's supposed to be in the store folder.

    If you re-read the instruction carefully:

    If you already have .htaccessin the store folder, then append the lines to the current file

    If you dont, you can safely upload the new file.

    After that, you have to change the RewriteBase /zencart/ as instructed.
    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. #1805
    Join Date
    Nov 2008
    Location
    Canterbury
    Posts
    44
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    The files in the package are in the correct folders already. So if you see a file .htaccess in the store folder (not in the admin), then it's supposed to be in the store folder.

    If you re-read the instruction carefully:

    If you already have .htaccessin the store folder, then append the lines to the current file

    If you dont, you can safely upload the new file.

    After that, you have to change the RewriteBase /zencart/ as instructed.

    Ok, I looked in my store/root folder and I do not have a .htaccess file. So I moved the .htaccess file over from the SSU zip file to my store folder. I guess this was wrong as when I tried to log in to my admin, I got:

    Server error!

    The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.

    If you think this is a server error, please contact the webmaster.
    Error 500
    www.rcmonster.co.uk
    Tue Jan 6 18:16:33 2009
    Apache/2.0.54 (Debian GNU/Linux) mod_auth_pgsql/2.0.2b1 mod_ssl/2.0.54 OpenSSL/0.9.7e




    So I deleted the .htaccess from the store folder and I can now log in again.

    The contents of the .htaccess file I added was:

    #### 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 /zencart/

    # Deny access from .htaccess
    RewriteRule ^\.htaccess$ - [F]

    RewriteCond %{SCRIPT_FILENAME} !-f
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU

    I am really lost here. I do not understand the instructions. What does 'append' mean?

    Maybe I can't see .htaccess as I moved all the files manually from the SSU zip to the folders on my server? Maybe I need to reinstall?

    Thanks

    Paul
    Last edited by rcmonster; 6 Jan 2009 at 07:26 PM.

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

    Default Re: Simple SEO URL [support thread]

    Append means to add below, or to add after.

    You have the error because you have not changed this line as instructed:

    # Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
    RewriteBase /zencart/
    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. #1807
    Join Date
    Nov 2008
    Location
    Canterbury
    Posts
    44
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by yellow1912 View Post
    Append means to add below, or to add after.

    You have the error because you have not changed this line as instructed:

    # Make sure to change "zencart" to the subfolder you install ZC. If you use root folder, change to: RewriteBase /
    RewriteBase /zencart/
    pm'd you.

  8. #1808
    Join Date
    Nov 2008
    Location
    Canterbury
    Posts
    44
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi Yellow,

    When I tried to add an alias, the top of the screen came up with messages:

    Error /home/www/rcmonster.co.uk/cache/ssu/aliases folder is not writable
    Error /home/www/rcmonster.co.uk/cache/ssu/pc folder is not writable

    I followed the pathways and could not find any SSU folder in cache, so I created one and an ALIASES and PC folder.

    Unfortunately not working tho.

    Sorry.

    Paul

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

    Default Re: Simple SEO URL [support thread]

    This means you have not uploaded all the required folders in cache/ to your site, and have not set the correct permission for them.

    I uploaded for you, you can check again

    Raine
    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

  10. #1810
    Join Date
    Nov 2008
    Location
    Canterbury
    Posts
    44
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Works perfect now Raine!

    Thanks again

    You can have your thread back now

    Paul

 

 

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