I am trying to figure out why I am getting errors. Can you help me?
http://www.superseeds.ca/store
Printable View
I am trying to figure out why I am getting errors. Can you help me?
http://www.superseeds.ca/store
I have tested the this mod. First thing is that I never was able to switch it to English, it is all in Dutch or something. The mod itself and the idea is good, but not suitable for me, since I am using zen in Russian.Iit takes russian names for products and categories, which become a mess (abrakadabra).
Before I'd installed this mod, I backed up the whole site. When I decided to go back to dynamic urls, I have removed zen from my site completely, and then restored the backed up copy of it. But I still have the SEO menu in my admin section, and the urls for my products became too long. Not as what they used to be before. How can I get rid of this mod completely and restore my previous urls?
I use Zen cart 1.3.6. I used Ultimate SEO 2.1 and worked fine except that it seems that it doesnt support 301 redirect. So I tried the 3.0 beta but my categories url have the following shape www.mysite.com/?cPath=65 !!!! (whithout the the category name inthe url !!!!!).
Any idea on whay I am getting this. Thank you in advance for any input.
Thanks
Uninstall it. You'll find chemo's is hard to uninstall/ good luck.
Use this mod: (Simple SEO URL)
It does the same thing as Chemo's, but better because it's supported, and it was written with a good framework / better methodology. I've got in on my zen cart site now, I'm quite happy with it:
http://www.zen-cart.com/forum/showth...=86353&page=67
Okay, so right now this mod is Rewriting EZ-Pages to this:
page.html?id=XX
where
XX = EZ-Pages ID number
How do I get it to Rewrite EZ-Pages like this instead?:
ez-pages-page-title.html
so for example:
page.html?id=10
would turn into
pretty-colors.html
where
Pretty Colors is the EZ Pages Page Title with an EZ-Pages ID of 10
I don't think anyone is maintaining this project.
I highly recommend using SSU (simple seo urls). The methodology, the way it was written, is in my opinion, the only proper way to clean up zen cart urls. And it is by far the most effective way (htaccess feeds the redirects to php--it's the only way to really get rid of ugly urls).
Yellow is extremely skilled/ professional, and in fact, the latest version of her SSU allows you to control your URLs 100% (you can give each page a specific URL, anything you like, virtual folders, etc).
Here's is the link to the zen cart mod thread for SSU:
http://www.zen-cart.com/forum/showth...86353&page=175
Here's her site:
http://rubikintegration.com/
Here's where you can download SSU:
http://public.rubikintegration.com/
It looks like 3.5.4 the latest version to date is still in beta. This is the version that allows complete control of your URLs (something nothing else offers--not magic seo url, not chemos, not anything else to date, trust me, I've researched this extensively).
I have the SEO URL Beta 3 installed and I have tried removing all the files as in the download source have from the installed zen directory but upon login via the admin, I can still see the SEO URL Beta-3 options on the Configurations menu. Anyone know what would I have missed out?
The answer is, don't use this mod. This mod is defunct, no one maintains it, or supports it. Use SSU URL mod (see my quote above).
Why use a defunct mod that is not updated? You're committing your site to something that is just going to create problems for you. I've used this mod, and it's written poorly. The only solution is to write something different completely--which has already been done with SSU URL.
USE THIS MOD, it will solve those problems you're having (why re-invent the wheel?)
http://www.zen-cart.com/forum/showth...86353&page=188
I used the following SQL Code to remove the information for SEO 3.0.0-beta1 from a number of sites that are in the process of transitioning to SSU or Magic SEO.
(This may or may not work for you, it works for me -- but you might want to backup your database before trying this :))
Go to Tools ->Install SQL Patches and enter the following code:
(note: that's four seperate lines with the ;'s ending each line.)
--[begin cut here]--
SET @configuration_group_id=0;
SELECT (@configuration_group_id:=configuration_group_id) FROM configuration_group WHERE configuration_group_title = 'Seo Urls 3.0.0-beta1' LIMIT 1;
DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;
DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;
--[end cut here]--
If it works, you should see "4 Statements Processed" and you will no longer see the unmaintained SEO module in your configuration menu.