Page 1 of 3 123 LastLast
Results 1 to 10 of 5054

Hybrid View

  1. #1
    Join Date
    Mar 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I have little problem with the Simple SEO URL

    I have some products with manufacturers name contain "&" and "-"
    for example "X&Y" and "X-game"
    if using the manufacturer side box to sort those items, the url display like this:

    For manufacturer "X&Y" will display: www.mydomain.com/shop/x
    how to change it back to www.mydomain.com/shop/manufacturer/x-y

    For manufacturer "X-game" will display: www.mydomain.com/shop/game

    how to change it back to www.mydomain.com/shop/manufacturer/x-game

    thx

  2. #2
    Join Date
    Oct 2008
    Posts
    111
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi

    Can't find the installation instructions for this. the links do not seem to be operating.

    Thanks

    matt

  3. #3
    Join Date
    Oct 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    My installation is still showing warnings when I visit ssu_check.php

    I am using the .htaccess file that is provided and this is my includes/configure.php setup:
    PHP Code:
    define('HTTP_SERVER''http://mysite.com');
    define('HTTPS_SERVER''https://mysite.com');

    define('DIR_WS_CATALOG''/store/');
    define('DIR_WS_HTTPS_CATALOG''/store/'); 
    and all of my cache files are set to 777

    Can anyone explain why I'm getting these warnings? The don't make sense to me.

  4. #4
    Join Date
    Aug 2009
    Posts
    8
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by ninnypants View Post
    My installation is still showing warnings when I visit ssu_check.php

    I am using the .htaccess file that is provided and this is my includes/configure.php setup:
    PHP Code:
    define('HTTP_SERVER''http://mysite.com');
    define('HTTPS_SERVER''https://mysite.com');

    define('DIR_WS_CATALOG''/store/');
    define('DIR_WS_HTTPS_CATALOG''/store/'); 
    and all of my cache files are set to 777

    Can anyone explain why I'm getting these warnings? The don't make sense to me.
    ninnypants, I had the same problem, but someone pointed out to me that there are no errors. It just says checking. Try going forward and see if you have any other problems.

  5. #5
    Join Date
    Oct 2008
    Posts
    111
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Thanks for the link about installation. My knowledge of Zencart is expanding all the time, but the info on the link is confusing for me. I've looked through a lot of this thread for an idiots guide to using this add-on, but to no avail.

    Really I need to know.

    Which files to upload and where to.
    Simple steps to how I change the urls to more user friendly names.

    Sorry to be such a pain, but is there anyone reading this who can get down to my level.

    Thanks

    Matt

  6. #6
    Join Date
    Jul 2009
    Location
    Maryland
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by Matt Smith View Post
    Thanks for the link about installation. My knowledge of Zencart is expanding all the time, but the info on the link is confusing for me. I've looked through a lot of this thread for an idiots guide to using this add-on, but to no avail.

    Really I need to know.

    Which files to upload and where to.
    Simple steps to how I change the urls to more user friendly names.

    Sorry to be such a pain, but is there anyone reading this who can get down to my level.

    Thanks

    Matt
    everything was really quite easy except for the htaccess thing that I myself am having problems with. But that is only because I think I have other plugins that have added stuff to my htaccess file. If you have a blank htacess at start, just use the one that is included and will be easy from there, if you are running 1.3.8a all you have to do is upload the files, then log into admin and select it from extras and it installs itself, then go to the cofig section of admin and turn it on. only change that you might need to make would be if you changed the name of your admin folder (for security) make sure that you change the name on your upload file to go to the right admin directory.

  7. #7
    Join Date
    Oct 2008
    Posts
    111
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Thanks Richard for such a quick response. I'm still a little unclear. which files do I upload - all of them? admin, includes,cache, ajax, docs, ht access, ssu check.

    Thanks

    matt

  8. #8
    Join Date
    Jul 2009
    Location
    Maryland
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by Matt Smith View Post
    Hi

    Can't find the installation instructions for this. the links do not seem to be operating.

    Thanks

    matt
    try here : http://wiki.rubikintegration.com/zen...u/installation

  9. #9
    Join Date
    Jul 2009
    Location
    Maryland
    Posts
    37
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I could use some help too, I see that I am supposed to append my htaccess file but not sure what I should replace, could someone let me know what lines to cut to replace please.

    Thanks,

    here is what I currently have in my htaccess file:

    Code:
    RewriteEngine on
    
    # -FrontPage-
    IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
    <Limit GET POST>
    order deny,allow
    deny from all
    allow from all
    </Limit>
    <Limit PUT DELETE>
    order deny,allow
    deny from all
    </Limit>
    AuthName aprons4you.com
    AuthUserFile /home/apronsy1/public_html/_vti_pvt/service.pwd
    AuthGroupFile /home/apronsy1/public_html/_vti_pvt/service.grp
    RewriteCond %{HTTP_HOST} ^aprons4you.net$ [OR]
    RewriteCond %{HTTP_HOST} ^www.aprons4you.net$
    RewriteRule ^.*$ "http\:\/\/aprons4you\.com\/" [R=301,L]
    
    
    # BEGIN WordPress
    
    # END WordPress

    Code:
    #### 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
    I know that goes in there somewhere but I can't figure where, also, my site is www.aprons4you.com, so i'm not sure why it's pointing to aprons4you.net??? I do own that and it's pointed here as well but that is not the parent url?

    Thanks,

  10. #10
    Join Date
    Apr 2009
    Location
    Oxford UK
    Posts
    192
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Yellow i have a question for you. I have a server with 1and1 and i have used all of my allocated files 262,144 in total. I have noticed that SSU uses a lot of these in the cache. Is there a way of having the cache in the DB not the cache in the root directory of my website ???

 

 
Page 1 of 3 123 LastLast

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