Page 25 of 291 FirstFirst ... 1523242526273575125 ... LastLast
Results 241 to 250 of 2907
  1. #241
    Join Date
    Mar 2007
    Location
    Cornwall - uk
    Posts
    464
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    After re-reading what i wrote above i dont think i was too clear on what the problem is.

    My current site is a 1.3.5 that is live is mysite.co.uk/shop and doesnt have this mod installed on it, over the past few weeks i have been building a 1.3.8a test site in mysite.co.uk/test i have just installed your mod and put my site live within the root so its simply at mysite.co.uk it will take a while for this to become within search engines as its literally just a few hours old of being live, but my main problem is that when i try to go to mysite.co.uk/shop it doesnt load and throws a 404 error as with mysite.co.uk/blog, i have scanned through this whole thread and i couldnt find another post by someone that has multiple databases within the one domain, im pretty sure i just need a rewite code but im stuck at locating what the code is i need.

    I hope you can help me out, as im really stuck as i cant get into my /shop/admin page to access the sales.

    Cheers
    Ben

  2. #242
    Join Date
    Mar 2007
    Location
    Cornwall - uk
    Posts
    464
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by ben harry View Post
    After re-reading what i wrote above i dont think i was too clear on what the problem is.

    My current site is a 1.3.5 that is live is mysite.co.uk/shop and doesnt have this mod installed on it, over the past few weeks i have been building a 1.3.8a test site in mysite.co.uk/test i have just installed your mod and put my site live within the root so its simply at mysite.co.uk it will take a while for this to become within search engines as its literally just a few hours old of being live, but my main problem is that when i try to go to mysite.co.uk/shop it doesnt load and throws a 404 error as with mysite.co.uk/blog, i have scanned through this whole thread and i couldnt find another post by someone that has multiple databases within the one domain, im pretty sure i just need a rewite code but im stuck at locating what the code is i need.

    I hope you can help me out, as im really stuck as i cant get into my /shop/admin page to access the sales.

    Cheers
    Ben
    Quick update i have added the following code with success

    # Don't rewrite cPanel directories
    RewriteCond %{REQUEST_URI} !/shop.* [NC]
    RewriteCond %{REQUEST_URI} !/blog.* [NC]
    Last edited by ben harry; 21 May 2009 at 04:06 PM.

  3. #243
    Join Date
    Oct 2007
    Posts
    105
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    I put this mod on a new site... After I had made a few test products. It worked great. Yesterday I added a bunch of products and used the auto generation "tick box" to create the mappings for those new products. Here's the problem: I can add the original test products to my shopping cart but not any of the products that were added after the mapping module. I tried removing the mapping and re-adding it but that didn't seem to work either. Any suggestions?

    Thanks
    Nancy

  4. #244
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

    Default One more silly mapping question

    Before I bugger this up, could you clarify how to map from:

    /index.php?manufacturers_id=22 (old blogged location)

    to

    /index.php?manufacturers_id=67 (actual new location)

    Thanks much Conor, this mod is too cool!

  5. #245
    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 ben harry View Post
    Hello conor hope all is well.
    Really hectic but fine thanks! :)

    Quote Originally Posted by ben harry View Post
    Do you think this is down to a missing rewrite rule somewhere, or is it another error, and is there anything you could help me with.
    Yes. The rewrite rule will block the addresses you described. You need to add exceptions to the rewrite rule.


    Please read the section "Adding exceptions to the rule to prevent particular addresses (e.g. Control Panels etc.) being handled by Zen Cart" for more information!

    You'll add conditions like:

    RewriteCond %{REQUEST_URI} !/shop.* [NC]

    Glad you like another of our modules! :)

    All the best...

    Conor

  6. #246
    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 ben harry View Post
    Quick update i have added the following code with success
    Off the internet for one day and so many support requests/posts!

    Glad to hear you're sorted.. you can obviously disregard the post I just made!

    All the best...

    Conor
    ceon

  7. #247
    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 Mrchristoh View Post
    yep i just lost the enhancements i made to the front-end.

    any ideas?
    More than likely the "enhancements" aren't building their URIs correctly so when you go to a page like

    /yourshop/mycategory/myproduct

    the "enhancement" scripts are trying to access a file relatively instead of using the "base" URI of the site.

    E.g.:

    A script may be trying to access

    /yourshop/this_file.js

    But when you're in

    /yourshop/mycategory/myproduct

    it is trying to find:

    /yourshop/mycategory/this_file.js

    which obviously doesn't exist.

    You need to contact the author of the enhancements (or if you can code, try yourself) to have them prefix the path to files with the shop's web directory (DIR_WS_CATALOG) instead of expecting only ever to be at the root URI of the store.

    There's nothing I can do about this, it's simply that the author of the enhancement hasn't thought about the fact that people might want to use SEF/SEO URIs and introduced a problem in their code.

    Quote Originally Posted by Mrchristoh View Post
    well i guess its time to abandon all hope with this.......thanks anyway
    No, you shouldn't abandon hope.. the problem should be easy to fix.. simply a matter of changing the incorrect paths in the "enhancements".

    As I said in the private message to you, I don't know what enhancements you are actually talking about, it's obvious to you since you built the site but not to me as a visitor!

    Hope that helps! Thanks for the nice comments about the module! :)

    All the best...

    Conor
    ceon

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

    Default Re: One more silly mapping question

    Hi,

    Quote Originally Posted by kiddo View Post
    Before I bugger this up, could you clarify how to map from:

    /index.php?manufacturers_id=22 (old blogged location)

    to

    /index.php?manufacturers_id=67 (actual new location)

    Thanks much Conor, this mod is too cool!
    Okay, one last example then.. got my own life to lead! ;)

    uri

    /index.php?manufacturers_id=67


    language_id

    1


    current_uri

    1


    main_page

    index


    query_string_parameters

    manufacturers_id=22


    associated_db_id

    NULL


    alternate_uri

    NULL


    redirection_type_code

    301


    date_added


    NOW()


    Glad you like the module!

    All the best...

    Conor
    ceon

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

    Default Re: Ceon URI Mapping (SEO)

    Hi Nancy,

    Quote Originally Posted by ladyink View Post
    Any suggestions?
    I'm afraid I've no idea what could be going wrong. I can't see how it would have anything to do with the module though. This must be a coincidence and it must be something else you did to the products which is creating the problem (maybe their stock level is zero or something?).

    Sorry I can't be of more help but at least you know it's not this module and you can start looking elsewhere to see what the problem is!

    All the best...

    Conor
    ceon

  10. #250
    Join Date
    Jul 2006
    Location
    SF Bay Area
    Posts
    867
    Plugin Contributions
    1

    Default Re: Ceon URI Mapping (SEO)

    Thanks again Conor, now I'll stop pestering you. Problem was I kept putting something in the associated_db field. Just seemed right. I get it now!

 

 

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