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
  #81  
Old 10-26-2006, 08:08 AM
  Pantalonas's Avatar 
Pantalonas Pantalonas is offline
 

Member
  
Join Date: Aug 2006
Posts: 28
 

Default Re: XC SEO v1.1.0 Released

Quote:
Originally Posted by intel352
Nice catch jason, I'll have to doublecheck against 4.1.3 (argh, 4.1.3 had a number of changes, lol...)

EDIT: btw, the point of that edit, is that the get_language file is NOT redirecting of the previous page had a .html extension. Which means it won't redirect back to an SEO'd url... :-\ Really I need a better workaround that what I implemented, just haven't come up with one yet

Hello all,

I do have the same problem. But I do use a multilingual site.
As I'm not a coder I was hoping that you would have a solution

Thanks anyway.
__________________
X-Cart 4.2.2 / PHP 5.2.9 / Webserver Apache 2.0.63 (FreeBSD) / MySQL 5.0.77
http://www.hemmaplanet.eu
Reply With Quote
  #82  
Old 10-26-2006, 11:22 AM
 
intel352 intel352 is offline
 

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

Default Re: XC SEO v1.1.0 Released

4.1.3, get_language.php modification

Find:

Code:
if ( ($current_area == "C" || $current_area == "B") && !empty($HTTP_GET_VARS["sl"]) && !defined('IS_ROBOT') && !preg_match('/\.html?($|\?)|\/$/s', $l_redirect) ) { func_header_location($l_redirect); }

Replace With:
Code:
if (($current_area == "C" || $current_area == "B") && !empty($HTTP_GET_VARS["sl"]) && !defined('IS_ROBOT')) { ############################################################ # X-CART-SEO Mod :: http://code.google.com/p/x-cart-seo/ ############################################################ if (!empty($active_modules["XC_SEO"])) { func_header_location($l_redirect); }else{ if (!preg_match('!(\.htm(l)?|/$)!',$_tmp["path"])) { func_header_location($l_redirect); } } # End SEO }
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #83  
Old 10-26-2006, 11:40 AM
  Pantalonas's Avatar 
Pantalonas Pantalonas is offline
 

Member
  
Join Date: Aug 2006
Posts: 28
 

Default Re: XC SEO v1.1.0 Released

Thank you Intel!
__________________
X-Cart 4.2.2 / PHP 5.2.9 / Webserver Apache 2.0.63 (FreeBSD) / MySQL 5.0.77
http://www.hemmaplanet.eu
Reply With Quote
  #84  
Old 10-29-2006, 10:02 AM
  ezi designs's Avatar 
ezi designs ezi designs is offline
 

Senior Member
  
Join Date: Sep 2006
Location: United Kingdom
Posts: 118
 

Default Re: XC SEO v1.1.0 Released

Can i ask if i should consider incorperating this in my newly purchased x-cart.
__________________
x-cart 4.1.6

DSEFU PRO

http.www.demontemplates.com
Reply With Quote
  #85  
Old 10-29-2006, 10:10 AM
 
Viejo Viejo is offline
 

Advanced Member
  
Join Date: Sep 2006
Location: San Diego area
Posts: 34
 

Default Re: XC SEO v1.1.0 Released

My opinion: Absolutely. Especially if you don't want to change urls in your cart after they have been indexed by the search engines.
__________________
Versions 4.3.1 - 4.5
Reply With Quote
  #86  
Old 10-29-2006, 12:35 PM
  ezi designs's Avatar 
ezi designs ezi designs is offline
 

Senior Member
  
Join Date: Sep 2006
Location: United Kingdom
Posts: 118
 

Exclamation Re: XC SEO v1.1.0 Released

Just downloaded this file and unzipped it, uploaded it but the thing is where should it be enabled. I am assuming its in modules but i cannot see it.

So to give a beeter understanding of how i uploaded it:

catalog/.htaccess into = /public_html/mystore/catalog/
modules/XC_SEO = /public_html/mystore/modules/ *
sql/xcseo.sql,xcseo_remove.sql,xcseo_lng_US.sql = /public_html/mystore/sql/
x-cart-seo docs = /public_html/mystore/ *
.htaccess = /public_html/mystore/
robots.txt = /public_html/mystore/
secure.htaccess = /public_html/mystore/

The two with a red * i am unsure if this is correct or whether the files in these folders are to be entered.

As it stands i just put the whole XC_SEO folder into /public_html/mystore/modules/ as i did with the x-cart-seo docs into the /public_html/mystore/


Thanks again if someone can help[me out here

Richard
__________________
x-cart 4.1.6

DSEFU PRO

http.www.demontemplates.com
Reply With Quote
  #87  
Old 10-29-2006, 05:09 PM
 
intel352 intel352 is offline
 

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

Default Re: XC SEO v1.1.0 Released

ezi, you've uploaded the files properly, now you need to execute the SQL commands as noted in the docs (look in the xcseo docs folder, the install file for your version).

additionally there are a few files you need to edit, as noted in the docs
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #88  
Old 10-30-2006, 02:35 AM
  ezi designs's Avatar 
ezi designs ezi designs is offline
 

Senior Member
  
Join Date: Sep 2006
Location: United Kingdom
Posts: 118
 

Unhappy Re: XC SEO v1.1.0 Released

I have followed the install instruction to INSTALL 4.1.3 under x-cart-seo docs but when doing so i receive the follow error:

This is what i entered into the 'Apply SQL patch' in admin:

Refer to the following files for SQL commands:
sql/xcseo.sql
sql/xcseo_lng_US.sql


INVALID SQL: 1064: You have an error in your syntax; check the manual that corresponds to your MYSQL server version for the right syntax to use near ▒Refer to the following files for SQL commands: sql/xcseo.sql sql/xcseo_lng_US.▓at line 1
SQL QUERY FAILURE: Refer to the following files for SQL commands: sql/xcseo.sql sql/xcseo_lng_US.sql

Any advice will be most welcome,

Thanks

Richard
__________________
x-cart 4.1.6

DSEFU PRO

http.www.demontemplates.com
Reply With Quote
  #89  
Old 10-30-2006, 06:28 AM
 
intel352 intel352 is offline
 

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

Default Re: XC SEO v1.1.0 Released

Wow, 2nd person to do this in this thread...

you need to open the following files for SQL commands:
sql/xcseo.sql
sql/xcseo_lng_US.sql
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #90  
Old 10-30-2006, 11:00 AM
 
consolep consolep is offline
 

Member
  
Join Date: Jun 2006
Posts: 17
 

Default Re: XC SEO v1.1.0 Released

Awesome mod ! this is truly THE best mod for xcart out. Can't wait for the catagory rewrites that will make this mod even greater

Keep up the good work intel

Heres the site im working on: http://www.consoleasia.com . Great Design, works great with clean urls
__________________
Xcart v4.0.18 Current one
Reply With Quote
Reply
   X-Cart forums > X-Cart 4 > Dev Questions


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 01:20 AM.

   

 
X-Cart forums © 2001-2020