View Full Version : vBBlog 2.0.4 not loading with vB 3.8.11
hoangzu
05-23-2018, 03:58 PM
Hello Dear,
My vBBlog v2.0.4 used with vB 3.8.9 run very OKay. After I upgraded to vB 3.8.11 the Blog still show up main page show up every thing like same before (like blog.php) but every single link on main page to other page not loading anymore. Database not sending any error mesagge but all link has been blank. (white)
Are there any one have any suggestion for this problem please. :confused:
snakes1100
05-24-2018, 06:39 AM
For the white pages, yo uneed to enable display_errors in php & restart apache/nginx/listespeed etc then refresh the page.
You can also check your server logs for the issue causing the white page.
hoangzu
05-24-2018, 01:31 PM
Thank you so much for your reply
I believe this is a error code I found into my error_log. Hope it is right :up:
[23-May-2018 14:50:58 UTC] PHP Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/usename/public_html/address.php on line 1
[23-May-2018 17:45:14 UTC] PHP Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/usename/public_html/wp-stats.php on line 1
[23-May-2018 17:45:15 UTC] PHP Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/usename/public_html/address.php on line 1
PHP deprecated errors should not cause white pages and they are caused on the address.php and wp-stats.php pages which I don't think is related to your blog?
Regardless, it's probably a PHP incompatibility issue where you're running a higher PHP version than the blog supports.
hoangzu
05-24-2018, 02:32 PM
Thank you so much.
I am not master about this. But I wonder before I upgraded vb 3.8.9 to vb3.8.11, my vbBlog still running very OKAY ? Even PHP same version 5.6.36
Please let me know the error code I was provide is corrected?
I don't think the error you posted is related to the issue you're having.
hoangzu
05-24-2018, 07:35 PM
Hello Dave,
After locate PHP I got this error code of my vbblog from my site. Please give me advise.
Thank you so much
Kind Regards,
Fatal User Error: Unhandled BB Code Call : vB_BbCodeParser in ..../includes/class_bbcode.php on line 170
Trace Data:
#1 : vbstop() called in ..../includes/class_core.php on line 3749
#2 : vbulletin_error_handler() called in on line
#3 : trigger_error() called in ..../includes/class_bbcode.php on line 170
#4 : vB_BbCodeParser->__call() called in ..../includes/class_bbcode_blog.php on line 24
#5 : vB_BbCodeParser->vB_BbCodeParser() called in ..../includes/class_bbcode_blog.php on line 24
#6 : vB_BbCodeParser_Blog->vB_BbCodeParser_Blog() called in ..../blog.php on line 632
Var Type:
[ NULL ]
Var Data:
null
This problem happens because the blog files don't match the structure of the new vBulletin 3 files.
In /includes/class_bbcode_blog.php find parent::vB_BbCodeParser around line 24 and replace it with parent::__construct
That may not fix all possible other errors though.
hoangzu
05-24-2018, 08:15 PM
Thank you so much Dave
After I follow your advise , replaced in line 24, here other error code happen. Please give me advise again.
Fatal error: Call to undefined method vB_DataManager::vB_DataManager() in /home/usename/public_html/forums/includes/class_dm_blog_user.php on line 108
Kind Regards
motd2
05-25-2018, 02:03 AM
includes/class_dm_blog_user.php
line 106-108
function vB_DataManager_Blog_User(&$registry, $errtype = ERRTYPE_STANDARD)
{
parent::vB_DataManager($registry, $errtype);
need
function __construct(&$registry, $errtype = ERRTYPE_STANDARD)
{
parent::__construct($registry, $errtype);
hoangzu
05-25-2018, 11:28 AM
This problem happens because the blog files don't match the structure of the new vBulletin 3 files.
In /includes/class_bbcode_blog.php find parent::vB_BbCodeParser around line 24 and replace it with parent::__construct
That may not fix all possible other errors though.
includes/class_dm_blog_user.php
line 106-108
function vB_DataManager_Blog_User(&$registry, $errtype = ERRTYPE_STANDARD)
{
parent::vB_DataManager($registry, $errtype);
need
function __construct(&$registry, $errtype = ERRTYPE_STANDARD)
{
parent::__construct($registry, $errtype);
Thank you so so much . After replace yours code, a Blog went back to normal.
I really appreciated all your advised.
Kind Regards,
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.