
Originally Posted by
Schfoo
In core.php, the status check isn't always closed, only if it can connect. I think php still keeps it open for some reason. If it does, the fclose(); should go after the default
PHP Code:
$online = "online";
You could also fetch the MUS port from the system_config instead of assuming that the user would put it as the regular port + 1. And also, you could make both of the ports and mus ip editable in the general configuration.
On the top of Alert Site User in the housekeeping, it says General Configuration instead of Alert Site User.
I don't know if there already is, but you could add a housekeeping session timeout.
You could have a MUS manager status check in core.php and if it's able to connect, then include mus.php
I believe that's all that just came out and hit me :P
I just wanted to put these back up so you(GraphiX) could read them. :P
Kinda like a post bump.
Also, another bug(sorta) I found is the top of most hk_*******.php pages is messed up with the padding.
Code:
BODY {
font-size: 10px;
font-family: Verdana, Arial, Sans-Serif;
color:#000;
padding:0px;
margin:0px 5px 0px 5px;
}
should be
Code:
BODY {
font-size: 10px;
font-family: Verdana, Arial, Sans-Serif;
color:#000;
padding:0px;
margin:5px 5px 5px 5px;
}