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
  #361  
Old 11-12-2007, 02:35 PM
 
intel352 intel352 is offline
 

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

Default Re: XC SEO v1.1.0 Released

hey, check your inbox
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #362  
Old 11-19-2007, 07:10 PM
 
zeta1600 zeta1600 is offline
 

Advanced Member
  
Join Date: Mar 2006
Posts: 81
 

Default Re: XC SEO v1.1.0 Released

I have this mod in products.tpl and i am suppose to add the following code. But, I think because I have XC SEO install it's not resolving. How should I rewrite this code? Or add something to htaccess?

<a href="manufacturers.php/?manufacturerid={$products[product].manufacturerid}">{$products[product].manufacturer}</a>
__________________
Thanks.

X-Cart 4.1.9 Gold upgraded to 4.1.10
Considering 4.2

Local Computer:
Mac OS 10.5.6
Brower Firefox 3.0.5

Server:
OS Linux
Apache 2.0.63
PHP 5.2.5
MySQL 5.0.51a-community
Reply With Quote
  #363  
Old 11-19-2007, 07:12 PM
 
intel352 intel352 is offline
 

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

Default Re: XC SEO v1.1.0 Released

looks like the problem is a slash that you have in your code:
php/?

should be
php?
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #364  
Old 11-19-2007, 07:28 PM
 
zeta1600 zeta1600 is offline
 

Advanced Member
  
Join Date: Mar 2006
Posts: 81
 

Default Re: XC SEO v1.1.0 Released

That was it exactly! Hey, thanks a lot for the mod!
__________________
Thanks.

X-Cart 4.1.9 Gold upgraded to 4.1.10
Considering 4.2

Local Computer:
Mac OS 10.5.6
Brower Firefox 3.0.5

Server:
OS Linux
Apache 2.0.63
PHP 5.2.5
MySQL 5.0.51a-community
Reply With Quote
  #365  
Old 11-24-2007, 07:09 AM
 
intel352 intel352 is offline
 

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

Default Re: XC SEO v1.1.0 Released

Just a note, I noticed a notification about a user having difficulties with 4.1.9, but he appears to have removed his post. I just want to say, I just now downloaded 4.1.9 fresh, applied all XC SEO modifications without any difficulties, uploaded, installed 4.1.9, ran XC SEO installer, and it's working dandy with no problems.

So, it's been verified to work on 4.1.9, cheers
__________________
-Jon Langevin
WARNING: Unethical developer - NOT RECOMMENDED
See details here
Reply With Quote
  #366  
Old 12-07-2007, 02:09 AM
 
GTXPC GTXPC is offline
 

Member
  
Join Date: Feb 2005
Location: USA Ca
Posts: 15
 

Default Re: XC SEO v1.1.0 Released

can I get help please, how do I install this on X-cart 4.0.16

My shop has to many custom programing but it will be nice to have this module working for 4.0.X

thank you for your Help
__________________
4.0.16
Reply With Quote
  #367  
Old 12-12-2007, 12:51 PM
 
cbarnes cbarnes is offline
 

Member
  
Join Date: Oct 2005
Location: Kansas
Posts: 18
 

Default Re: XC SEO v1.1.0 Released

I believe I may have found a small bug with XC SEO v1.2.0

I was checking my client's site to be sure that the xHTML was valid and I was getting a bunch of these errors...

duplicate specification of attribute "title"

So, I dove into the code and there is a function that looks for the "title" attribute and if it is not found, it adds the title attribute to the a href tag.

However, it never finds title attributes that are already there.

So, I changed this function and It appears to be working for me...

In the file outputfilter.seo.php, I changed this...

PHP Code:
function _insert_href_title($found){
    if((
strpos(" title=",$found)===false)){
        
$found substr_replace($found,' title="'.str_replace($this->_name_delim,' ',$this->_cur_name).'">',-1);
    }
    return 
$found;


to this...

PHP Code:
function _insert_href_title($found){
    if((
eregi("title=",$found)===false)){
        
$found substr_replace($found,' title="'.str_replace($this->_name_delim,' ',$this->_cur_name).'">',-1);
    }
    return 
$found;


I hope this helps.
__________________
Chris Barnes
Ative LLC
X-Cart Development & Consulting
Reply With Quote
  #368  
Old 12-20-2007, 01:25 PM
 
SpaceCadet SpaceCadet is offline
 

Newbie
  
Join Date: Jun 2006
Location: Massachusetts, USA
Posts: 7
 

Default Re: [MODULE] XC SEO v1.2.0 Released

I installed XC SEO 1.2.0 onto my development site (X-Cart 4.1.8, WIndows XP, Apache 2.2.4, PHP 5.2.4) and ran into a problem.

The URLs look all search-engine-friendly like they should, but when I click on them, I get a 404 - Not found. It seems like the REWRITERULES are not being run (??)

Any pointers on where I can look to start to solve this problem??

Thanks.
__________________
X-Cart Version 4.1.8
Reply With Quote
  #369  
Old 12-20-2007, 05:07 PM
  bebekisses.com's Avatar 
bebekisses.com bebekisses.com is offline
 

Senior Member
  
Join Date: Dec 2006
Posts: 163
 

Default Re: XC SEO v1.1.0 Released

you need to get the mod_rewrite rules setup in your apache installation.

it would probably save you a lot of headaches to do a small linux VM (128MB/etc) for dev. sooo much cleaner. APache + php on windows is such a PITA.
__________________
http://www.tdg-i.com - A web Solutions Company
http://www.bebekisses.com
X-Cart Gold v4.1.4 Gold
- Custom AJAX Swatch color preview based on extjs
- Custom Layout

Managing: http://www.hotsutra.com (Not work safe) Adult toy store.
- Currently developing custom mods, to be disclosed once complete and deployed.


contact info: jgarcia at tdg-i.com
Reply With Quote
  #370  
Old 12-28-2007, 05:23 PM
 
gkeraunen gkeraunen is offline
 

Advanced Member
  
Join Date: Jan 2004
Posts: 37
 

Default Re: XC SEO v1.1.0 Released

This sounds really nice. Thank you for putting it together.

I installed this with no problems on 4.1.9. (After discovering the documentation!)

-Michael
__________________
X-Cart 4.1.9
PHP 4.4.1
MySQL 4.0.27
Linux
Apache
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 07:43 PM.

   

 
X-Cart forums © 2001-2020