MyBB Community Forums

Full Version: Tikitiki's Name bbcode mod error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My users get this error when they try to open a thread on my forum:

Quote:Fatal error: Call to undefined function: str_ireplace() in /home/www/videogameempire.net/MessageBoard/inc/plugins/namebbcode.php on line 41

???
Open the plugin file and search for
str_ireplace
Replace with:
str_replace
str_ireplace is a PHP 5 function. Be careful using str_replace, the plugin might not work properly if it's not case-insensitive.
Okay. So, is it possible for me to upgrade to PHP 5 on the server I'm using (as long as I ask the person who pays for it for permission)?

I applied the edit and everything is okie dokie! ^_^
You have to ask the server administrator to upgrade it for you. Usually the end-user can't upgrade PHP by themselves.
The file on the main site has been upgraded with the proper fix