FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum Development » Bug Reports » Clicking on smiley shortcuts does not work in Konqueror 2.2.2
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #809] Fri, 01 March 2002 13:55 Go to next message
basse is currently offline  basse   Finland
Messages: 164
Registered: March 2002
Location: Åbo, Finland
Karma: 0
Senior Member
There seems to be quite big javascript problems between konqueror and fudforum. In addition to the avatar selection problem mentioned earlier the smiley shortcuts and the formatting tools in the posting form does not work. Clicking on them does nothing.
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #811 is a reply to message #809] Fri, 01 March 2002 15:51 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
djupsjob wrote on Fri, 01 March 2002 8:55 AM

There seems to be quite big javascript problems between konqueror and fudforum. In addition to the avatar selection problem mentioned earlier the smiley shortcuts and the formatting tools in the posting form does not work. Clicking on them does nothing.


I will see what's going with konqueror. We have been aware of this problem for a while, however the problem seems to have been with konqueror's JavaScript support, or atleast that was the case with Kde 2.2.1.


FUDforum Core Developer
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #817 is a reply to message #809] Fri, 01 March 2002 20:14 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
This error has been fixed in latest CVS.

The JavaScript code has been tested and works on the following browsers:

IE 5-6
NS 4.79
Mozilla 0.9.8
Konqueror 2.2.2
Opera 5.0

To fix the bug grab lib.js from latest CVS and replace your lib.js with the one from CVS.


FUDforum Core Developer
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #838 is a reply to message #817] Sat, 02 March 2002 20:22 Go to previous messageGo to next message
basse is currently offline  basse   Finland
Messages: 164
Registered: March 2002
Location: Åbo, Finland
Karma: 0
Senior Member
prottoss wrote on Fri, 01 March 2002 10:14 PM

This error has been fixed in latest CVS.


Good! Thanks for the information. If I just could get the forum installed everything would be just great...
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #839 is a reply to message #838] Sat, 02 March 2002 21:20 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
djupsjob wrote on Sat, 02 March 2002 3:22 PM

prottoss wrote on Fri, 01 March 2002 10:14 PM

This error has been fixed in latest CVS.


Good! Thanks for the information. If I just could get the forum installed everything would be just great...


Oh, What's the problem with getting it installed?


FUDforum Core Developer
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #850 is a reply to message #839] Sun, 03 March 2002 16:46 Go to previous messageGo to next message
basse is currently offline  basse   Finland
Messages: 164
Registered: March 2002
Location: Åbo, Finland
Karma: 0
Senior Member
prottoss wrote on Sat, 02 March 2002 11:20 PM


Oh, What's the problem with getting it installed?


I already told you on irc, but others might have ideas as well of course. The problem is that the installation scripts times out after step 2. Php on the server is in safe mode, and the error log shows that site_time_limit is not allowed. Commenting that row out does not help at all, though. I have tried to obtain a list of options that are disabled, but haven't had any luck yet. Perhaps the technical staff isn't at work during weekends...=)

Sebastian
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #866 is a reply to message #809] Mon, 04 March 2002 18:03 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
Can you try to following bit of code on your server. If it works then I may be able to fetch the info about your php.ini file.


<?php
echo ini_get("error_reporting")."<br>\n";
?>


OR


<?php
echo get_cfg_var("error_reporting")."<br>\n";
?>


FUDforum Core Developer
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #867 is a reply to message #866] Mon, 04 March 2002 19:56 Go to previous messageGo to next message
basse is currently offline  basse   Finland
Messages: 164
Registered: March 2002
Location: Åbo, Finland
Karma: 0
Senior Member
prottoss wrote on Mon, 04 March 2002 8:03 PM

Can you try to following bit of code on your server. If it works then I may be able to fetch the info about your php.ini file.


<?php
echo ini_get("error_reporting")."<br>\n";
?>



This snippet gives this result:

2039

What does that mean?
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #868 is a reply to message #867] Mon, 04 March 2002 19:58 Go to previous messageGo to next message
Ilia is currently offline  Ilia   Canada
Messages: 13241
Registered: January 2002
Karma: 0
Senior Member
Administrator
Core Developer
djupsjob wrote on Mon, 04 March 2002 2:56 PM

prottoss wrote on Mon, 04 March 2002 8:03 PM

Can you try to following bit of code on your server. If it works then I may be able to fetch the info about your php.ini file.


<?php
echo ini_get("error_reporting")."<br>\n";
?>



This snippet gives this result:

2039

What does that mean?



It means that you can use ini_get to fetch your php's ini settings. Do this, it should show you a list of all the disabled functions.

<?php
echo ini_get("disable_functions")."<br>\n";
?>


FUDforum Core Developer
Re: Clicking on smiley shortcuts does not work in Konqueror 2.2.2 [message #871 is a reply to message #868] Tue, 05 March 2002 07:22 Go to previous message
basse is currently offline  basse   Finland
Messages: 164
Registered: March 2002
Location: Åbo, Finland
Karma: 0
Senior Member
prottoss wrote on Mon, 04 March 2002 9:58 PM


It means that you can use ini_get to fetch your php's ini settings. Do this, it should show you a list of all the disabled functions.

<?php
echo ini_get("disable_functions")."<br>\n";
?>



It's done. The only disabled function is phpinfo. There has to be another problem in the script that I somehow trigger, since all the functions should work.
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: Profiles
Next Topic: Erroneous leading '\' in GLOBALS.php
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Mon Jul 01 16:36:33 GMT 2024

Total time taken to generate the page: 0.02534 seconds