So, putting together a new website I ran in to an obscure problem. vBulletin’s “What’s new?” button wasn’t working.
The cPanel was coming back with a similar error to this:
[notice] EACCELERATOR(#####): PHP crashed on opline 62 of method_exists() at /public_html/vb/search/criteria.php:844, referer: http://website.com/
You shouldn’t need to disable eAccelerator. Simply try this:
1. Open & Edit forum/vb/search/criteria.php
2. Search method_exist
3. Replace line:
if (method_exists($this->search_type, ‘get_display_name’))
with
if (is_object($this->search_type) && is_callable($this->search_type->get_display_name()))
4. Save & Enjoy!
Thanks for posting the solution, just happened to me today after I upgrade php to the newest version.
LikeLike
Thank you so Feaking much!!!!!
LikeLike
Thank you sooo much!!! This was a huge help to us on our forum today after upgrading php.
LikeLike
Thanks man, tried a lot of things before I found your post.
LikeLike
vbulletin gave no solution for this and you did. Thank you.
LikeLike
Thank you so much..
LikeLike