vad wrote:Hi, Alex
About webtools2 - this thing exist from release 6.1?
I found it in R5.1.2, but the URL is "
http://OXE/wtool/html/tools.html" (not in https, and with root login).
Bye the way, I got a problem with webtools2 and my OXE R8.0.1. After the login, I got 2 lines in the middle of the page :
Code: Select all
No such file or directory in /home/httpd/html/webtools2/php/WebToolsApp/WebToolsApp.php on line 304
No such file or directory in /home/httpd/html/webtools2/php/WebToolsApp/WebToolsApp.php on line 305
And if I try to use the toolbox, ABC-F Link or anything, I get back to the login page
I looked for the 2 lines of the file and it refer to the 2 last lines of the following code :
Code: Select all
if (session_id()!="")
{
// create session for authorise cgi access
$sess_file = "/var/spool/php/sess_cgi_".session_id();/*RA XTScf01550*/
// print "cree ".$sess_file." <br>";
if ($fp = @fopen($sess_file, "w")) {
fwrite($fp, "tag");
fclose($fp);
}
chmod($sess_file, "go-r");
chmod($sess_file, "u+rw");
}
In fact, the /var/spool/php/ directory is empty...
It seems it's a session problem, but why... I know only a very little bit in php...