vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
vBSEO Total Support Team Launches DeskPro New vBSEO Discount Level for Network Builders 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

vBCommbull - Copyright in emails but content NOT rewritten

This is a discussion on vBCommbull - Copyright in emails but content NOT rewritten within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Do you guys know of Commbull? http://www.vbulletin.org/forum/showthread.php?t=97809 Basically, it is a condensed bulletin of threads, new/most replies/most views etc. I ...

Go Back   vBulletin SEO Forums > vBSEO SEO Plugin > Troubleshooting

Enhancing 80 million pages.

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

Reply

 

LinkBack Thread Tools
  #1  
Old 10-26-2005, 07:08 PM
Ace Shattock's Avatar
vBSEO Staff
vBSEO Total Customer SupportCommunity Builder
 
Real Name: Ace Shattock
Join Date: Jul 2005
Location: New Zealand
Posts: 2,923
vBCommbull - Copyright in emails but content NOT rewritten

Do you guys know of Commbull?

http://www.vbulletin.org/forum/showthread.php?t=97809

Basically, it is a condensed bulletin of threads, new/most replies/most views etc.

I just upgraded to the latest version and noticed the vBSEO copyright in the footer of the emails, but none of the links are actually rewritten.

How do we go about applying vBSEO Mail rewriting to these? Any easy fix?
__________________
Ace Shattock / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

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


My Personal Sites: New Zealand Forum | vBulletin Modifications and Styles | vBulletin Hosting
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #2  
Old 10-30-2005, 08:02 AM
Senior Member
 
Join Date: Sep 2005
Posts: 126
Re: vBCommbull - Copyright in emails but content NOT rewritten

Hi,

yep, rewriting CommBulls E-Mails would be really great!

Regards,

Tobi
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #3  
Old 10-31-2005, 03:16 AM
Joe Ward's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Joseph Ward
Join Date: Jun 2005
Location: Puerto Rico
Posts: 19,783
Blog Entries: 7
Re: vBCommbull - Copyright in emails but content NOT rewritten

@All:

We are looking into it.
__________________
Joe Ward / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

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!Share on Facebook!
Reply With Quote
  #4  
Old 11-11-2005, 07:58 PM
Member
 
Join Date: Nov 2005
Posts: 88
Re: vBCommbull - Copyright in emails but content NOT rewritten

Hi

Any update?

Regards
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #5  
Old 11-11-2005, 09:54 PM
Joe Ward's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Joseph Ward
Join Date: Jun 2005
Location: Puerto Rico
Posts: 19,783
Blog Entries: 7
Re: vBCommbull - Copyright in emails but content NOT rewritten

@emin:

This requires a special modification to Commbull. The following code changes need to be applied to commbull.php:

1.

Find:

PHP Code:
construct_hidden_code('page',$page-1); 
Add below it:

PHP Code:
if(@include_once('./includes/functions_vbseo.php'))
{
$htmlmail $HTML_header.$HTML_threadspreview.$HTML_threadspreview1.$HTML_threadspreview2.$HTML_threadspreview3.$HTML_threadspreview4.$HTML_threadspreview_end.$HTML_pollspreview.$HTML_eventspreview.$HTML_birthdayspreview.$HTML_statspreview.$HTML_userpreview.$HTML_footer;
$htmlmail make_crawlable($htmlmail);
define('VBSEO_REWRITE_TEXTURLS'1);
define('VBSEO_PREPROCESSED'1);
$txtmail $header.$threadspreview.$threadspreview1.$threadspreview2.$threadspreview3.$threadspreview4.$pollspreview.$eventspreview.$birthdayspreview.$statspreview.$userpreview.$footer;
$txtmail make_crawlable($txtmail);

2.

Find:

PHP Code:
 print_textarea_row($lang['mailbody'],"message",$header.$threadspreview.$threadspreview1.$threadspreview2.$threadspreview3.$threadspreview4.$pollspreview.$eventspreview.$birthdayspreview.$statspreview.$userpreview.$footer,45,80); 
Replace with:

PHP Code:
 print_textarea_row($lang['mailbody'],"message",$txtmail,45,80); 
3.

Find:

PHP Code:
 print_textarea_row($lang['mailbody'],"HTML_message",$HTML_header.$HTML_threadspreview.$HTML_threadspreview1.$HTML_threadspreview2.$HTML_threadspreview3.$HTML_threadspreview4.$HTML_threadspreview_end.$HTML_pollspreview.$HTML_eventspreview.$HTML_birthdayspreview.$HTML_statspreview.$HTML_userpreview.$HTML_footer,45,80); 
Replace with:

PHP Code:
 print_textarea_row($lang['mailbody'],"HTML_message",$htmlmail,45,80); 
4.

Find:

PHP Code:
$HTML_message str_replace("\\'","'",$HTML_message); 
Add below it:

PHP Code:
 if(@include_once('./includes/functions_vbseo.php'))
{
$HTML_message make_crawlable($HTML_message);
$HTML_message preg_replace('#([^\\\\])"#''$1\\"'$HTML_message);
define('VBSEO_REWRITE_TEXTURLS'1);
define('VBSEO_PREPROCESSED'1);
$message make_crawlable($message);
$message preg_replace('#([^\\\\])"#''$1\\"'$message);

__________________
Joe Ward / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

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!Share on Facebook!
Reply With Quote
  #6  
Old 11-12-2005, 07:19 AM
Michael's Avatar
Senior Member
vBSEO Pre-Release Team
 
Real Name: Michael Benson
Join Date: Sep 2005
Location: United Kingdom
Posts: 778
Send a message via AIM to Michael Send a message via MSN to Michael
Re: vBCommbull - Copyright in emails but content NOT rewritten

Thanks for the update and i'll report back the effectiveness when i send my next monthly update this Monday. What exactly does this modification do, turn all URLs vB SEO relevant?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #7  
Old 11-12-2005, 08:12 AM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,616
Re: vBCommbull - Copyright in emails but content NOT rewritten

Michael,

that's right - it will rewrite the bulletin sent with a SEO URLs.
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

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!Share on Facebook!
Reply With Quote
  #8  
Old 11-12-2005, 04:41 PM
Ace Shattock's Avatar
vBSEO Staff
vBSEO Total Customer SupportCommunity Builder
 
Real Name: Ace Shattock
Join Date: Jul 2005
Location: New Zealand
Posts: 2,923
Re: vBCommbull - Copyright in emails but content NOT rewritten

It sure does! Thanks heaps team!
__________________
Ace Shattock / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

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


My Personal Sites: New Zealand Forum | vBulletin Modifications and Styles | vBulletin Hosting
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #9  
Old 11-12-2005, 05:53 PM
Member
 
Join Date: Nov 2005
Posts: 88
Re: vBCommbull - Copyright in emails but content NOT rewritten

Thanks Jeoward, it sure did work!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #10  
Old 11-14-2005, 03:22 PM
Senior Member
 
Join Date: Sep 2005
Posts: 126
Re: vBCommbull - Copyright in emails but content NOT rewritten

Hi,

works also great for us! But we have three times the vBSEO Copyright phrase at the end of our newsletter.

Tobi
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #11  
Old 11-14-2005, 03:37 PM
Keith Cohen's Avatar
vBSEO Staff
vBSEO Total Customer SupportBig Board Administrator
 
Real Name: Keith Cohen
Join Date: Jul 2005
Location: Raleigh, NC USA
Posts: 6,266
Re: vBCommbull - Copyright in emails but content NOT rewritten

Check to see if you have multiple vbSEO Plugins in your Plugin Manager.
__________________
Keith Cohen / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

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


My Personal Sites: My Blog | GPS Discussion Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #12  
Old 11-14-2005, 03:39 PM
Senior Member
 
Join Date: Sep 2005
Posts: 126
Re: vBCommbull - Copyright in emails but content NOT rewritten

No, there are only and once: vbseo global hook and vbseo email send!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #13  
Old 11-19-2005, 12:26 AM
Juan Muriente's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Juan Carlos Muriente
Join Date: Jun 2005
Location: Puerto Rico
Posts: 12,721
Re: vBCommbull - Copyright in emails but content NOT rewritten

Quote:
Originally Posted by DerTobi75
No, there are only and once: vbseo global hook and vbseo email send!
PM sent.
__________________
Juan Muriente / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

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!Share on Facebook!
Reply With Quote
  #14  
Old 11-20-2005, 05:38 PM
Member
 
Join Date: Nov 2005
Posts: 88
Re: vBCommbull - Copyright in emails but content NOT rewritten

Any fix for the triple vbseo url?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #15  
Old 11-21-2005, 03:09 AM
Senior Member
 
Join Date: Sep 2005
Posts: 126
Re: vBCommbull - Copyright in emails but content NOT rewritten

Hi,

nope, Juan sent me a PM, but right noiw I had not the time to reply!

Tobi
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
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
2006 SES Conference - Duplicate Content Session msimonds Member Articles 0 03-07-2006 05:04 PM


All times are GMT -4. The time now is 09:13 PM.


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