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 09-04-2007, 04:31 AM
subnet_rx subnet_rx is offline
 
Join Date: Mar 2005
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Problems after going from PHP4 to PHP5

I'm getting a weird error after upgrading to PHP 5.2. It is most likely an addon, but it's tough to tell which one.

Code:
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /includes/functions.php(1259) : eval()'d code on line 3
Reply With Quote
  #2  
Old 09-04-2007, 08:49 AM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Go to your functions.php file and see what is on line 1269. It should be something like ...fetch_hook('XXX')...

XXX is the hook location which you can then look for in your Plugin Manager to find which one is causing the problem. I don't know what version your running but I wasn't able to find something in my vB files, although yours may be different. The closest I found was fetch_userinfo, so it may be worth checking it out.
Reply With Quote
  #3  
Old 09-04-2007, 09:04 AM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

To fix it, cast the array in array_merge using (array)$array or whatever the variable is. I'm assuming you have programming experience, if not then post up the code and someone will tell you what you need to do
Reply With Quote
  #4  
Old 09-04-2007, 11:10 AM
Eikinskjaldi's Avatar
Eikinskjaldi Eikinskjaldi is offline
 
Join Date: Feb 2006
Location: Hell, never looked better
Posts: 572
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've had errors from php 5.2.3, including the dreaded bus error, thread has crashed.

I would be wary about 5.2
Reply With Quote
  #5  
Old 09-04-2007, 11:28 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

vb.org (and vb.com) run on php 5.2.3, as do other forums I look after, none have had any issues.
Reply With Quote
  #6  
Old 09-04-2007, 01:04 PM
subnet_rx subnet_rx is offline
 
Join Date: Mar 2005
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok, here may be the bigger problem. I disabled all hooks before doing this upgrade, but after logging back in, I enabled them to see if anything would go wrong. It did. This error prevents me from getting the plugin display. I'm going to have to track these down in the database to fix them. I'm actually unsure where the location of the hook is. user_info is close, but not on line 1259. I did a search in the plugins table and it came up with 20 rows that have array_merge. Would it be ok to cast all of them?
Reply With Quote
  #7  
Old 09-04-2007, 01:27 PM
Opserty Opserty is offline
 
Join Date: Apr 2007
Posts: 4,103
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Adding define('DISABLE_HOOKS', true); to your config.php (either at the very bottom or just under the opening <?php tag) should enable you to access the plugin page and prevent the error from appearing until you have figured it out what is wrong.
Reply With Quote
  #8  
Old 09-04-2007, 04:06 PM
subnet_rx subnet_rx is offline
 
Join Date: Mar 2005
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Opserty View Post
Adding define('DISABLE_HOOKS', true); to your config.php (either at the very bottom or just under the opening <?php tag) should enable you to access the plugin page and prevent the error from appearing until you have figured it out what is wrong.
thanks for that tip.

Ok, I did a search in the plugins table and got 20 plugins that use array_merge. I cast the first variable in all of them as an array. Same error. Is there no better way to figure out what is being eval'd on line 1259?
Reply With Quote
  #9  
Old 09-04-2007, 06:09 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

If you followed the previously given advice you would see it's the fetch_userinfo hook, it's not a commonly used hook so I doubt many of you products are using it, just look in the plugin manager to find which one and view the code.
Reply With Quote
  #10  
Old 09-04-2007, 06:59 PM
subnet_rx subnet_rx is offline
 
Join Date: Mar 2005
Posts: 294
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah, I followed the advice. There are no plugins using that hook. Like I said, I've edited all that the search finds that uses array_merge. It finds an error on 1259, but there is no hook on that line, so that tells me that there is code being included server side giving that file more lines. I need to see it as the server sees it.

EDIT: Nevermind, I was looking for userinfo, not fetch_userinfo. Here's the code causing the problem. It's from the welcome headers addon.

Code:
if (THIS_SCRIPT == "index")
{
	global $globaltemplates;

	$globaltemplates = array_merge((array)$globaltemplates, array('forumhome_welcomepanel_' . $vbulletin->options['wp_style']));
}
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 09:24 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04379 seconds
  • Memory Usage 2,249KB
  • Queries Executed 13 (?)
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
  • (2)bbcode_code
  • (1)bbcode_quote
  • (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_postinfo_query
  • fetch_postinfo
  • 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