minor glitches in RC2 [message #1777] |
Mon, 22 April 2002 17:50  |
|
Hi everyone, at least I took my time to install the forum, this time on a server *without* safe mode . Things went relatively smooth but there are some things which might be improved.
After having finished the installation, I was welcomed with a bunch of lovely warnings complaining about a backslash. I looked into the globals.php and noticed the mess: Some variables defined started with a backslash, so there were some things to be removed in jEdit . System is running Linux with apache 1.3.19 and PHP 4.06 the Sql version is a bit older but none of the flaky builds I think. So I'm not too sure whether it's an issue with the installer or with the server's setting.
Next: In the control panel, where the generic stuff is set the field "posts per page" is appearing twice, so I dunno what would happen if both have different values 
And finally: At the forum's statistics I get this error message where the number of threads is shown:
Quote: | Warning: Division by zero in /home/ken/www/forum/adm/admstats.php on line 273
|
I think it's because there aren't neither posts nor categories yet as I ve just set it up. Yep and finally there are some things I know I had translated which are appearing in English again. But since I have to translate some new things anyway It's not that bad. But the compiler is awesome. Just right after submitting it was already finished. Great job  K, if I find some more I'll post it bye Ken
|
|
|
|
Re: minor glitches in RC2 [message #1779 is a reply to message #1777] |
Mon, 22 April 2002 18:02   |
|
There we go again  The stats' range to be selected looks a bit strange as it goes from 12/31/1969 - 12/31/1969. There's nothing else u could select from the drop-down menu. I don't think that this is an issue with the server. The filemanager also behaves strange: Looking at the files it says they would all belong to root and the rights are shown as 0000 or d000 if it's a directory. If I try to change the mode an error will appear. Is a bit strange to me since the forum is fully working and changes made on the control panel are applied with no problem. even if I set the mode with my ftp client to 666 it will be shown as 0000. bye Ken
|
|
|
|
Re: minor glitches in RC2 [message #1781 is a reply to message #1779] |
Mon, 22 April 2002 18:07   |
Ilia
 Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
remove from buddy list ignore all messages by this user
|
|
Ken Kizaki wrote on Mon, 22 April 2002 6:02 PM |
The stats' range to be selected looks a bit strange as it goes from 12/31/1969 - 12/31/1969. There's nothing else u could select from the drop-down menu.
|
Those dates are there because your forum has no messages. The default date values are determined from 1st post to last post. Since you have no messages the value is 0, and 0 resolves to 12/31/1969.
The filemanager does appear to be acting up, I'll see if I can replicate the issues you're seeing.
FUDforum Core Developer
|
|
|
|
Re: minor glitches in RC2 [message #1783 is a reply to message #1782] |
Mon, 22 April 2002 18:22   |
Ilia
 Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
remove from buddy list ignore all messages by this user
|
|
Ken, I cannot replicate the bug you're seeing with the file manager. Could you show me the output of the phpinfo() function please.
Also, if you can try the following test script on your system, see what information you get and paste its output to me.
<?php echo '<pre>';
$file_name = "FULL_PATH_TO_ANY_FILE"; $st = stat($file_name); $group = posix_getgrgid($st['gid']); $user = posix_getpwuid($st['uid']); $user_name = $group['name']; $group_name = $user['name'];
print_r($st);
echo "User Name: $user_name\n"; echo "Group Name: $group_name\n";
echo '</pre>'; ?>
FUDforum Core Developer
|
|
|
|
|
|
|
Re: minor glitches in RC2 [message #1823 is a reply to message #1822] |
Tue, 23 April 2002 11:58   |
|
Ok I found the reason why its not working
include('admpanel.php'); if( !empty($HTTP_POST_VARS['cancel']) ) { header("Location: admglobal.php?".$_RSID); exit; }
It should be
if( !empty($HTTP_POST_VARS['cancel']) ) { header("Location: admglobal.php?".$_RSID); exit; } else { include('admpanel.php'); }
in order to make sure it will work even if the process is cancelled. The consist.php is also affected by this problem bye Ken
|
|
|
|
|
Re: minor glitches in RC2 [message #1832 is a reply to message #1830] |
Tue, 23 April 2002 12:40   |
|
Hi, once again another one . When resetting a user's password the e-mail sent contains a blank space instead of the url. Seems like the {var: URL} is somewhat empty. I will check the other generated messages to see whether it's always empty or only in this case. Registration confirmation, however, is working as expected. bye Ken
|
|
|
|
Re: minor glitches in RC2 [message #1848 is a reply to message #1835] |
Tue, 23 April 2002 15:05   |
|
And the spam feast continues 
Looking at the referrals list I noticed that the user's name isn't shown up. maybe the {VAR: r_login} has no assigned value?
Other than that I'm happy to announce that finally the German translation is complete again (hopefully without any embarrassing typos in it) so there it is.
Bye Ken
-
Attachment: de_msg.bz2
(Size: 14.44KB, Downloaded 1019 times)
|
|
|
|
|
|
Re: minor glitches in RC2 [message #1869 is a reply to message #1868] |
Tue, 23 April 2002 19:06   |
|
I thought so. however it seems to me quite suspicious that right now after I replaced the files the whole forum doesn't seem to work anymore. So I better take a look again, maybe there are still some odd things remaining  Will tell u in a few minutes then bye Ken
|
|
|
|
|
|
Re: minor glitches in RC2 [message #1947 is a reply to message #1938] |
Thu, 25 April 2002 19:24   |
|
Great. Unfortunately I cannot test it because the guy who owns the server screwed it up yesterday while attempting to remove mod_ssl. Don't know when he will fix it again And with 4.06 and above I ve never encounterred such problems. nevermind Ken
|
|
|
Re: minor glitches in RC2 [message #1948 is a reply to message #1947] |
Thu, 25 April 2002 19:25  |
Ilia
 Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
remove from buddy list ignore all messages by this user
|
|
Ken Kizaki wrote on Thu, 25 April 2002 7:24 PM | Great. Unfortunately I cannot test it because the guy who owns the server screwed it up yesterday while attempting to remove mod_ssl. Don't know when he will fix it again And with 4.06 and above I ve never encounterred such problems. nevermind Ken
|
Ouch...
FUDforum Core Developer
|
|
|