Zen Cart Logo
Forums / All Other Contributions/Addons / Simple SEO URL (OLD version) [support thread]

Simple SEO URL (OLD version) [support thread]

Views: 1,113,830

Results 2,441 to 2,460 of 5,058
21 Feb 2009, 6:15 AM
#2442
coolcarpartsonline avatar

coolcarpartsonline

Totally Zenned

Join Date:
Feb 2008
Posts:
1,386
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

countrycharm:

Under links_aliases field there is
id
link_url
link_alias
status
alias_type
referring_id
permanent_link

They are not unique keys. Should I delete link_url and link_alias?

Hey Country if you get this mod to work would you let me know how you did it. I just installed this mod 4 weeks ago on a different site and it worked fine till I start using the currency conversion when I start getting all kinds of error. I went to install it today and its a whole new files and structure. I am not sure why there is a new version almost every week.

21 Feb 2009, 6:19 AM
#2443
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Simple SEO URL (OLD version) [support thread]

I think we will get there someday. My data base is telling me that
#1071 - Specified key was too long; max key length is 1000 bytes
ALTER TABLE links_aliases ADD UNIQUE link_url ( link_url , link_alias ) ;

21 Feb 2009, 6:59 AM
#2444
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Simple SEO URL (OLD version) [support thread]

Thank you yellow for your help on this problem I was having upgrading. By dropping the links_aliases table in phpmyadmin and using the code you gave me work like a charm. Thank you again. I will let you know if the cron job work tomorrow. I have it set to run twice an hour.

21 Feb 2009, 1:24 PM
#2445
xordox avatar

xordox

Zen Follower

Join Date:
Sep 2008
Location:
Tel-Aviv-New York
Posts:
143
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Hello yellow1912!
after a little war in Israel, I'm back and ready to TEST :) :flex:

21 Feb 2009, 5:44 PM
#2446
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

xordox:

Hello yellow1912!
after a little war in Israel, I'm back and ready to TEST :) :flex:
Hi xordox, I'm very sorry to hear about that. And it's great to see you are back.

21 Feb 2009, 6:55 PM
#2447
xordox avatar

xordox

Zen Follower

Join Date:
Sep 2008
Location:
Tel-Aviv-New York
Posts:
143
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Yellow,
I try to upgrade ssu to 3.6.3. but got error:

1071 Specified key was too long; max key length is 1000 bytes
in:
[ALTER TABLE links_aliases ADD UNIQUE link_url ( link_url , link_alias );]

I try to do it ( ALTER TABLE links_aliases ADD UNIQUE link_url ( link_url , link_alias ); ) by differents way, but no luck
Please tell me how I can resolve it?

21 Feb 2009, 7:15 PM
#2448
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

This is what you can do:

drop the table, the run this (if you run on phpmyadmin, add the prefix to the table name)

REATE TABLE IF NOT EXISTS links_aliases (
id int(10) NOT NULL auto_increment,
link_url varchar(255) NOT NULL default '',
link_alias varchar(255) NOT NULL default '',
status tinyint(1) unsigned NOT NULL default '1',
alias_type varchar(100) NOT NULL default 'none',
referring_id int(10) NOT NULL default '0',
permanent_link tinyint(1) NOT NULL default '0',
PRIMARY KEY (id),
UNIQUE KEY link_url (link_url,link_alias)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

Then go to module_version_tracker table and manually change SSU to patch 14. I will now investigate why the alter command in the new patch always cause some problem.

21 Feb 2009, 7:23 PM
#2449
xordox avatar

xordox

Zen Follower

Join Date:
Sep 2008
Location:
Tel-Aviv-New York
Posts:
143
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

I just upgrade ssu to 3.6.3, the problem was in "collation" :
when it was :
link_url varchar(255) utf8_general_ci
link_alias varchar(255) utf8_general_ci
I got this error:
1071 Specified key was too long; max key length is 1000 bytes

When I changed to :
link_url varchar(255) latin1_swedish_ci
link_alias varchar(255) latin1_swedish_ci
I got:
Warning Your module needs to be upgraded
Success 3 statements processed.
Success Upgraded database to patch level 14
Please tell me can I now change back to utf8_general_ci ?

21 Feb 2009, 7:25 PM
#2450
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

ahh, I see, but actually you can use utf8 since you may want to have some special utf8 alias in that, Just drop the unique key pair is okie, I'm changing the code a bit so that the "unique" checking will be done in php instead, this will avoid having to do this check in mysql

Regards

Raine

21 Feb 2009, 8:45 PM
#2451
xordox avatar

xordox

Zen Follower

Join Date:
Sep 2008
Location:
Tel-Aviv-New York
Posts:
143
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Yellow,
I try to use ssu 3.6.3, and have some questions:

  1. when I set SSU Multi Language Status to true it make 301 redirect (from https://www.site.com to https://www.site.com/en) I think its not good for google.
    when I turn off it and set Language Selector to Default instead browser, the 301 redirection are dissapear, but how to fix next problem:
    when I open the site I got:
    https://www.site.com
    when I change the language I got:
    https://www.site.com/index/language/ru
    how to change it to
    https://www.site.com/ru?
21 Feb 2009, 8:58 PM
#2452
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,284
Plugin Contributions:
37

Re: Simple SEO URL (OLD version) [support thread]

I installed this for a client today, and I must say its works pretty well... Cheers

I do have 2 questions...

The first is that when index.php is loaded it does deliver a proper canonical redirect... But to the incorrect canonical

so I am given

http://www.domain.com

when it should be

http://www.domain.com/

Can I correct this easily?

Secondly, as this client would like to have the html added... can I do this without a big hassle?

Thanks for the contrib :clap:

~Melanie

21 Feb 2009, 9:15 PM
#2453
xordox avatar

xordox

Zen Follower

Join Date:
Sep 2008
Location:
Tel-Aviv-New York
Posts:
143
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Yellow,
I checked ssu without Multi Language support (on site with 3 languages) and its generate many duplicate urls, and with Multi Language everething ok. and I think to fix it will take many time.

Instead, if we can only fix one redirection - Main page with default language (https://www.site.com/en to https://www.site.com), it will make first page with main language google friendly, and this page will get high page ranking
What do you think about it?

21 Feb 2009, 10:56 PM
#2454
coolcarpartsonline avatar

coolcarpartsonline

Totally Zenned

Join Date:
Feb 2008
Posts:
1,386
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Ok after uninstalling and re-installing the latest version 3.6.4 from your site. The add to cart works for one item but If you try to add the same item twice to the shopping cart the quantity will not changed. Even if you go into the shopping cart and update the quantity to 2 or 3 the page will refresh but the quantity will remain on one. Is that a bug or its on my end.

21 Feb 2009, 10:59 PM
#2455
mprough avatar

mprough

Totally Zenned

Join Date:
Nov 2007
Location:
Woodbine, Georgia, United States
Posts:
4,284
Plugin Contributions:
37

Re: Simple SEO URL (OLD version) [support thread]

Glamorousshoe:

Ok after uninstalling and re-installing the latest version 3.6.4 from your site. The add to cart works for one item but If you try to add the same item twice to the shopping cart the quantity will not changed. Even if you go into the shopping cart and update the quantity to 2 or 3 the page will refresh but the quantity will remain on one. Is that a bug or its on my end.

I am not having that issue.. would have to guess that is another mod or customization messing up or interfering.

~Melanie

21 Feb 2009, 11:08 PM
#2456
coolcarpartsonline avatar

coolcarpartsonline

Totally Zenned

Join Date:
Feb 2008
Posts:
1,386
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Another question about this module in general I had it installed on a site 2 weeks ago and noticed that the customers are being redirected to a link that doesn't exist something like /includes/templates/your-template/buttons/english/mcnt_detail.gif
Now on this new site I am getting this link in the whose online page in the admin
/includes/templates/precutcartint/css/precutcartint/templates/precutcartint/images/header_bg.jpg

Is there an issue with the redirecting?

21 Feb 2009, 11:10 PM
#2457
coolcarpartsonline avatar

coolcarpartsonline

Totally Zenned

Join Date:
Feb 2008
Posts:
1,386
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

mprough:

I am not having that issue.. would have to guess that is another mod or customization messing up or interfering.

~Melanie

If I disable this mod in the admin, the quantity update works fine. I am guessing it has something to do with this mod.

21 Feb 2009, 11:58 PM
#2458
craft_magick avatar

craft_magick

Zen Follower

Join Date:
Nov 2007
Posts:
166
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

yellow1912:

I dont think version 3.5.8 has any bug that would cause this, but please upgrade right away to 3.6.3 first.
http://public.rubikintegration.com/

Clearing cache then please let me know if the error is still there.

installed upgrade to 3.6.4 and still get redirect loop when customers try to login

22 Feb 2009, 4:13 AM
#2459
coolcarpartsonline avatar

coolcarpartsonline

Totally Zenned

Join Date:
Feb 2008
Posts:
1,386
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

I don't think this mod is interact well with other mods. I have tried to install it on 2 sites so far along with other mods installed and it seems to cause problems. So far I had to disable it on the 2 sites. Note I have installed the Ultimate SEO on my Aftermarket site found in the signature and don't have any redirecting problems. I had the same issue of redirecting on login but disabling this mod will eliminate the problem.

22 Feb 2009, 4:16 AM
#2460
yellow1912 avatar

yellow1912

Totally Zenned

Join Date:
Oct 2006
Posts:
5,422
Plugin Contributions:
0

Re: Simple SEO URL (OLD version) [support thread]

Glamorousshoe:

I don't think this mod is interact well with other mods. I have tried to install it on 2 sites so far along with other mods installed and it seems to cause problems. So far I had to disable it on the 2 sites. Note I have installed the Ultimate SEO on my Aftermarket site found in the signature and don't have any redirecting problems. I had the same issue of redirecting on login but disabling this mod will eliminate the problem.
I think you have to tell us your version as well as the modules you said it doesnt work well with, otherwise it wont help. I have a site where we installed all the major modules along with this module and we dont have any problem at all.