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

Hybrid View

  1. #1
    Join Date
    Jun 2008
    Location
    Singapore, Australia, America
    Posts
    96
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    This is what my .htaccess shows:
    #Error Page
    ErrorDocument 404 /index.php?main_page=page_not_found.php
    ErrorDocument 403 /index.php?main_page=page_not_found.php
    ErrorDocument 400 /index.php?main_page=page_not_found.php
    ErrorDocument 401 /index.php?main_page=page_not_found.php
    ErrorDocument 405 /index.php?main_page=page_not_found.php
    ErrorDocument 500 /index.php?main_page=page_not_found.php

    # 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} !^/admin.* [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]


    I have a customized error page created, so I want to use that, however, after including CEON's rewrite rules
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) index.php?%{QUERY_STRING} [L], the customized error page doesn't show anymore, but instead, it is pointing to the homepage.

    My new url still doesn't load though, I am not sure if it is something that I have not done properly (checked thrice though), or it's not fully compatible with 1.39.

    This is the test product in a test category: http://simpleartsplanet.com/test-cat...-lyndi-pattern

  2. #2
    Join Date
    Jun 2008
    Location
    Singapore, Australia, America
    Posts
    96
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    I will keep this thread in view, but unfortunately, this is not working for me now, so I am uninstalling the module. I can't leave the test cat/prdt in the shop as it is a live shop and customers are already emailing to ask if the cart is still under maintenance or unstable as they see test products around.

    Good luck with this mod.

  3. #3
    Join Date
    Mar 2010
    Posts
    62
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by saplanet View Post
    I will keep this thread in view, but unfortunately, this is not working for me now, so I am uninstalling the module. I can't leave the test cat/prdt in the shop as it is a live shop and customers are already emailing to ask if the cart is still under maintenance or unstable as they see test products around.

    Good luck with this mod.
    Update has not been released for 1.3.9 yet.

    Suppose to be soon though.

  4. #4
    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 saplanet View Post
    I will keep this thread in view, but unfortunately, this is not working for me now, so I am uninstalling the module.
    Sorry you couldn't get the software to work. It sounds like you messed up something when installing or that your server is configured "unusually". I can take a quick look if you send me FTP and admin details for your site.

    As neither of the possible causes of the issue are "general" problems, the posting of the solution of which may help others, I'm afraid I can't provide support here on this thread.

    All the best...

    Conor
    ceon

  5. #5
    Join Date
    Jun 2008
    Location
    Singapore, Australia, America
    Posts
    96
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi,



    Sorry you couldn't get the software to work. It sounds like you messed up something when installing or that your server is configured "unusually". I can take a quick look if you send me FTP and admin details for your site.

    As neither of the possible causes of the issue are "general" problems, the posting of the solution of which may help others, I'm afraid I can't provide support here on this thread.

    All the best...

    Conor
    ceon
    I am pleased to state that I managed to get the mod to work now. It's my bad, I left out a file in the autoloader folder. I also managed to work on the define pages in the sql, everything works beautifully.

    Thank you very much for this great mod. It is exciting to see the page ranking improves in the search engine.

  6. #6
    Join Date
    Sep 2008
    Location
    Sweden
    Posts
    94
    Plugin Contributions
    4

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by saplanet View Post
    This is what my .htaccess shows:
    #Error Page
    ErrorDocument 404 /index.php?main_page=page_not_found.php
    ErrorDocument 403 /index.php?main_page=page_not_found.php
    ErrorDocument 400 /index.php?main_page=page_not_found.php
    ErrorDocument 401 /index.php?main_page=page_not_found.php
    ErrorDocument 405 /index.php?main_page=page_not_found.php
    ErrorDocument 500 /index.php?main_page=page_not_found.php
    Page_not_found should not have .php in the end. This is a part that load with index.php page.

  7. #7
    Join Date
    Sep 2008
    Location
    Sweden
    Posts
    94
    Plugin Contributions
    4

    Default Re: Ceon URI Mapping (SEO)

    I got problem after moving my customers shop from a folder to the root. It is ok for my customer to keep the subfolder (shop) and is it a way to change this to be set when autogen the uri ?
    ex. /shop/category/product.

    the problem is that all categories got blocked and page not found.

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

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    How are you?

    Quote Originally Posted by FrilansReklam View Post
    I got problem after moving my customers shop from a folder to the root. It is ok for my customer to keep the subfolder (shop) and is it a way to change this to be set when autogen the uri ?
    ex. /shop/category/product.
    Your information seems to conflict a bit.. you seem to be saying that you've moved from a "folder to root" but then you ask if you can "keep the subfolder".. that would mean you haven't moved at all? I'm a little confused by that?!

    The autogeneration includes the value of DIR_WS_CATALOG from admin/includes/configure.php

    If you want to use a different "base" in your URI then you'll have to moidify the autogeneration functions to use something else instead of DIR_WS_CATALOG

    Quote Originally Posted by FrilansReklam View Post
    the problem is that all categories got blocked and page not found.
    I'm afraid it's not clear what you are doing.. I need more specifics please.

    All the best...

    Conor
    ceon

  9. #9
    Join Date
    Sep 2008
    Location
    Sweden
    Posts
    94
    Plugin Contributions
    4

    Default Re: Ceon URI Mapping (SEO)

    My problem is the generated adress /category/product not working I have to use it with /shop/category/product.

  10. #10
    Join Date
    May 2010
    Posts
    2
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hello,

    I've installed the CEON URI MAPPING module and everything is working fine in IE6 and Firefox, but there are some issues in IE8. Categories and images in categories are displayed ok, but when I go to subcategories images and stylesheet is not loaded.

    I think the problem is that Zen Cart tries to load pictures from shopname.com/categoriename/images instead of shopname.com/images. When uri mapping module is off, everything comes back to normal. Is there a way to fix this? I could not find a thread about IE8 issues in the forum

    Live examples (no spaces between domain name letters needed):

    a n o n a . lt/verslo_dovanos - working categorie
    a n o n a . lt/verslo_dovanos/puodeliai - not working subcategorie
    a n o n a . lt/index.php?main_page=index&cPath=107_116 - working subcategorie when uri mapping is turned off.

 

 
Page 1 of 2 12 LastLast

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

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