PDA

View Full Version : eval()'d code on line 5 in functions.php errors


UpGrayeDD
01-29-2008, 02:37 AM
I am getting this error when i view any members profile or after search results are shown.

Warning: array_merge() [function.array-merge]: Argument #1 is not an array in /includes/functions.php(1259) : eval()'d code on line 5

Can anyone help?

Lynne
01-29-2008, 02:44 AM
This is line 1259 of functions.php:

($hook = vBulletinHook::fetch_hook('fetch_userinfo')) ? eval($hook) : false;

So, you have a plugin using the hook "fetch_userinfo" that is causing the problems. You need to figure out which plugin, then go read the modification thread and see if a fix has been posted for that error.

MoT3rror
01-29-2008, 02:56 AM
The best way to solve this would be to turn off all modifications by selecting all of your products and turning them off in Plugins & Products -> Manage Products. If you are unable to disable your products, put this define('DISABLE_HOOKS', true); before the ?> in your config. Then turn all your products off and remove the define('DISABLE_HOOKS', true); in your config.

Then turn all of them back on one by one and find out which one is causing the problem.

Dismounted
01-29-2008, 04:25 AM
One of your modifications are incompatible with PHP 5.x. The code can be easily fixed though.

Opserty
01-29-2008, 06:11 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=125302" target="_blank">[Fix How to] PHP 5 and array_merge errors</a>