Page 83 of 146 FirstFirst ... 3373818283848593133 ... LastLast
Results 821 to 830 of 1456
  1. #821
    Join Date
    Mar 2006
    Posts
    12
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    I have a big problem with this tool because its produce lot of duplicate content in the search results.
    Example:
    Main Url:

    http://www.my-domain.com/

    You can also access the main page if you put the letter “?” after the slash.
    Example:
    I can also see the main page with the following urls:
    http://www.my-domain.com/?lamer
    http://www.my-domain.com/?this-suxx
    http://www.my-domain.com/?whatever-you-want

    If your page is accessible under different internal urls, you get an penalty from Google.
    How can I fix it?

    My htaccess:
    RewriteEngine on
    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)$ index\.php/$1 [L,QSA]

    Thanks

  2. #822
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Installed Seo Urls 3.0.0-beta1
    I do not have SSL on this test shop (disabled in both configure.php's)

    When I log in as customer and visit MyAccount and try to to change password I get no response.

    More specifically on
    http://MY_DOMAIN/MY_SHOP/index.php/account_password
    (note, not https):

    I enter current pwd and enter new pwd and confirm new pwd. Then click submit. Then the page refreshes with all three password edit boxes cleared out.

    Rather I should be observing a new page "your password has been changed ... blah, blah, blah"

    Below are my SEO mod settings
    Code:
    Title 	Value 	Action 
    Seo Urls Status 	On 	 
    301 Redirection Status 	On 	
    Page Base 	index.php 	
    Default Extension  (n/a)
    Url Plugins 	Core: Default, Core: Product, Core: Default: Skip SSL, Core: Advanced Search, Core: Manufacturer, Core: Default Skips, Core: Product: Reviews, Core: Product: Reviews: Write, Core: Product: Image, Core: EZ Pages, Core: Product: Reviews: Info, Core: Advanced Search: Result, Core: Category 	
    Character Plugins  (n/a)
    Any ideas?

    Woody

  3. #823
    Join Date
    Apr 2007
    Location
    Sydney
    Posts
    109
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    I've just read the pdf guide and done a search, but can someone confirm my guess that mod write is something that my host should already have (just need to have enabled if not already so), not a contribution that I need to download and install?

  4. #824
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Chemo's Ultimate URL's

    Quote Originally Posted by cochlear View Post
    I've just read the pdf guide and done a search, but can someone confirm my guess that mod write is something that my host should already have (just need to have enabled if not already so), not a contribution that I need to download and install?
    "mod_rewrite" is a common loaded module for the Apache web server.

    The best way to test to see if it is installed is to setup a simple rewrite rule in htaccess and try it ;-)

    In Zen Cart Admin > Tools > Server/Version Info
    will show you if mod_rewrite is installed.

    If still uncertain if installed inquire with your hosting provider.

    Woody

  5. #825
    Join Date
    Apr 2007
    Location
    Sydney
    Posts
    109
    Plugin Contributions
    0

    Default Re: Chemo's Ultimate URL's

    Thanks Woodymon! Exactly what I need to know

  6. #826
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Admin Profiles and this MOD

    Hi there!

    I'm trying to use the new version on a website that has Admin Profiles installed.

    I can't get this to work, because with a normal admin profiles installation, you have to go in and edit the boxes file for the file to show up, and edit the permissions for that user.

    Well, there are no files for this mod in admin/includes/boxes/extra_boxes. It's a whole bunch of auto_loaders and carp I don't know how to deal with, LOL! Anyone got this to work with Admin Profiles?

  7. #827
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Chemo's Ultimate URL's

    Me again,

    I have gotten by this by temporarily turning off admin profiles by disabling admin/includes/init_includes/overrides/init_admin_auth.php

    So I'm having an issue.

    I want the index.php removed from the site urls. My server supports mod_rewrite.

    When I have "Page Base" set to blank, I get a 404 Not Found error.

    With "Page Base" set to index.php it works, but of course index.php is in the name.

    Here is my .htaccess

    Code:
    RewriteEngine On
    RewriteBase /
    
    # Seo Urls version 3.x
    # Don't rewrite real files or directories
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)$ index\.php?seo_url=$1&%{QUERY_STRING} [L,R=301]
    
    RewriteCond %{HTTP_HOST} . 
    RewriteCond %{HTTP_HOST} !^www\.jacksmagicbeanstalk\.com [NC] 
    RewriteRule (.*) http://www.jacksmagicbeanstalk.com/$1 [R=301,L]
    Here are my settings:

    Seo Urls Status On
    301 Redirection Status On
    Page Base (blank)
    Default Extension (blank)

    Url Plugins
    Core: Default: Skip SSL,
    Core: Product: Reviews: Info,
    Core: Product: Image,
    Core: Category,
    Core: Default,
    Core: EZ Pages,
    Core: Advanced Search,
    Core: Product: Reviews: Write,
    Core: Product: Reviews,
    Core: Default Skips,
    Core: Manufacturer,
    Core: Advanced Search: Result,
    Core: Product Info

    Character Plugins

    Format: Strip Invalid,
    Format: Lowercase

  8. #828
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Chemo's Ultimate URL's

    Update to my above post. My .htaccess is now this:

    Code:
    Options +FollowSymLinks 
    
    RewriteEngine On
    RewriteBase /
    
    # Seo Urls version 3.x
    # Don't rewrite real files or directories
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)$ index\.php?seo_url=$1&%{QUERY_STRING} [L]
    But still no go with the same above settings.

    The site in question is http://www.jmb.jadetrue.com

  9. #829
    Join Date
    Jun 2006
    Posts
    403
    Plugin Contributions
    0

    help question Re: Chemo's Ultimate URL's

    hello,

    After reading so many articles prasing SEO URL, I am determined to intall SEO 3.0 onto my site (zencart 3.7) and make it work. www.roseforlove.com, www.loveinrose.com

    Right now, I encounted the following problems after I installed SEO 3.0:

    http://www.loveinrose.com/index.php?=site_map,
    http://www.loveinrose.com/index.php?=about_us,
    http://www.loveinrose.com/index.php?=contact_us,
    http://www.loveinrose.com/index.php?=privacy...

    All become
    http://www.loveinrose.com (the home page)

    For any page who originally is, for example,
    http://www.loveinrose.com/index.php?...d=11&chapter=0,

    It became: http://www.loveinrose.com/?id=11&chapter=0
    And doesn't show the right page or product.

    Can anybody who has SEO 3.0 works right on his website post his .htaccess page to me? I am looking forward to getting help. Thank you!

    Lina

  10. #830
    Join Date
    Jun 2006
    Posts
    403
    Plugin Contributions
    0

    help question Re: Chemo's Ultimate URL's

    Hello, everyone:

    I finally figured it out myself. After I turned on the "Default Extension", then I began to see the SEO changes of my links. (I hope I could have deleted my previous confusing posts. )

    But, I run into another situation. Probably somebody encountered the same interesting problem as I do.

    If "301 Redirection Status" is ON, my customer cannot finish the check out process. They will be kept bouncing back to the 1st step of 3: Delivery Information. They cannot move to the 2nd step of 3: Payment Information.

    If I turn OFF the "301 redirection status", then my customer can go ahead to check out. But just some links will not be turned into SEO links. For example, "Q & A", "Open to trade".

    Did someone run into the same situation and figure it out why and how to solve it?

    By the way, the sites are www.thesbeauty.com, www.roseforlove.com and www.loveinrose.com.

    Lina
    Last edited by lina0962; 3 May 2007 at 08:46 PM.

 

 

Similar Threads

  1. v151 with ultimate seo Url,how to change the ez-page url ?
    By whywell in forum General Questions
    Replies: 1
    Last Post: 17 Jan 2013, 09:12 AM
  2. Chemo's Ultimate SEO URL's and EZPages?
    By Doodlebuckets in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 5 Aug 2008, 08:36 PM
  3. Fix for Easy Populate Froogle with Chemo's Ultimate URL's
    By mccord42 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 8 Feb 2007, 04:06 PM
  4. Can NOT access Admin after installing Chemo's Ultimate URL's
    By hankliu in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 12 Dec 2006, 10:33 AM

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