jsarber Posted February 15, 2007 Share Posted February 15, 2007 Alright, I don't know all the right terms for this but I'll try and explain my problem the best I can. Okay, I've got phpBB forums on my website. I was trying to do some modifications to it which required I do this: #-----[ SQL ]------------------------------------------ # INSERT INTO phpbb_config (config_name, config_value) VALUES ('bibletype', 'NIV'); I feel confident I messed this up. When I go into the database and "browse" the phpbb_config file, I see this: 1 'bibletype', 'NIV' 1 ('bibletype', 'NIV'); Okay, I knew there was a problem because a line of code in the forums on the "page includes/usercp_register.php" is: 'BIBLETYPE_SELECT' => bibletype_select($user_bibletype, 'bibletype'), Which when you go to that page it now brings up an error which says: Fatal error: Call to undefined function: bibletype_select() in /home/content/d/d/j/ddjsarber/html/phpBB2/includes/usercp_register.php on line 1076 Line 1076 is where the code above is located. So what is wrong in all of this? Can anyone help me? Quote Link to comment Share on other sites More sharing options...
btherl Posted February 15, 2007 Share Posted February 15, 2007 That means it expects a php function called bibletype_select() to be available. I can't tell you more than that since I'm not familiar with phpbb. Are you applying a modification made by someone else or creating your own? Quote Link to comment Share on other sites More sharing options...
jsarber Posted February 15, 2007 Author Share Posted February 15, 2007 It was someone else's but I'm not getting any help from their end I'm afraid. So, is what I've inserted into MySQL not right? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.