Page 68 of 291 FirstFirst ... 1858666768697078118168 ... LastLast
Results 671 to 680 of 2907
  1. #671
    Join Date
    Nov 2004
    Posts
    77
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Ceon,

    ever have any issues with 500 Internal Server Errors when operating from subdomain. i.e. store.domain.com?

    getting "Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace." errors

    thanks for a cool mod as it works on other sites.
    Dan - statuscontrols.com/web
    web programming and design

  2. #672
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Quote Originally Posted by IGD View Post
    ever have any issues with 500 Internal Server Errors when operating from subdomain. i.e. store.domain.com?
    Try adding a slash before index.php in the rewrite rule

    Subdomains make no difference whatsoever as to how the module works... everything before the initial slash is irrelevant! So I think this is just a server configuration problem on your end (like using a htaccess rewrite rule in a virtualhost directive, which the above tip should fix).

    Quote Originally Posted by IGD View Post
    thanks for a cool mod as it works on other sites.
    Sounds like thousands are using it now! :)

    All the best...

    Conor
    ceon

  3. #673
    Join Date
    Nov 2004
    Posts
    77
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    it is actually a configuration error as I am redirecting the subdomain to a local web server. thank you for your time :)
    Dan - statuscontrols.com/web
    web programming and design

  4. #674
    Join Date
    Jan 2008
    Posts
    4
    Plugin Contributions
    0

    help question Re: Ceon URI Mapping (SEO) - Canonical Meta Tag

    Greetings!

    I work for a non-profit that assists small businesses. Installed your module and it worked fine on the first try. Great documentation.

    We edited the URIs, created new sitemap.xml files, and resubmitted to Google.

    PROBLEM: Webmaster tools is showing pages with duplicate title and meta tags due to duplicate pages. Solved this problem for our own non-profit site by adding the canonical URL meta tag per Google's recommendation.

    I found the following fragment for adding a cononical URI meta tag to Zen Cart, but am unsure how to modify the script to pull the SEO URI to populate the tag.

    <!– Begin SEO Canonical –>
    <link rel=”canonical” href= <?php
    $original_url = HTTP_SERVER . $_SERVER[’REQUEST_URI’];
    $split_url = explode(’?', $original_url);
    $no_querystring_url = $split_url[0];
    echo $no_querystring_url; ?> />
    <!– End SEO Canonical –>

    Can anyone help us figure this out?

    We suspect $original_url = needs to grab the SEO URL from the database somehow and then it will probably work.

    The small business we're assisting is at:
    medicharms.com

  5. #675
    Join Date
    Apr 2008
    Posts
    82
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi all,
    Love the add on, but I am experiencing a problem. I installed this add on and it seems to work for the front store. But for some reason it still over writes my admin pages. I renamed the admin folder, lets say for "admin1" and in my access file i put:

    RewriteEngine On

    # Don't rewrite any URIs ending with a file extension (ending with .[xxxx])
    RewriteCond %{REQUEST_URI} !\.[a-zA-Z]{2,4}$
    # Don't rewrite admin directory
    RewriteCond %{REQUEST_URI} !^/admin1.* [NC]
    # Don't rewrite editors directory
    RewriteCond %{REQUEST_URI} !^/editors.* [NC]
    # Don't rewrite cPanel directories
    RewriteCond %{REQUEST_URI} !/cpanel.* [NC]
    RewriteCond %{REQUEST_URI} !/frontend.* [NC]
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]


    And still it overwrites it, does anybody what might be wrong?
    Thanks!!!

  6. #676
    Join Date
    Apr 2008
    Posts
    82
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    forgot to add, my admin folder is in the root of the site. And my site is on the bluehost, if it matters.
    Thanx again!!!

  7. #677
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi Dan,

    Quote Originally Posted by Dan123 View Post
    Love the add on, but I am experiencing a problem. I installed this add on and it seems to work for the front store. But for some reason it still over writes my admin pages. I renamed the admin folder, lets say for "admin1" and in my access file i put:
    I'm afraid the only explanation I can think of is that you aren't actually using the correct rewrite rule.. either because you haven't uploaded your updated .htaccess file or have got the admin directory wrong. I can't think of any other reasons the rule you posted wouldn't work.

    Good luck getting this sorted!

    All the best...

    Conor
    ceon

  8. #678
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO) - Canonical Meta Tag

    Hi,

    Quote Originally Posted by bighodag View Post
    I found the following fragment for adding a cononical URI meta tag to Zen Cart, but am unsure how to modify the script to pull the SEO URI to populate the tag.
    I'm afraid I don't know about canonical URLs. Hopefully someone here can help you.

    All the best..

    Conor
    ceon

  9. #679
    Join Date
    Apr 2008
    Posts
    82
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Thank you Conor for your fast reply. It was my stupid mistake that did not let it working, but now it is fine

    I have another question
    in my categories I have many pages and in the second and next pages, the url has an end like this http://www.mysite.com/dresses?&sort=20a&page=2, is it possible to get rid of ?&sort=20a&page=2 and just have dresses/p2 or something like that?

    Thank You!!!
    Love your add on!!!!

  10. #680
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Quote Originally Posted by Dan123 View Post
    Thank you Conor for your fast reply. It was my stupid mistake that did not let it working, but now it is fine
    I'm glad to hear that! :)

    Quote Originally Posted by Dan123 View Post
    is it possible to get rid of ?&sort=20a&page=2 and just have dresses/p2 or something like that?
    That would require custom coding. I don't think the time it would take would be worth it!

    Quote Originally Posted by Dan123 View Post
    Love your add on!!!!
    Glad to hear that too! :)

    All the best...

    Conor
    ceon

 

 

Similar Threads

  1. 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
  2. Ceon uri mapping vs Simple SEO
    By crixus in forum General Questions
    Replies: 0
    Last Post: 28 Feb 2014, 04:41 AM
  3. v151 Ceon URI Mapping (SEO) Issues?
    By yisou in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 30 Jul 2013, 12:06 PM
  4. v151 Ceon URI Mapping (SEO) installation problem.
    By jmac2020 in forum General Questions
    Replies: 1
    Last Post: 23 Oct 2012, 01:06 PM
  5. Ceon URI Mapping (SEO) How to install?
    By jackfitz in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 28 Apr 2010, 12:09 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