Page 1 of 2 1 2 LastLast
Results 1 to 15 of 24

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 ...

  1. #1
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    4,012
    Liked
    13 times

    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?

  2. #2
    Senior Member
    Join Date
    Sep 2005
    Posts
    131
    Liked
    0 times
    Hi,

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

    Regards,

    Tobi

  3. #3
    Senior Member
    Real Name
    Joseph Ward
    Join Date
    Jun 2005
    Posts
    23,845
    Liked
    36 times
    Blog Entries
    9
    @All:

    We are looking into it.

  4. #4
    Member
    Join Date
    Nov 2005
    Posts
    90
    Liked
    0 times
    Hi

    Any update?

    Regards

  5. #5
    Senior Member
    Real Name
    Joseph Ward
    Join Date
    Jun 2005
    Posts
    23,845
    Liked
    36 times
    Blog Entries
    9
    @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);


  6. #6
    Senior Member Michael's Avatar
    Real Name
    Michael Benson
    Join Date
    Sep 2005
    Location
    United Kingdom
    Posts
    776
    Liked
    0 times
    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?

  7. #7
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Michael,

    that's right - it will rewrite the bulletin sent with a SEO URLs.

  8. #8
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    4,012
    Liked
    13 times
    It sure does! Thanks heaps team!

  9. #9
    Member
    Join Date
    Nov 2005
    Posts
    90
    Liked
    0 times
    Thanks Jeoward, it sure did work!

  10. #10
    Senior Member
    Join Date
    Sep 2005
    Posts
    131
    Liked
    0 times
    Hi,

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

    Tobi

  11. #11
    Senior Member
    Real Name
    Keith Cohen
    Join Date
    Jul 2005
    Location
    Raleigh, NC USA
    Posts
    6,147
    Liked
    13 times
    Check to see if you have multiple vbSEO Plugins in your Plugin Manager.

  12. #12
    Senior Member
    Join Date
    Sep 2005
    Posts
    131
    Liked
    0 times
    No, there are only and once: vbseo global hook and vbseo email send!

  13. #13
    vBSEO Staff Juan Muriente's Avatar
    Real Name
    Juan Carlos Muriente
    Join Date
    Jun 2005
    Location
    Puerto Rico
    Posts
    14,266
    Liked
    586 times
    Quote Originally Posted by DerTobi75
    No, there are only and once: vbseo global hook and vbseo email send!
    PM sent.

  14. #14
    Member
    Join Date
    Nov 2005
    Posts
    90
    Liked
    0 times
    Any fix for the triple vbseo url?

  15. #15
    Senior Member
    Join Date
    Sep 2005
    Posts
    131
    Liked
    0 times
    Hi,

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

    Tobi

Page 1 of 2 1 2 LastLast

Similar Threads

  1. 2006 SES Conference - Duplicate Content Session
    By msimonds in forum Member Articles
    Replies: 0
    Last Post: 03-07-2006, 04:04 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •