vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
New vBSEO Discount Level for Network Builders Meet vBSEO Team in New York (Nov. 3rd & 4th) vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

keyword link replacements

This is a discussion on keyword link replacements within the General Discussion forums, part of the vBSEO SEO Plugin category; When I applied the acronym expansion to content areas only, the actual replacement works fine, but it does not display ...

Go Back   vBulletin SEO Forums > vBSEO SEO Plugin > General Discussion

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read

Reply

 

LinkBack Thread Tools
  #46  
Old 06-09-2008, 05:42 PM
Member
 
Join Date: Oct 2005
Posts: 87
When I applied the acronym expansion to content areas only, the actual replacement works fine, but it does not display any text after it. So my posts just stop in mid-sentance.

My config_vbseo.php has the URL structure like this:
PHP Code:
 '<a target="_blank" title="%2" style="color:#000000; text-decoration:none;" href="%1">%2</a>' 
Any I deas why this might be happening?

Last edited by sGroup; 06-09-2008 at 09:58 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #47  
Old 06-10-2008, 02:06 AM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
Hello,

please try to modify functions_vbseo_seo.php file:
FIND:
PHP Code:
$modstring $prepre .
(
strstr($found"http:") || strstr($found"www.") ? 
$found $afterpart 
$asv preg_replace('#\b(' $sk ')\b#i'$asv2$afterpart,
(
VBSEO_ACRONYM_PAGELIMIT max(VBSEO_ACRONYM_PAGELIMIT $vbseo_acronym_counter[$sk],0) : -1), $rapplied
));
$vbseo_acronym_counter[$sk] += $rapplied
REPLACE WITH:
PHP Code:
    if(VBSEO_ACRONYM_PAGELIMIT 0)
    {
        
$after_repl = @preg_replace('#\b(' $sk ')\b#i'$asv2$afterpart,
             (
VBSEO_ACRONYM_PAGELIMIT max(VBSEO_ACRONYM_PAGELIMIT $vbseo_acronym_counter[$sk],0) : -1), 
             
$rapplied);
        
$vbseo_acronym_counter[$sk] += $rapplied;
    }else
        
$after_repl preg_replace('#\b(' $sk ')\b#i'$asv2$afterpart);

    
$modstring $prepre .
         (
strstr($found"http:") || strstr($found"www.") ? 
             
$found $afterpart 
         
$asv $after_repl); 
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #48  
Old 06-10-2008, 12:32 PM
Member
 
Join Date: Oct 2005
Posts: 87
I tired this and didnt get any different results.
My functions_vbseo_seo.php now looks like this:
PHP Code:
function vbseo_seo_replace_callback($sk$sv$pretag$prefound$found$afterpart)
{
global 
$vbseo_acronym_format$vbseo_acronym_counter;
$found str_replace('\\"''"'$found);
$afterpart str_replace('\\"''"'$afterpart);
$prepre str_replace('\\"''"'$pretag $prefound);
if(
VBSEO_ACRONYM_PAGELIMIT>0)
{
if(!isset(
$vbseo_acronym_counter))
$vbseo_acronym_counter = array();
if(++
$vbseo_acronym_counter[$sk] > VBSEO_ACRONYM_PAGELIMIT)
return 
$prepre $found $afterpart;
}
$asv str_replace('%1'$svstr_replace('%2'$found$vbseo_acronym_format));
$asv2 str_replace('%1'$svstr_replace('%2''$1'$vbseo_acronym_format));
$rapplied 0;
    if(
VBSEO_ACRONYM_PAGELIMIT 0)
    {
        
$after_repl = @preg_replace('#\b(' $sk ')\b#i'$asv2$afterpart,
             (
VBSEO_ACRONYM_PAGELIMIT max(VBSEO_ACRONYM_PAGELIMIT $vbseo_acronym_counter[$sk],0) : -1), 
             
$rapplied);
        
$vbseo_acronym_counter[$sk] += $rapplied;
    }else
        
$after_repl preg_replace('#\b(' $sk ')\b#i'$asv2$afterpart);
    
$modstring $prepre .
         (
strstr($found"http:") || strstr($found"www.") ? 
             
$found $afterpart 
         
$asv $after_repl);
return 
$modstring;


Any other thoughts?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #49  
Old 06-10-2008, 02:19 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
Do you have VBSEO_ACRONYM_PAGELIMIT set to 0 in config_vbseo.php?
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #50  
Old 06-10-2008, 04:02 PM
Member
 
Join Date: Oct 2005
Posts: 87
I had it set to 1. I changed it to 0 and it worked perfect.
Thank you for the help.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #51  
Old 06-16-2008, 01:18 PM
Member
 
Join Date: Oct 2005
Posts: 87
Changing VBSEO_ACRONYM_PAGELIMIT to 0 fixed the problem, but now i don't have a page limit. I need to have that set or I get several links on the page. any ideas to help this?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #52  
Old 06-19-2008, 12:54 PM
Member
 
Join Date: Oct 2005
Posts: 87
Is there anything I can do to make both functions work together?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #53  
Old 06-19-2008, 01:00 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,450
Blog Entries: 1
This option (limit number of replacements per page) currently only works with 5.1.0 or greater.
__________________
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #54  
Old 06-25-2008, 10:07 PM
Member
 
Join Date: Oct 2005
Posts: 44
Thanks for adding this, it's a fantastic feature that works great on my site. It's so simple to add hundreds of links and my site's bounce rate has plummeted

The only problem is that I've added hundreds of links and it doesn't seem to want to let me add any more. It has stopped at 440 links...does that sound right? Seems like a strange number so I wondered if it's a setting or not.

When I try and add any more in the box they're not saved after I submit the page. Is there anywhere else that I could add more links in a php file etc? Could we have a bigger box in the vbseocp?

Thanks again and keep up the good work, looking forward to seeing more of this feature

Stu
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #55  
Old 06-25-2008, 10:12 PM
Member
 
Join Date: Oct 2005
Posts: 44
I think I've spotted what's happening...

It looks as though it's not savin my settings when I load any more changes into vbseocp...does that sound right? if so, is there any way I fix it to add more link replacements?

Stu
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #56  
Old 06-30-2008, 10:57 PM
Martyn's Avatar
Senior Member
 
Real Name: Martyn Day
Join Date: Dec 2005
Location: Kent - UK
Posts: 445
Blog Entries: 1
Send a message via MSN to Martyn Send a message via Skype™ to Martyn
how can we make our Acronym look like vbseos?

seo

edit im sure it used to show a little dotted under the "seo" for example to show they can be highlighteed?

any idea anyone?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #57  
Old 07-01-2008, 03:51 AM
Mert Gökçeimam's Avatar
vBSEO.com Webmaster
vBSEO Total Customer SupportvBulletin HackerBig Board Administrator
 
Real Name: Lizard King
Join Date: Oct 2005
Location: Istanbul
Posts: 7,551
Blog Entries: 3
Send a message via MSN to Mert Gökçeimam
If you use acronym option it is auto highlighted. In order to have the same effect with link keyword replacements you need to modify alt1 and alt2 css classes
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #58  
Old 07-14-2008, 05:18 AM
ridoxxx's Avatar
Member
 
Real Name: Fulvio
Join Date: Nov 2007
Location: Milan (the sunny Italy)
Posts: 40
How to made it?

Hi to all,
first sorry for my awful English

second I installed the gold realize for Vbseo 3.2.
I'd Like to convert some word

I have xxxx i'd like have yyyy ad a url in acronium expansion I
write

'xxxxx' => '<a href="http://www.lepedanevibranti.it/">yyyyy</a>'

and add:
add acronym html tag to acronyms
I obtained:
yyyyy">xxxxx">xxxxx

How I can take off: ">xxxxx">xxxxx

where's my error???
thanks to all

ciao
Fulvio
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #59  
Old 07-14-2008, 05:59 AM
Mert Gökçeimam's Avatar
vBSEO.com Webmaster
vBSEO Total Customer SupportvBulletin HackerBig Board Administrator
 
Real Name: Lizard King
Join Date: Oct 2005
Location: Istanbul
Posts: 7,551
Blog Entries: 3
Send a message via MSN to Mert Gökçeimam
You need to choose REPLACE acronyms as expanded text as your acronym expansion setting
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #60  
Old 07-14-2008, 06:26 AM
ridoxxx's Avatar
Member
 
Real Name: Fulvio
Join Date: Nov 2007
Location: Milan (the sunny Italy)
Posts: 40
Quote:
Originally Posted by Mert Gökçeimam View Post
You need to choose REPLACE acronyms as expanded text as your acronym expansion setting
I did it and this is what I obtained:
yyyyy">xxxxx

now we have to take off only ">xxxxx
suggestion?

Thanks a lot Mert Gökçeimam
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Keyword help blueraider General Discussion 1 02-15-2007 08:46 PM
keyword replacements vissa Feature Requests 4 04-28-2006 05:36 PM
/keyword/ vs. /keyword.html Fender963 General Discussion 5 03-19-2006 12:05 PM
Local Link Replacement, more replacements iain meddicks Feature Requests 2 03-03-2006 10:51 AM


All times are GMT -4. The time now is 12:03 PM.


Powered by vBulletin Version 3.8.0 Beta 3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.