|
Re: minor glitches in RC2 [message #1778 is a reply to message #1777] |
Mon, 22 April 2002 21:57 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
I'll get cracking on the bugs, thanks for the reports.
I've changed the english text of some messages since your initial translation, so I took the liberty to trash the old translation of the strings. That "could" be the reason for the problem...
FUDforum Core Developer
|
|
|
|
|
Re: minor glitches in RC2 [message #1781 is a reply to message #1779] |
Mon, 22 April 2002 22:07 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
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 #1782 is a reply to message #1780] |
Mon, 22 April 2002 22:09 |
Olliver
Messages: 443 Registered: March 2002
Karma: 0
|
Senior Member |
|
|
Nevermind with the regexp. It also has been bugging me with some scripts I wrote. So lets hope php4.2.0 will fix it all. bye Ken edit: In case u cannot reproduce the filemanager problem I could PM the url to the forum to u (or the output of phpinfo()) just tell me what u prefer
[Updated on: Mon, 22 April 2002 22:11] Report message to a moderator
|
|
|
Re: minor glitches in RC2 [message #1783 is a reply to message #1782] |
Mon, 22 April 2002 22:22 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
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 #1819 is a reply to message #1785] |
Tue, 23 April 2002 12:30 |
Olliver
Messages: 443 Registered: March 2002
Karma: 0
|
Senior Member |
|
|
Hi, The fix for the filemanager is working fine, now I can finally see the correct group, user and rights set. Thnx a lot ken
--edit-- found a small bug with setting the forum's title: I chose to call my forum:
Ken's Testforum however it actually shows up as
Ken\'s Testforum I think most ppl would appreciate if it would appear without backslash in this case --edit--
[Updated on: Tue, 23 April 2002 12:45] Report message to a moderator
|
|
|
Re: minor glitches in RC2 [message #1822 is a reply to message #1819] |
Tue, 23 April 2002 15:31 |
Olliver
Messages: 443 Registered: March 2002
Karma: 0
|
Senior Member |
|
|
Hello, yet another one . If someone is cancelling the "Rebuild Seach Index" dialog ("Do u really want to proceed...") the following message will appear:Quote: | Warning: Cannot add header information - headers already sent by (output started at /home/ken/www/forum/adm/admpanel.php:3) in /home/ken/www/forum/adm/indexdb.php on line 32
|
--edit-- Interesting, the "Compact Messages" dialog suffers from the same disease once it's being cancelled Quote: | Warning: Cannot add header information - headers already sent by (output started at /home/ken/www/forum/adm/admpanel.php:3) in /home/ken/www/forum/adm/compact.php on line 68
|
looks like I should load admpanel.php into my editor to see what's going on there bye Ken
[Updated on: Tue, 23 April 2002 15:36] Report message to a moderator
|
|
|
Re: minor glitches in RC2 [message #1823 is a reply to message #1822] |
Tue, 23 April 2002 15:58 |
Olliver
Messages: 443 Registered: March 2002
Karma: 0
|
Senior Member |
|
|
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 #1849 is a reply to message #1848] |
Tue, 23 April 2002 19:55 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
ken, thank you very much for the update, I've already commited it to CVS.
FUDforum Core Developer
|
|
|
Re: minor glitches in RC2 [message #1866 is a reply to message #1849] |
Tue, 23 April 2002 22:51 |
Olliver
Messages: 443 Registered: March 2002
Karma: 0
|
Senior Member |
|
|
spamming galore today I applied the latest update from CVS. Now I got the problem that when I want to compile or rebuild templates I get this neat little message:
Quote: | Query Failed: SELECT * FROM ses WHERE ses_id='9adcfa92955cf0c7665901aadd887903' Reason: Table 'db_ken.ses' doesn't exist From: /home/ken/www/forum/adm/phplist.php Server Version: 3.23.37-log
|
Hm, seems to be a deja vu experience --edit--- simply selecting the language will also do to trigger the error bye Ken
[Updated on: Tue, 23 April 2002 22:53] Report message to a moderator
|
|
|
Re: minor glitches in RC2 [message #1868 is a reply to message #1866] |
Tue, 23 April 2002 23:02 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Ken, did you fix your GLOBALS.php, which got broken by the bug in admglobals?
You needed to put values for all the screwed up variables, once of which was MYSQL_TABLE_PREFIX, without it having a valid value forum won't work.
FUDforum Core Developer
|
|
|
|
Re: minor glitches in RC2 [message #1871 is a reply to message #1869] |
Tue, 23 April 2002 23:15 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
You probably ran the compiler, when it ran it read the settings from the new screwed up GLOBALS.php loosing the SQL table prefix.
So ALL the files now would have the wrong SQL table names.
FUDforum Core Developer
|
|
|
Re: minor glitches in RC2 [message #1872 is a reply to message #1869] |
Tue, 23 April 2002 23:18 |
Olliver
Messages: 443 Registered: March 2002
Karma: 0
|
Senior Member |
|
|
Hm the table prefix is empty in the GLOBALS.php. since it hasn't been empty by the start it seems clear why it cannot find any entries in the SQL database. Ok, sorry for this unnecessary report --edit-- just read ur new message. yep I confirm, because I overlooked the empty prefix I screwed it all up myself. very embarrassing So time for a fresh install again. bye Ken
[Updated on: Tue, 23 April 2002 23:20] Report message to a moderator
|
|
|
Re: minor glitches in RC2 [message #1938 is a reply to message #1777] |
Thu, 25 April 2002 22:37 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
I've put in the new GLOBALS.php editor inside the install script, which eliminates the use for regex.
Hopefuly this will solve the \$ problem on 4.04pl1 and possibly earlier installs....
FUDforum Core Developer
|
|
|
|
Re: minor glitches in RC2 [message #1948 is a reply to message #1947] |
Thu, 25 April 2002 23:25 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
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
|
|
|