|
Re: PM Icons [message #10458 is a reply to message #10380] |
Mon, 02 June 2003 13:05 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Set the value of "Message icons per row" to a 9 or something...
FUDforum Core Developer
|
|
|
|
Re: PM Icons [message #10480 is a reply to message #10460] |
Mon, 02 June 2003 19:34 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
The bug with not setting the value has been fixed, it happened because there were 2 entries for this value.
As for why it shows them all in 1 row, I can only guess you have different GLOBALS.php once again.
Open GLOBALS.php and check what the $POST_ICONS_PER_ROW variable is set to.
FUDforum Core Developer
|
|
|
Re: PM Icons [message #10482 is a reply to message #10480] |
Mon, 02 June 2003 19:52 |
|
It looks like I do still have a GLOBALS.php problem.
Question is (1) do I delete the old GLOBALS.phps? ALL BUT the 'real' GLOBALS.php (in the INCLUDE Dir) and then run this script?
<?php
$real_path = "/path/to/include/GLOBALS.php"
include($real_path);
@unlink($WWW_ROOT_DISK . 'GLOBALS.php');
@unlink($WWW_ROOT_DISK . 'adm/GLOBALS.php');
symlink($real_path, $WWW_ROOT_DISK . 'GLOBALS.php');
symlink($real_path, $WWW_ROOT_DISK . 'adm/GLOBALS.php');
?>
(2) What Dir do I run this script from? My INCLUDE Dir??
thanks for the help
Got Torque?
|
|
|
Re: PM Icons [message #10493 is a reply to message #10482] |
Mon, 02 June 2003 21:59 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
It does not matter what directory you run the script from, just make sure you make $real_path contain the full path to the GLOBALS.php inside the include/ directory. You may want to remove the @ from the script so you see any warnings/errors that may occur.
FUDforum Core Developer
|
|
|
Re: PM Icons [message #10497 is a reply to message #10493] |
Tue, 03 June 2003 00:11 |
|
I double checked the script when I run it I get this:
Parse error: parse error, unexpected T_INCLUDE in /path/to/script/reset.php on line 3
reset.php
<?php
$real_path = "/usr/home/web/users/xxxxxxxx/html/fforum/data/include/GLOBALS.php"
include($real_path);
unlink($WWW_ROOT_DISK . 'GLOBALS.php');
unlink($WWW_ROOT_DISK . 'adm/GLOBALS.php');
symlink($real_path, $WWW_ROOT_DISK . 'GLOBALS.php');
symlink($real_path, $WWW_ROOT_DISK . 'adm/GLOBALS.php');
?>
thanks
Got Torque?
|
|
|
Re: PM Icons [message #10498 is a reply to message #10497] |
Tue, 03 June 2003 00:13 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
There is a missing ; after the " on line #3.
FUDforum Core Developer
|
|
|
|