Zen Cart Logo
Forums / All Other Contributions/Addons / Chemo's Ultimate URL's

Chemo's Ultimate URL's

Views: 493,426

Results 821 to 840 of 1,407
10 May 2007, 5:17 PM
#821
johneemac avatar

johneemac

New Zenner

Join Date:
Sep 2006
Posts:
65
Plugin Contributions:
0

Chemo's Ultimate URL's

The SEO Urls are working fine with the main site however, i get this error on the admin page when updating product info..

"Warning: main(includes/reset_seo_cache.php) [function.main]: failed to open stream: No such file or directory in"

Any ideas? Thanks.

10 May 2007, 5:22 PM
#822
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Chemo's Ultimate URL's

high2K:

Are there details of these issues and any workarounds that you could point me to?
The client concerned want seo-friendly URLs, but I'm reluctant to add this cont. to her site if it's going to mess things up.

There is a url for the bug site in the guide or you can search this thread or read from about middle forward. All the information is on this thread.

11 May 2007, 8:39 AM
#823
adamdowney avatar

adamdowney

New Zenner

Join Date:
Mar 2007
Posts:
32
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

Putting aside the BETA is there a version which works effectivley with 1.3.7?

11 May 2007, 1:19 PM
#824
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Chemo's Ultimate URL's

adamdowney:

Putting aside the BETA is there a version which works effectivley with 1.3.7?

I've used 2.103 with zencart 1.3.7, and made any files changes needed for zen cart updates (don't remember how many there were, or any specifics). It worked, but "effectively" is quite a relative term. But it worked much better than this BETA, at least for me.

11 May 2007, 5:17 PM
#825
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

How do I completely remove the new beta version from my test and live site? I removed all the files for the beta version from my test site, but I still see it in the Admin section. Any help will be appreciated.

11 May 2007, 5:41 PM
#826
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Chemo's Ultimate URL's

ctcentralinfo:

How do I completely remove the new beta version from my test and live site? I removed all the files for the beta version from my test site, but I still see it in the Admin section. Any help will be appreciated.

To safely remove this mod (BETA 3.0) from your site do the following:

  1. Turn off SEO URL on your admin side.
  2. Replace the changes made to your /includes/functions/html_output.php (you can simply override this file if with Zen Cart original if you don't have another mod that has modified it.
  3. Remove all the files uploaded during your install that you no longer need.
  4. Remove the configuration entry from your database.
  5. Enter a new redirect rule for the search engines in your .htaccess to send 301 redirect.

IF you use blank default extension use this .htaccess

RewriteEngine On
RewriteBase /
# Remove Ultimate Seo Urls version 3.0
RewriteRule ^(.*)-p-(.*)$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L,R=301]
RewriteRule ^(.*)-c-(.*)$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L,R=301]
RewriteRule ^(.*)-m-([0-9]+)$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L,R=301]
RewriteRule ^(.*)-pi-([0-9]+)$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L,R=301]
RewriteRule ^(.*)-pr-([0-9]+)$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L,R=301]
RewriteRule ^(.*)-pri-([0-9]+)$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L,R=301]
RewriteRule ^(.*)-prw-([0-9]+)$ index\.php?main_page=product_reviews_write&products_id=$2&%{QUERY_STRING} [L,R=301]

I am not sure what to do for the rewrite for the other pages when default extension is blank.

Here is the .htaccess if default extension is .html

RewriteEngine On
RewriteBase /

# Remove Ultimate Seo Urls version 2.1
RewriteRule ^(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [R=301,L]
RewriteRule ^(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [R=301,L]
RewriteRule ^(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [R=301,L]
RewriteRule ^(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [R=301,L]
RewriteRule ^(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [R=301,L]
RewriteRule ^(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [R=301,L]
RewriteRule ^(.*)-prw-([0-9]+).html$ index\.php?main_page=product_reviews_write&products_id=$2&%{QUERY_STRING} [L,R=301]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*).html$ index\.php?main_page=$1&%{QUERY_STRING} [L,R=301]

Notice I was too lazy to change [L,R=301] to [R=301,L] The truth is it really doesn't matter.

Also, keep in mind that depending on your scenario you may need to do things different especially is you installed previous version with .html extension but the beta version with blank extension.

11 May 2007, 5:43 PM
#827
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Chemo's Ultimate URL's

BTW, I noticed Dreamscape was just online so please correct my post above if that's not correct. It works for but may not be the most efficient/right way to do it.

Some are of the opinion that you need RewriteCond %{REQUEST_FILENAME} !-f before each rewrite rule. I am not using it and everything works fine so if someone can explain the difference that would be great.

15 May 2007, 9:12 PM
#828
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

I am trying to figure out why Seo Urls 3.0.0-beta1 is still showing up in the configuration section or admin? I looked at both Seo Urls 3.0.0-beta1 and ultimate SEO url just to make sure I removed everything but I still get that section showing with:

Warning: call_user_func(seo_display_plugins) [function.call-user-func]: First argument is expected to be a valid callback in /home/admin/includes/functions/general.php on line 1538

Warning: call_user_func(seo_display_char_plugins) [function.call-user-func]: First argument is expected to be a valid callback in /home/admin/includes/functions/general.php on line 1538

15 May 2007, 9:18 PM
#829
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

OOPs, forgot theis part:

Remove the configuration entry from your database.

16 May 2007, 3:39 PM
#830
helpme avatar

helpme

Totally Zenned

Join Date:
Apr 2007
Posts:
632
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

Just to clarify, this is not suggested with a live site yet? Any idea when it will be ready to use live? I am a little afraid of messing up my whole site! Thanks

16 May 2007, 6:33 PM
#831
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Chemo's Ultimate URL's

helpme:

Just to clarify, this is not suggested with a live site yet? Any idea when it will be ready to use live? I am a little afraid of messing up my whole site! Thanks

Well, the developer for this mod (Dreamscape) said only fools will use this in production environment so that should tell you something. There is really not estimate of when there is going to be a production release if ever.

17 May 2007, 8:40 AM
#832
adamdowney avatar

adamdowney

New Zenner

Join Date:
Mar 2007
Posts:
32
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

BlessIsaacola:

Well, the developer for this mod (Dreamscape) said only fools will use this in production environment so that should tell you something. There is really not estimate of when there is going to be a production release if ever.

Does this go for using 2.103 of this mod with the latest Zen Cart? Does anyone use any version of this mod sucesfullly with the latest version of Zen?

I have gave it a miss on one site now.

17 May 2007, 11:44 AM
#833
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Chemo's Ultimate URL's

kelvyn:

Well, I'm using 3.0.0b1 it without incident on Zen 1.3.7

If you check out this post, I've merged all the bugfixes into a bugfix update.

I don't understand why he wouldn't finish the job - he put in all the effort to get this far! Come back, Dreamscape! :)

Wow, without incident? I'm jealous. What are your settings for this mod? Are you using Paypal payments (even just IPN) with no problem? If so, I'd like to needle you for some info about some server settings, I'm wondering if my issues don't have something to do with some apache settings.

17 May 2007, 3:04 PM
#834
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Chemo's Ultimate URL's

adamdowney:

Does this go for using 2.103 of this mod with the latest Zen Cart? Does anyone use any version of this mod sucesfullly with the latest version of Zen?

I have gave it a miss on one site now.

2.103 works just fine and beta 3.0 works fine depending on your configuration.

17 May 2007, 3:08 PM
#835
blessisaacola avatar

blessisaacola

Totally Zenned

Join Date:
Feb 2004
Location:
Georgia, USA
Posts:
1,875
Plugin Contributions:
1

Re: Chemo's Ultimate URL's

kelvyn:

Well, I'm using 3.0.0b1 it without incident on Zen 1.3.7

If you check out this post, I've merged all the bugfixes into a bugfix update.

I don't understand why he wouldn't finish the job - he put in all the effort to get this far! Come back, Dreamscape! :)

Do you have a site where this is working flawlessly?

Are you using PATH-INFO or Mod Rewrite?

Do you offer Paypal Express on your site?

Is you default extension .html?

Thanks!

18 May 2007, 9:05 AM
#836
amdowney avatar

amdowney

New Zenner

Join Date:
Nov 2006
Posts:
30
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

The only problem I had in the end with 3 BETA was with SSL enabled (shared SSL) after you submit customer login details you get 'PAGE NOT FOUND'

18 May 2007, 2:07 PM
#837
rxalex avatar

rxalex

Totally Zenned

Join Date:
Feb 2006
Posts:
588
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

What worked for me with regard to shared SSL is in the .htaccess file in the first line you have to add your host user name

Options +FollowSymLinks
RewriteEngine On
RewriteBase /~user/

19 May 2007, 1:05 PM
#838
adamdowney avatar

adamdowney

New Zenner

Join Date:
Mar 2007
Posts:
32
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

Thanks RXALEX that solves that issue, reading this am gonna have to test the site thoroughly and decide if i'm gonna run with this BETA version though...

With regards to the search engines if it's a new site and you use the mod there should be no danger of duplicate URLs. I suppose if an existing listed site uses this mod then the old URLs still load the same pages, that's where a problem may occur? Any other opinions on this?

Is there a way with the htaccess file to stop the original unoptimised URLS loading up?

20 May 2007, 1:39 AM
#839
mboley370 avatar

mboley370

New Zenner

Join Date:
May 2007
Posts:
91
Plugin Contributions:
0

Re: Chemo's Ultimate URL's

Hi

      I am kinda new to this ultimate url and have read over many many pages of threads.  My problem is I don't know which to choose or ever where to start to install the correct version.  I here some people say install v3.0 and some say install the older 2. something what ever the newest 2 is.  

Could someone please let me know which is better to install the 2 or the 3 and could someone direct me in the correct direction to get very good details on installing it. Like step by step for dummies lol.

About my store so far it really isn't live I don't even have an ssl or any of that yet I am in the process of building it. It will have around 20,000 products in it. I have the newest zen cart available installed 1.3.7.

I hope this is enough information. If anyone is willing to help me that would be great. Thanks in advance

Matt

20 May 2007, 2:38 PM
#840
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Chemo's Ultimate URL's

mboley370:

Hi

      I am kinda new to this ultimate url and have read over many many pages of threads.  My problem is I don't know which to choose or ever where to start to install the correct version.  I here some people say install v3.0 and some say install the older 2. something what ever the newest 2 is.  

Could someone please let me know which is better to install the 2 or the 3 and could someone direct me in the correct direction to get very good details on installing it. Like step by step for dummies lol.

About my store so far it really isn't live I don't even have an ssl or any of that yet I am in the process of building it. It will have around 20,000 products in it. I have the newest zen cart available installed 1.3.7.

I hope this is enough information. If anyone is willing to help me that would be great. Thanks in advance

Matt

I hate to become an outspoken critic of this mod, but my sincere advice to you is to step away from Ultimate SEO URLs. In theory, I love SEO URLs, and will defend the option to choose them (whether or not they are thought to improve search engine rankings), despite the overwhelming disdain of them on this forum by some.

Back away from this mod, and keep possession of hours of your life that will otherwise be lost would you decide to install it. It's not ready. It's not worth it.

That being said, I have personally run 2.103 on a 1.3.7 cart with less issues than the new beta. It (2.103) has its issues as well, but at least Paypal works as advertised. If using 2.103, I would check to be sure that any changes in Zencart 1.3.7 are changed in any files in 2.103.