Totally Zenned
- Join Date:
- May 2006
- Posts:
- 712
- Plugin Contributions:
- 0
Ceon URI Mapping (SEO)
Hello there,
Wondering if anyone managed to get Extended Book Product Type by Moku to work with this module?
Thanks...
Views: 472,300
Totally Zenned
Hello there,
Wondering if anyone managed to get Extended Book Product Type by Moku to work with this module?
Thanks...
New Zenner
Hi, I'm just piping to say I LOVE this module! I'm working on a new shop that will be published at http://www.designhousedigital.com/ on Jan. 1 (until then there's a placeholder newsletter signup at that url). So far this mapping tool has done everything I've wanted it to, and I haven't had any trouble with it.
New Zenner
Hi Conor,
Thanks your reply.I copyed the example rule you given in the document to my.htaccess file,but it did not works,it returns returns the 404 error.What should I do?
Passed
Hi Mary,
I'm very glad you like the software and find it useful. Thanks for taking the time to make the work on it feel appreciated! :)
All the best..
Conor
ceon
Passed
Hi,
youz:
Thanks your reply.I copyed the example rule you given in the document to my.htaccess file,but it did not works,it returns returns the 404 error.What should I do?
Send me FTP details for your site via this link and I'll take a look.
All the best..
Conor
ceon
Zen Follower
whats weird conor.
on my 2nd site that was working, now when i try to go to admin, i get error 404 page not found....
but it was working before :S
Totally Zenned
Hello,
I added a new product type (books under catalog-product type). How can I make this to work with the new product type? What files do I need to look at?
Thanks...
Passed
Hi Darryl,
Berserker:
I added a new product type (books under catalog-product type). How can I make this to work with the new product type? What files do I need to look at?
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
Zen Follower
spid3r1987:
whats weird conor.
on my 2nd site that was working, now when i try to go to admin, i get error 404 page not found....but it was working before :S
never mind, noticed an error id made... extra / :P
Passed
Hi,
spid3r1987:
never mind, noticed an error id made... extra / :P
Oops, I'd gone onto the forum to reply to you, replied to the previous post, then forgot to reply to you! Sorry! :)
Glad to hear that you're sorted now anyway!
All the best...
Conor
ceon
Totally Zenned
conor:
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!
Passed
Hi,
Knew that would do it! :)
Happy Christmas to you too (getting into the mood here myself! :) ).
All the best...
Conor
ceon
New Zenner
@ conor
@ DivaVocals
I integrated this mod into my zen-cart 1.8.3a: http://www.numinix.com/blog/2009/09/26/integrating-wordpress-into-zen-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:
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?
New Zenner
Ah, I got it.
# 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.
Totally Zenned
Pink:
@ conor
@ DivaVocalsI integrated this mod into my zen-cart 1.8.3a: http://www.numinix.com/blog/2009/09/26/integrating-wordpress-into-zen-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:
RewriteRule ^blog(.*)$ /index.php?main_page=blog&$1 [E=VAR1:$1,QSA,L]
RewriteRule (.*) index.php?%{QUERY_STRING} [L]
New Zenner
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:wink:
Passed
Hi,
Pink:
Ah, I got it.
You did indeed. That's exactly the code I was going to post.. well done! :)
All the best..
Conor
ceon
Totally Zenned
conor:
Hi,
You did indeed. That's exactly the code I was going to post.. well done! :)
All the best..
Conor
ceon:shocking: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..
# 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,
```
Passed
Hi,
How are you? Hope you're getting sorted for Christmas.. it's not long now!
DivaVocals:
:shocking: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..
# Don't rewrite blog directory
RewriteCond %{REQUEST_URI} !^/blog.* [NC]
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](http://dev.ceon.net)
Totally Zenned
conor:
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:
# Don't rewrite blog directory
RewriteCond %{REQUEST_URI} !^/blog.* [NC]
>
> Hope that helps illuminate things!
>
> All the best...
>
> Conor
> [ceon](http://dev.ceon.net)
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..:laugh:
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..:smile:
Fields marked required must be completed.
Tell staff why this post should be reviewed.