Page 1 of 2 12 LastLast
Results 1 to 10 of 5054

Hybrid View

  1. #1
    Join Date
    Mar 2011
    Posts
    76
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by pizza392 View Post
    i made a change to remove the category details from the product url, i change the code $temp_params[0]=categoriesParser::getName($cPath, $languages_id, $languages_code); $temp_params[1] = self::getName($products_id, $languages_id, $languages_code) to $temp_params[0]=self::getName($products_id, $languages_id, $languages_code) in products.php, it seems that works, but i'm not sure if its an good idea? or it exists hidden dangers? what do u think?
    what do you think about it?
    would it cause any problem?

  2. #2
    Join Date
    Aug 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hello

    I have installed Simple Seo inside a new installation of ZenCart 1.3.9h
    Before i have installed: Module Manager (all fine)
    After i have installed Simple Seo 3.8.5
    After i have update with Yellow Simple Seo 3.8.8

    I have turned ON Simple Seo, but when i surf on the website, tell me: "No input file specified. " With Firefox if i try with I.E the file is not find...
    The address is correct, ex: www.mywebsite.com/privacy
    (not find the page privacy)

    if i turn off Simple Seo all is fine.

    I think that the problem is .Htaccess this is the file:

    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "zencart" 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
    RewriteCond %{SCRIPT_FILENAME} !-d
    #RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU



    The Zencart is installed in the Root.... i think that its' alla fine, but it's not work, ( i use godaddy, i wait 24 hours for refresh .htaccess but nothing is change)

    Thank for you help.

    Alessandro

  3. #3
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by wookie View Post
    Hello

    I have installed Simple Seo inside a new installation of ZenCart 1.3.9h
    Before i have installed: Module Manager (all fine)
    After i have installed Simple Seo 3.8.5
    After i have update with Yellow Simple Seo 3.8.8

    I have turned ON Simple Seo, but when i surf on the website, tell me: "No input file specified. " With Firefox if i try with I.E the file is not find...
    The address is correct, ex: www.mywebsite.com/privacy
    (not find the page privacy)

    if i turn off Simple Seo all is fine.

    I think that the problem is .Htaccess this is the file:

    #### BOF SSU
    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    # Make sure to change "zencart" 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
    RewriteCond %{SCRIPT_FILENAME} !-d
    #RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU



    The Zencart is installed in the Root.... i think that its' alla fine, but it's not work, ( i use godaddy, i wait 24 hours for refresh .htaccess but nothing is change)

    Thank for you help.

    Alessandro

    Put this into your .htaccess file and see what happens. I have Godaddy also and I know it works with no problems. If it does not work go back and check the files and make sure there are all in there proper location.


    Options +FollowSymLinks -MultiViews
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^mywebsite.com$ [NC]
    RewriteRule ^(.*)$ http://www.mywebsite.com//$1 [R=301,L]

    # 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
    RewriteCond %{SCRIPT_FILENAME} !-d
    RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
    #### EOF SSU
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  4. #4
    Join Date
    Aug 2011
    Posts
    17
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Magic ! !!
    thanks countrycharm is perfect now !!


    Other question i have read that with Simple Seo can i change the url, add key and meta, where is the page where i can do this??
    With Virtuemart i have a special page inside the Seo, here i dont find.... i use the normal page of metatags??

    Thanks alot
    Alessandro

  5. #5
    Join Date
    Mar 2011
    Posts
    76
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    hello countrycharm,

    To remove the category details from the product url, does the modification below work correctly?

    open products.php, replace the code
    PHP Code:
    $temp_params[0]=categoriesParser::getName($cPath$languages_id$languages_code); 
    $temp_params[1] = self::getName($products_id$languages_id$languages_code
    with the code
    PHP Code:
    $temp_params[0]=self::getName($products_id$languages_id$languages_code
    i guess you are good at this, any idea of this modification?

  6. #6
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by pizza392 View Post
    hello countrycharm,

    To remove the category details from the product url, does the modification below work correctly?

    open products.php, replace the code
    PHP Code:
    $temp_params[0]=categoriesParser::getName($cPath$languages_id$languages_code); 
    $temp_params[1] = self::getName($products_id$languages_id$languages_code
    with the code
    PHP Code:
    $temp_params[0]=self::getName($products_id$languages_id$languages_code
    i guess you are good at this, any idea of this modification?
    Why do you want to remove the category details from the product url?
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  7. #7
    Join Date
    Jul 2011
    Posts
    31
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Hi,

    I am planning to install SSU on my cart and wanted some clarifications about it's workings.

    I read that the module does a 301 redirect from the old url to the new url. In that case

    - will the link juice of the old urls remain? That is, will everything that I did before installing the module still be valid?
    - will I be using the new url for future linkbuilding?

    Thanks for your feedback in advance!

  8. #8
    Join Date
    Mar 2011
    Posts
    76
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by countrycharm View Post
    Quote Originally Posted by pizza392 View Post
    hello countrycharm,

    To remove the category details from the product url, does the modification below work correctly?

    open products.php, replace the code
    PHP Code:
    $temp_params[0]=categoriesParser::getName($cPath$languages_id$languages_code); 
    $temp_params[1] = self::getName($products_id$languages_id$languages_code
    with the code
    PHP Code:
    $temp_params[0]=self::getName($products_id$languages_id$languages_code
    i guess you are good at this, any idea of this modification?
    Why do you want to remove the category details from the product url?
    because my product urls are like
    site/category_name_c_2/category_name_981741_p_35.html
    site/category_name_c_2/category_name_981742_p_36.html
    it means product names are almost same as category names, and the names are very very very long
    so i decide to remove the category details from product url

    could you help? thanks in advance
    Last edited by pizza392; 2 Aug 2011 at 12:52 PM.

  9. #9
    Join Date
    May 2011
    Posts
    5
    Plugin Contributions
    0

    Default Re: Simple SEO URL [support thread]

    I have Simple SEO running after a lot of reading in this thread but I cannot solve my ( last ) Simple SEO issue with the Alias Functions.

    If it is turned on in admin->configuration->simple SEO and when I go to Alias Functions- Manage Aliases: " Click here " and I click, nothing is happening.

    Also I do not have the Add button to add a alias rule?

    Does anyone know what the cause is of this?


    The shop ( www.bestlooks.nl) is running with zen cart v 1.3.9h, module manager 3.8.5 and Simple SEO "yellow1912-simple-seo-url-95940c2" is installed.

  10. #10
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Simple SEO URL [support thread]

    Quote Originally Posted by coupe1 View Post
    I have Simple SEO running after a lot of reading in this thread but I cannot solve my ( last ) Simple SEO issue with the Alias Functions.

    If it is turned on in admin->configuration->simple SEO and when I go to Alias Functions- Manage Aliases: " Click here " and I click, nothing is happening.

    Also I do not have the Add button to add a alias rule?

    Does anyone know what the cause is of this?


    The shop ( www.bestlooks.nl) is running with zen cart v 1.3.9h, module manager 3.8.5 and Simple SEO "yellow1912-simple-seo-url-95940c2" is installed.
    Go back and make sure all file uploaded to there proper locations. Sounds like they didn't.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

 

 
Page 1 of 2 12 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

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