Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 05-23-2018, 03:58 PM
hoangzu hoangzu is offline
 
Join Date: Feb 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default vBBlog 2.0.4 not loading with vB 3.8.11

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.
Reply With Quote
  #2  
Old 05-24-2018, 06:39 AM
snakes1100 snakes1100 is offline
 
Join Date: Dec 2001
Location: Michigan
Posts: 3,733
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #3  
Old 05-24-2018, 01:31 PM
hoangzu hoangzu is offline
 
Join Date: Feb 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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:

Code:
[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
Reply With Quote
  #4  
Old 05-24-2018, 01:48 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #5  
Old 05-24-2018, 02:32 PM
hoangzu hoangzu is offline
 
Join Date: Feb 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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?
Reply With Quote
  #6  
Old 05-24-2018, 03:23 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't think the error you posted is related to the issue you're having.
Reply With Quote
  #7  
Old 05-24-2018, 07:35 PM
hoangzu hoangzu is offline
 
Join Date: Feb 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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,

Code:
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
Reply With Quote
  #8  
Old 05-24-2018, 07:43 PM
Dave Dave is offline
 
Join Date: May 2010
Posts: 2,583
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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.
Reply With Quote
  #9  
Old 05-24-2018, 08:15 PM
hoangzu hoangzu is offline
 
Join Date: Feb 2008
Posts: 31
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you so much Dave
After I follow your advise , replaced in line 24, here other error code happen. Please give me advise again.

Code:
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
Reply With Quote
  #10  
Old 05-25-2018, 02:03 AM
motd2 motd2 is offline
 
Join Date: Jan 2010
Location: Moscow
Posts: 32
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

includes/class_dm_blog_user.php
line 106-108
Code:
	function vB_DataManager_Blog_User(&$registry, $errtype = ERRTYPE_STANDARD)
	{
		parent::vB_DataManager($registry, $errtype);
need
Code:
	function __construct(&$registry, $errtype = ERRTYPE_STANDARD)
	{
		parent::__construct($registry, $errtype);
Reply With Quote
Reply


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

Forum Jump


All times are GMT. The time now is 11:11 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04957 seconds
  • Memory Usage 2,251KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (5)bbcode_code
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete