Odd... mine doesn't appear to be vBSEO'ing the urls in the text-only version. :(
This is a discussion on vBCommbull - Copyright in emails but content NOT rewritten within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Odd... mine doesn't appear to be vBSEO 'ing the urls in the text-only version. :(...
Odd... mine doesn't appear to be vBSEO'ing the urls in the text-only version. :(
Ace Shattock / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
My Personal Sites: New Zealand Forum | vBulletin Modifications and Styles | New Zealand Food | New Zealand Android OS Talk | vBulletin Hosting
Same here after I updated the hack.
Perhaps Joe Ward can provide a solution.
1. Modify the following...Originally Posted by kall
FIND:
REPLACE WITH:define('VBSEO_REWRITE_TEXTURLS', 1);
2. Step 4 is not required, the changes made should be reverted.$GLOBALS['VBSEO_REWRITE_TEXTURLS'] = 1;
Let me know if it helps..
Juan Muriente / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Both times, yes?
That did the trick.![]()
Ace Shattock / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
My Personal Sites: New Zealand Forum | vBulletin Modifications and Styles | New Zealand Food | New Zealand Android OS Talk | vBulletin Hosting
I too have the triple copyright issue now.Originally Posted by DerTobi75
Ace Shattock / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
My Personal Sites: New Zealand Forum | vBulletin Modifications and Styles | New Zealand Food | New Zealand Android OS Talk | vBulletin Hosting
Hi,
a new version of vBcommbull uses vbmail() function to send emails instead of direct mail() calls. In this case the content of bulletin is rewritten once for preview and then for every email sent (inside of vbmail() function).
Please apply the following modification: in admincp/commbull.php file find vbmail(..) function calls, comment them out (add "//" at the beginning of line) and uncomment the previous line with mail() function call.
Namely,
FIND:
REPLACE WITH://mail($user[email],$html_subject,$HTML_mailbody,$htmlEmailHeader);
vbmail($user[email],$html_subject,$HTML_mailbody,false,$vbulletin->options['webmasteremail']);
FIND:mail($user[email],$html_subject,$HTML_mailbody,$htmlEmailHeader);
//vbmail($user[email],$html_subject,$HTML_mailbody,false,$vbulletin->options['webmasteremail']);
REPLACE WITH:mail($user[email],$subject,$mailbody,"From: \"$bbtitle Mailer\"<$webmasteremail>");
//vbmail($user[email],$subject,$mailbody,false,$vbulletin->options['webmasteremail']);
mail($user[email],$subject,$mailbody,"From: \"$bbtitle Mailer\"<$webmasteremail>");
//vbmail($user[email],$subject,$mailbody,false,$vbulletin->options['webmasteremail']);
That should solve the multiple copyrights problem and should improve the performance significantly.
Please let me know if that helps![]()
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Strange.. I now only get two copyrights.
One appears on the preview, I assume the other is added in generation?
Ace Shattock / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
My Personal Sites: New Zealand Forum | vBulletin Modifications and Styles | New Zealand Food | New Zealand Android OS Talk | vBulletin Hosting
I notice now that your second find/replace is just the find part repeated.. I will try again.![]()
Ace Shattock / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
My Personal Sites: New Zealand Forum | vBulletin Modifications and Styles | New Zealand Food | New Zealand Android OS Talk | vBulletin Hosting
i wish someone would have pointed me to this earlier. I will be putting this directly into the code for all future versions of commbull. If there are any other issues, i would be happy to work directly with vbseo on solving these issues ... cheers.