| Author |
Message |
silent1 New Member


Joined: Dec 04, 2003 Posts: 3
|
Posted:
Sat Mar 12, 2005 1:18 pm |
|
I'm using phpnuke 7.5 and bbtonuke 2.0.1.3
When i go to reply to a message and click on 'View more Emoticons' The little window pops up, but instead of the emoticons it displays this error:
Fatal error: Call to undefined function: opentable() in /home/silent1/public_html/nuke/mainfile.php on line 621
It was working fine when i was using bbtonuke 2.0.0.7 |
|
|
|
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1393
|
Posted:
Tue Mar 15, 2005 6:30 pm |
|
No file in BBtoNuke 2.0.13 would cause that as neither of the two files included with it have anything to do, you might have skipped a version while upgrading, either way in includes/functions_post.php near the end locate:
| Code: | | 'U_MORE_SMILIES' => append_sid("posting.$php... |
Make sure it reads:
| Code: | | 'U_MORE_SMILIES' => append_sid("posting.$phpEx?mode=smilies&popup=1")) |
and not:
| Code: | | 'U_MORE_SMILIES' => append_sid("posting.$phpEx?mode=smilies")) |
|
|
|
|
 |
silent1 New Member


Joined: Dec 04, 2003 Posts: 3
|
Posted:
Thu Mar 17, 2005 7:07 am |
|
Thanks for replying.
I checked that code and it is correct. Any other ideas?
I removed the '&popup=1' and it now works. The difference is, it doesn't just show the icons it also shows the top of my site. |
|
|
|
 |
chatserv The Mouse Is Extension Of Arm

Joined: May 02, 2003 Posts: 1393
|
Posted:
Thu Mar 17, 2005 1:06 pm |
|
Does your posting.php file have this after the file credits and the file access check code?:
| Code: | if ($popup != "1"){
$module_name = basename(dirname(__FILE__));
@require("modules/".$module_name."/nukebb.php");
}
else
{
$phpbb_root_path = 'modules/Forums/';
} |
|
|
|
|
 |
silent1 New Member


Joined: Dec 04, 2003 Posts: 3
|
Posted:
Thu Mar 17, 2005 6:58 pm |
|
Yes it does. It didn't have the @ symbol before 'require', so i inserted it to see if it made a difference, and it didn't. |
|
|
|
 |
|
|
|
|