Can't View More Emoticons and New posts since last

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   Can't View More Emoticons and New posts since last
IceQueen
CZ Super Newbie
IceQueen has been a member for over 20 year's 20 Year Member
usa.gif california.gif
Status: Offline
Joined: Jan 20, 2004
0.01 posts per day
Posts: 42
Points: 2,850
   
When I click on View more Emoticons, I get this:

Fatal error: Call to undefined function: opentable() in /home/site/public_html/rebelgr/html/mainfile.php on line 317

and no smilies come up. I started to get this when I switched from nuke 7.0 to 7.6 and upgraded my phpbb from 2.0.10 to 2.0.11.


I also am unalble to use the View posts since last visit as all the links give me an "Illegal Content" page error. [ Register or login to view links on this board. ]

If I remove the word highlight in the URL, it goes to the link, otherwise I get an Illegal Content error page.

Anyone have any clues as to why this would happen?

I have tried to reinstall the Forums, Theme doesn't matter, does this in all themes. The database is working fine, just seems like some coding is messed up somewhere.




_________________
[ Register or login to view links on this board.]
Back to top Reply with quote
#2   re: Can't View More Emoticons and New posts since last
salesman
CZ Newbie
salesman has been a member for over 19 year's 19 Year Member
usa.gif kentucky.gif
Occupation: Sales
Age: 47
Gender: Male
Website:
Status: Offline
Joined: Jan 07, 2005
0.00 posts per day
Posts: 8
Points: 967
 Yahoo Messenger  
NO ONE HAS BEEN ABLE TO ANSWER THAT QUESTION FOR ME EITHER CAUSE I HAVE THE SAME PROBLEM. I UPGRADED AS WELL AND CANNOT VIEW MORE EMOTIONS IN FORUMS



Back to top Reply with quote
#3   re: Can't View More Emoticons and New posts since last
veef
CZ Super Newbie
veef has been a member for over 19 year's 19 Year Member
Gender: Male
Status: Offline
Joined: Dec 30, 2004
0.01 posts per day
Posts: 59
Points: 1,422
   
I do not know what is causing these problems but i had a similar problem with the emoticons that i had to come up with a workaround untill the cause is found. Here is what i did, in the includes/functions_post.php locate this code
//
// Fill smiley templates (or just the variables) with smileys
// Either in a window or inline
//
function generate_smilies($mode, $page_id)
{
   global $db, $board_config, $template, $lang, $images, $theme, $phpEx, $phpbb_root_path;
   global $user_ip, $session_length, $starttime;
   global $userdata;

   $inline_columns = 4;
   $inline_rows = 5;
   $window_columns = 8;

   if ($mode == 'window')
   {
                $userdata = session_pagestart($user_ip, $page_id, $nukeuser);
      init_userprefs($userdata);

      $gen_simple_header = TRUE;

      $page_title = $lang['Emoticons'] . " - $topic_title";
      include('includes/page_header.'.$phpEx);

      $template->set_filenames(array(
         'smiliesbody' => 'posting_smilies.tpl')
      );
   }


and put in these 2 lines
$ThemeSel = get_theme();
include("themes/$ThemeSel/tables.php");


so it looks like this

//
// Fill smiley templates (or just the variables) with smileys
// Either in a window or inline
//
function generate_smilies($mode, $page_id)
{
   global $db, $board_config, $template, $lang, $images, $theme, $phpEx, $phpbb_root_path;
   global $user_ip, $session_length, $starttime;
   global $userdata;

   $inline_columns = 4;
   $inline_rows = 5;
   $window_columns = 8;

   if ($mode == 'window')
   {
      $ThemeSel = get_theme();         
      include("themes/$ThemeSel/tables.php");
      
                $userdata = session_pagestart($user_ip, $page_id, $nukeuser);
      init_userprefs($userdata);

      $gen_simple_header = TRUE;

      $page_title = $lang['Emoticons'] . " - $topic_title";
      include('includes/page_header.'.$phpEx);

      $template->set_filenames(array(
         'smiliesbody' => 'posting_smilies.tpl')
      );
   }



Back to top Reply with quote
#4   re: Can't View More Emoticons and New posts since last
IceQueen
CZ Super Newbie
IceQueen has been a member for over 20 year's 20 Year Member
usa.gif california.gif
Status: Offline
Joined: Jan 20, 2004
0.01 posts per day
Posts: 42
Points: 2,850
   
Coolness! Thanks, I inserted the lines and they work! You are Awesome! icon_mrgreen.gif




_________________
[ Register or login to view links on this board.]
Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum