Follow us on Twitter X-Cart on Facebook Wiki
Shopping cart software Solutions for online shops and malls
 

XC SEO v1.1.0 Released

 
Reply
   X-Cart forums > X-Cart 4 > Dev Questions
 
Thread Tools Search this Thread
  #41  
Old 10-04-2006, 11:57 AM
 
teddychan teddychan is offline
 

Member
  
Join Date: Mar 2006
Posts: 25
 

Default Re: XC SEO v1.1.0 Released

okay, i think i found the solution. the problem is on the line:

replace:
Code:
$product['descr']."\t".

with

Code:
func_froogle_convert($product['descr'], 65536)."\t".

in the install_how_to file

there should be two three line need to be replaced (included the comment out line)
__________________
--
Reply With Quote
  #42  
Old 10-05-2006, 07:02 AM
 
intel352 intel352 is offline
 

X-Wizard
  
Join Date: Dec 2005
Posts: 1,071
 

Default Re: XC SEO v1.1.0 Released

Refer here for the latest (accurate) install docs, until I get another release out. I apologize for any issues:

http://x-cart-seo.googlecode.com/svn/branches/xc_seo_module/x-cart-seo%20docs/

Please note the Froogle modification instructions are different, there are issues in the current release's implementation of the Froogle changes.
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #43  
Old 10-07-2006, 06:16 PM
  KCAutosound's Avatar 
KCAutosound KCAutosound is offline
 

eXpert
  
Join Date: Feb 2005
Posts: 220
 

Default Re: XC SEO v1.1.0 Released

Sorry guys but I've been reading through the earlier posting of this and also this one and I am still trying to figure out what this is and what the benifits of it are. Can somebody please tell me in basic form what this is and why I need it.
__________________
X-Cart version 4.7.6 Gold
xcartmods.co.uk - Ultra Template
Reply With Quote
  #44  
Old 10-08-2006, 08:16 AM
  ShishaPipeUK's Avatar 
ShishaPipeUK ShishaPipeUK is offline
 

Senior Member
  
Join Date: Jul 2005
Location: London, England.
Posts: 118
 

Default Re: XC SEO v1.1.0 Released

SEO stands for Search Engine Optimisation, search engines discriminate against ID numbers in URL strings and this mod helps and makes life a little easier for those lovable bots and spiders who crawl our pages.

Whether you believe the fact that search engines discriminate against ID numbers in URL strings or not, the fact of the matter is that

[1] http://www.theshisha.com/shopcart/product.php?productid=16242

will never look as nice to the end user, or search engines, as

[2] http://www.theshisha.com/shopcart/Soex-Herbal-Strawberry-250g-pr-16242.html

With the second option, you can see what the product is in the URL without even going to that page, where as the first option you do not know what the product is.

Both these above links, link to the same page but the search engine, spider that crawls our web sites would prefer the second option which is a html page and not a PHP page.
__________________
Apache/2.0.55 (Red Hat) & MYSQL Server: 5.0.24
PERL: 5.008005 / PHP: 4.4.4 - 4.3.1 X-CART

Shop carts at
http://www.nightscene.co.uk/shop/home.php
http://www.theshisha.net/shopcart/home.php
http://www.system-maintenance.com/maint/home.php
http://www.tabac4u.com
Reply With Quote
  #45  
Old 10-10-2006, 03:42 PM
 
jamesh3 jamesh3 is offline
 

Member
  
Join Date: Sep 2006
Posts: 20
 

Default Re: XC SEO v1.1.0 Released

Is there a way of getting this to run on Webserver Software Zeus 4.3?
I just found out that my host uses this not apache. A quick google suggests there is a rewrite command but does not work for SEO stuff.
__________________
xcart 4.4.5
Mods/Adds: CDSEO Pro, stock notify, global options, BCSE POS, BCSE Reward points
Reply With Quote
  #46  
Old 10-11-2006, 04:39 AM
 
intel352 intel352 is offline
 

X-Wizard
  
Join Date: Dec 2005
Posts: 1,071
 

Default Re: XC SEO v1.1.0 Released

Not currently, but possibly in the future. For now, you definitely need rewrite functionality
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #47  
Old 10-12-2006, 06:15 AM
 
Scott DeToffol Scott DeToffol is offline
 

Senior Member
  
Join Date: Apr 2005
Location: Minneapolis, MN
Posts: 174
 

Default Re: XC SEO v1.1.0 Released

I'm getting 1,963 URLs not followed due to redirect errors under Google Webmaster Tools.

Here is an example URL listed by Google:

Google is indexing many of my pages, but they don't seem to be indexing my product pages, and none of my pages using this mod's reformatted URLs.
__________________
Scott DeToffol
Online Marketing and E-Commerce Consulting in Minneapolis

X-Cart Gold Version 4.1.9 for www.sundogtrading.com
X-Cart Pro Version 4.2.3 for www.heavyglare.com
Reply With Quote
  #48  
Old 10-12-2006, 06:46 AM
 
intel352 intel352 is offline
 

X-Wizard
  
Join Date: Dec 2005
Posts: 1,071
 

Default Re: XC SEO v1.1.0 Released

This is an issue that exists due to X-Cart's redirect mechanism + functionality in XC SEO. If there is no established cookie when a user visits a .php style url, and the user gets redirected to the .html url (i.e.- either cookies are turned off OR your visit to the .php url is your first time to the site), X-Cart's redirect function will insert the xid session into the url. XC SEO attempts to strip the xid value from the url and redirect, which begins a loop (since x-cart will once again insert the xid value).

The session id (xid) should *not* be included in the url for search engines, because that may lead to session issues when a user visits a url that has the xid value appended. I've reported this issue to X-Cart, with the suggestion that they do not append xid for bots. They have responded saying that this change will be incorporated into the next release of X-Cart (in my case, v4.1.4).

I'll post a release of XC SEO today, along with the session id fix for bots. I had delayed a release, because I was waiting for results from google to make sure my changes were effective. (I found this issue happening with *some* google bots on SoundChoiceStore, 20416 urls had been reported by google as having redirect problems, tho a number of the urls were the same url with a different session value attached. Since I've implemented the session fix for bots, google appears to have had no more issues)

I apologize for any problems this has caused for you, but rest assured the fix is on it's way
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #49  
Old 10-12-2006, 07:42 AM
  jasonroy's Avatar 
jasonroy jasonroy is offline
 

Senior Member
  
Join Date: Sep 2006
Location: Tualatin, Oregon
Posts: 147
 

Default Re: XC SEO v1.1.0 Released

Quote:
Originally Posted by intel352
This is an issue that exists due to X-Cart's redirect mechanism + functionality in XC SEO. If there is no established cookie when a user visits a .php style url, and the user gets redirected to the .html url (i.e.- either cookies are turned off OR your visit to the .php url is your first time to the site), X-Cart's redirect function will insert the xid session into the url. XC SEO attempts to strip the xid value from the url and redirect, which begins a loop (since x-cart will once again insert the xid value).

The session id (xid) should *not* be included in the url for search engines, because that may lead to session issues when a user visits a url that has the xid value appended. I've reported this issue to X-Cart, with the suggestion that they do not append xid for bots. They have responded saying that this change will be incorporated into the next release of X-Cart (in my case, v4.1.4).

I'll post a release of XC SEO today, along with the session id fix for bots. I had delayed a release, because I was waiting for results from google to make sure my changes were effective. (I found this issue happening with *some* google bots on SoundChoiceStore, 20416 urls had been reported by google as having redirect problems, tho a number of the urls were the same url with a different session value attached. Since I've implemented the session fix for bots, google appears to have had no more issues)

I apologize for any problems this has caused for you, but rest assured the fix is on it's way

definitely anxiously awaiting this

question about updating...i have 1.0.6 installed and noticed that you're up to 1.1.1. Is it as simple as uploading the new files, or do I need to re-run the sql commands?
__________________
rjroffroad.com
x-cart 4.1.3
+ez checkout
+remember anonymous carts
Reply With Quote
  #50  
Old 10-14-2006, 07:19 AM
 
Sahani Sahani is offline
 

Member
  
Join Date: Sep 2006
Posts: 12
 

Default Re: XC SEO v1.1.0 Released

your mod is excellent. Thanks for the time you have spent on it. Look forward to your session ID fix
__________________
Version 4.1.3
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -8. The time now is 12:39 AM.

   

 
X-Cart forums © 2001-2020