Hi list, I'm trying to make SERWEB working (the last CVS version), but ending with the same issue all the time. When I try login as admin or user it always goes to a blank white page and nothing happen.
I followed the INSTALL file thoroughly and set up every mentioned detail in config files. Register_globals is also On in php.ini..etc.
I went through entire list and haven't found my situation solution. It might also be a wrong set up of my apache I haven't got any error message either in httpd errorlog nor on the screen of my Firefox webbrowser. Everything seems to be ok.
I'm attaching the names of packages I installed on my Suse Linux 9.1
php4-zlib-4.3.4-26 php4-mysql-4.3.4-26 php4-domxml-4.3.4-26 php4-ldap-4.3.4-26 php4-4.3.4-26 php4-devel-4.3.4-26 php4-pear-4.3.4-26
apache2-prefork-2.0.49-23 apache2-mod_php4-4.3.4-26 apache2-2.0.49-23 apache2-doc-2.0.49-23
here is sniff from ethereal:
POST /serweb/html/admin/index.php HTTP/1.1 Host: suse.sip User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: cs,en-us;q=0.7,en;q=0.3 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://suse.sip/serweb/html/admin/ Cookie: phplib_Session=653e0f64a2aeb8b2e4d26aa12e0ac3fc Content-Type: application/x-www-form-urlencoded Content-Length: 42
uname=admin&passw=heslo&okey.x=46&okey.y=4HTTP/1.1 200 OK Date: Mon, 24 Jan 2005 23:37:18 GMT Server: Apache/2.0.49 (Linux/SuSE) X-Powered-By: PHP/4.3.4 Pragma: no-cache Cache-Control: no-cache Expires: Mon, 26 Jul 1997 05:00:00 GMT Last-Modified: Mon, 24 Jan 2005 23:37:18 GMT Cache-Control: post-check=0, pre-check=0 Content-Length: 0 Content-Type: text/html; charset=ISO-8859-1
Does anybody have an idea whatt I'm missing or doing wrong?
Lada
Hi Lada, first I recommend not to use last CVS version. It is developer unstable and currently I am not sure if it is usable.
Instead of this you should use version rel_0_8_12.
cvs co -r rel_0_8_12 iptel
However login should be working in last CVS version. I can't tell you what is wrong, may be configuration of php. It seems that same problem as you have more peoples, but I doesn't know why. Please if you solve the problem, could you tell me what was wrong?
Only thing that I can advice to you is try add to code some prints to see if values are obtained corectly from browser. Use the:
print_r($_POST);
somewhere at beginning of index.php to see if values are get from html form. And you may add some
echo "1"; echo "2"; etc.
to see flow in the script.
Karel
Ladislav Andel napsal(a):
Hi list, I'm trying to make SERWEB working (the last CVS version), but ending with the same issue all the time. When I try login as admin or user it always goes to a blank white page and nothing happen.
I followed the INSTALL file thoroughly and set up every mentioned detail in config files. Register_globals is also On in php.ini..etc.
I went through entire list and haven't found my situation solution. It might also be a wrong set up of my apache I haven't got any error message either in httpd errorlog nor on the screen of my Firefox webbrowser. Everything seems to be ok.
I'm attaching the names of packages I installed on my Suse Linux 9.1
php4-zlib-4.3.4-26 php4-mysql-4.3.4-26 php4-domxml-4.3.4-26 php4-ldap-4.3.4-26 php4-4.3.4-26 php4-devel-4.3.4-26 php4-pear-4.3.4-26
apache2-prefork-2.0.49-23 apache2-mod_php4-4.3.4-26 apache2-2.0.49-23 apache2-doc-2.0.49-23
here is sniff from ethereal:
POST /serweb/html/admin/index.php HTTP/1.1 Host: suse.sip User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: cs,en-us;q=0.7,en;q=0.3 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://suse.sip/serweb/html/admin/ Cookie: phplib_Session=653e0f64a2aeb8b2e4d26aa12e0ac3fc Content-Type: application/x-www-form-urlencoded Content-Length: 42
uname=admin&passw=heslo&okey.x=46&okey.y=4HTTP/1.1 200 OK Date: Mon, 24 Jan 2005 23:37:18 GMT Server: Apache/2.0.49 (Linux/SuSE) X-Powered-By: PHP/4.3.4 Pragma: no-cache Cache-Control: no-cache Expires: Mon, 26 Jul 1997 05:00:00 GMT Last-Modified: Mon, 24 Jan 2005 23:37:18 GMT Cache-Control: post-check=0, pre-check=0 Content-Length: 0 Content-Type: text/html; charset=ISO-8859-1
Does anybody have an idea whatt I'm missing or doing wrong?
Lada
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Hi ladislav,
I have serweb working at a server, I access the pages through firefox 1.0 full, and there is no problem, once serweb's opening page is working at your machine, i don't see how could your apache be a problem, I think it may be at your serweb configuration paths, because i once had a simliar problem because of that ... try to take another look at the installation guide and see if the paths are correct. Once it's full of "../" it's really a pain in the ass to configure all of the files that need it.
Best Regards Felipe Martins
On Tue, 25 Jan 2005 00:48:49 +0100 "Ladislav Andel" ladia6@centrum.cz wrote:
Hi list, I'm trying to make SERWEB working (the last CVS version), but ending with the same issue all the time. When I try login as admin or user it always goes to a blank white page and nothing happen.
I followed the INSTALL file thoroughly and set up every mentioned detail in config files. Register_globals is also On in php.ini..etc.
I went through entire list and haven't found my situation solution. It might also be a wrong set up of my apache I haven't got any error message either in httpd errorlog nor on the screen of my Firefox webbrowser. Everything seems to be ok.
I'm attaching the names of packages I installed on my Suse Linux 9.1
php4-zlib-4.3.4-26 php4-mysql-4.3.4-26 php4-domxml-4.3.4-26 php4-ldap-4.3.4-26 php4-4.3.4-26 php4-devel-4.3.4-26 php4-pear-4.3.4-26
apache2-prefork-2.0.49-23 apache2-mod_php4-4.3.4-26 apache2-2.0.49-23 apache2-doc-2.0.49-23
here is sniff from ethereal:
POST /serweb/html/admin/index.php HTTP/1.1 Host: suse.sip User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.5) Gecko/20041107 Firefox/1.0 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: cs,en-us;q=0.7,en;q=0.3 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Referer: http://suse.sip/serweb/html/admin/ Cookie: phplib_Session=653e0f64a2aeb8b2e4d26aa12e0ac3fc Content-Type: application/x-www-form-urlencoded Content-Length: 42
uname=admin&passw=heslo&okey.x=46&okey.y=4HTTP/1.1 200 OK Date: Mon, 24 Jan 2005 23:37:18 GMT Server: Apache/2.0.49 (Linux/SuSE) X-Powered-By: PHP/4.3.4 Pragma: no-cache Cache-Control: no-cache Expires: Mon, 26 Jul 1997 05:00:00 GMT Last-Modified: Mon, 24 Jan 2005 23:37:18 GMT Cache-Control: post-check=0, pre-check=0 Content-Length: 0 Content-Type: text/html; charset=ISO-8859-1
Does anybody have an idea whatt I'm missing or doing wrong?
Lada
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers