Page 94 of 291 FirstFirst ... 44849293949596104144194 ... LastLast
Results 931 to 940 of 2907
  1. #931
    Join Date
    May 2006
    Posts
    725
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi Darryl,



    The book product is already supported. Just copy the files from the URI Mapping module over the product book files you just installed (files from modified_core_files/admin/includes/modules/product_book).

    All the best...

    Conor
    ceon
    Thanks so much! Everything working now :)

    All the best... and Merry Xmas!

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

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    Knew that would do it! :)

    Happy Christmas to you too (getting into the mood here myself! :) ).

    All the best...

    Conor
    ceon

  3. #933
    Join Date
    May 2009
    Posts
    64
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    @ conor
    @ DivaVocals

    I integrated this mod into my zen-cart 1.8.3a: http://www.numinix.com/blog/2009/09/...n-cart-1-3-8a/ (I think, this is a mod from DivaVocals.)

    Now, I installed the Ceon URI Mapping (SEO).

    My problem is, I don't figure out how to integrate the two different rewrite-rules into my .htaccess.

    Or I get the blog working, or I get the shop working, but not both.

    The two rules are:

    Code:
    RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]
    
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]
    Is there a way to get the two rules work together?

  4. #934
    Join Date
    May 2009
    Posts
    64
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Ah, I got it.

    Code:
    # Don't rewrite blog directory
    RewriteCond %{REQUEST_URI} !^/blog.* [NC]
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]
    # Do rewrite blog directory
    RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]
    at least, it works.

  5. #935
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by Pink View Post
    @ conor
    @ DivaVocals

    I integrated this mod into my zen-cart 1.8.3a: http://www.numinix.com/blog/2009/09/...n-cart-1-3-8a/ (I think, this is a mod from DivaVocals.)

    Now, I installed the Ceon URI Mapping (SEO).

    My problem is, I don't figure out how to integrate the two different rewrite-rules into my .htaccess.

    Or I get the blog working, or I get the shop working, but not both.

    The two rules are:

    Code:
    RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]
    
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]
    Is there a way to get the two rules work together?
    Wish I could take credit, but that post and solution is Numinix's work.. I just posted a rather long and rambling post on his blog about how I thought my WOZ sideboxe only solution MIGHT (still haven't tested it yet) be used with his blog integration solution..

  6. #936
    Join Date
    Dec 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Ceon URI Mapping (SEO)

    Hi,Conor
    I've solved the problem,Thanks for your reply.I have another problem that the products url would show the cPath id but categories not,and the status bar could show the dynamic url.

    Please help

  7. #937
    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 Pink View Post
    Ah, I got it.
    You did indeed. That's exactly the code I was going to post.. well done! :)

    All the best..

    Conor
    ceon

  8. #938
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi,



    You did indeed. That's exactly the code I was going to post.. well done! :)

    All the best..

    Conor
    ceon
    Help me understand then.. Because at some point I do intend to test the Numinix embedding solution. The two lines in red seem to conflict, so I am trying to wrap my head around why this works..

    Code:
    # Don't rewrite blog directory
    RewriteCond %{REQUEST_URI} !^/blog.* [NC]
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]
    # Do rewrite blog directory
    RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,

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

    Default Re: Ceon URI Mapping (SEO)

    Hi,

    How are you? Hope you're getting sorted for Christmas.. it's not long now!

    Quote Originally Posted by DivaVocals View Post
    Help me understand then.. Because at some point I do intend to test the Numinix embedding solution. The two lines in red seem to conflict, so I am trying to wrap my head around why this works..

    Code:
    # Don't rewrite blog directory
    RewriteCond %{REQUEST_URI} !^/blog.* [NC]
    # Handle all other URIs using Zen Cart (index.php)
    RewriteRule (.*) index.php?%{QUERY_STRING} [L]
    # Do rewrite blog directory
    RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,
    The following removes the /blog directory from the next RewriteRule, which is the Ceon URI Mapping rewrite rule:

    [code]# Don't rewrite blog directory
    RewriteCond %{REQUEST_URI} !^/blog.* [NC][/quote]


    Since the Ceon RewriteRule isn't handling /blog it gets passed on.. whereupon it gets handled by the next RewriteRule, which is the blog one.

    Hope that helps illuminate things!

    All the best...

    Conor
    ceon

  10. #940
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Ceon URI Mapping (SEO)

    Quote Originally Posted by conor View Post
    Hi,

    How are you? Hope you're getting sorted for Christmas.. it's not long now!



    The following removes the /blog directory from the next RewriteRule, which is the Ceon URI Mapping rewrite rule:

    Code:
    # Don't rewrite blog directory
    RewriteCond %{REQUEST_URI} !^/blog.* [NC]
    Since the Ceon RewriteRule isn't handling /blog it gets passed on.. whereupon it gets handled by the next RewriteRule, which is the blog one.

    Hope that helps illuminate things!

    All the best...

    Conor
    ceon
    Hi Conor..

    I'm great.. Sounds like you're busy!

    Yes indeed getting all ready for X-Mas. We're having Turducken.. (http://en.wikipedia.org/wiki/Turducken) It'll be my first.. Very excited.. Don't know if you've heard of Turduckens in your neck of the woods.. It may just be us Yanks who do this..

    Thanks for the explanation.. after looking at this before I saw your repsonse, I figured that's what it was.. Just wanted to be sure..

 

 

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