Search results

  1. M

    PHP FCGI Module and Mysql 4.x+

    Cool! Last time I have difficulties to compile Turck MMCache with PHP. I will try it later. So your new PHP binary can connect to MySQL too, I assume. Best regards, Gang
  2. M

    PHP FCGI Module and Mysql 4.x+

    Yes, it works. I put zend_extension tag just below "dynamic extensions", do a search. Remember to kill all PHP processes after configuration changes. Load /phpinfo.php in your browser, PHP accelerator should appear in the copyright section. BTW: I assume your web site works now, isn't it...
  3. M

    PHP FCGI Module and Mysql 4.x+

    Thank you for trying our web server. By default, PHP looks for MySQL's socket at /tmp/mysql.sock, it is configurable in php.ini. RedHat usually place MySQL's socket somewhere else, see your /etc/my.cnf. Both configuration should match. Your problem may caused by the missing php.ini if you...
  4. M

    execve - CGI Execution

    check your perl script George, Please try your perl script from command line and make sure it works. I use the following test script, it works: #!/usr/bin/perl print STDOUT "Content-type: text/plain\n\n"; print STDOUT "Hello World from Perl Script\n"; Make sure your script follows the...
  5. M

    503 Service Unavailable

    Problem solved The problem is the configuration of IPTables (Linux Firewall), after adding rule ALLOW INPUT from LO PHP works fine.
  6. M

    503 Service Unavailable

    Need to test your PHP binary. Do not give up yet. :-) What you observed is normal. Once you try to access the admin interface, the web server will bind (use) port 5158 and start PHP, so when you do netstat again, it shows port 5158 is in use, if you kill all the running PHP processes, that...
  7. M

    503 Service Unavailable

    change the port for fcgiAdminPHP Two possible causes: 1. the old admin_php is still running: use command: ps -ef | grep php to list running php processes, kill them all. and try again, the web server will create new php processes automatically. if it still does not work restart web...
  8. M

    503 Service Unavailable

    try again We just fixed a bug in PHP binary related to the new glibc library and it runs properly on redhat 9 now. You can download our repackaged binary package and try again. See if it is fixed. Best regards, Mistwang
  9. M

    admin password

    try again We find a way to fix the "errno" error message in PHP binary, please download our repackaged binary package and try again. Best Regards, Mistwang
  10. M

    503 Service Unavailable

    compile PHP You are welcome. Did you install gcc? Did you set PATH env correctly? With the new glibc, you may also have problem during compilation. If it complains about "errno" in MySQL library, just modify php-4.3.1/ext/mysql/libmysql/global.h add a line at the beginning...
  11. M

    503 Service Unavailable

    rebuild php binary Can you please tell me more about your system? Which distrubtion? Redhat? Suse? We were informed that our pre-built php binary does not work well on Redhat 9 because of newer version of glibc. So please rebuild php binary from source if you can. Please use PHP 4.3.1...
  12. M

    admin password

    compile php 4.3.2 It is documented already :-) Due to bugs in Fast CGI interface of PHP 4.3.2, it has to be configured with additional option --enable-discard-path, please disregard what is said about this option in its README.FastCGI. And 4.3.2 does not populate path info correctly, so...
  13. M

    admin password

    rebuild php binary Thank you for trying our server. Can you tell me more information about your system? Linux or other OS, version of (g)libc? It is likely because that you use newer version of (g)libc. The prebuilt php binary is not good. You can built php binary yourself if you...
  14. M

    What about windows!

    No plan for windows Thank you for your inquiry. Currently we have no plan to support Windows because of the significant system architecture differences. We also believe Unix is a better server platform which needs some easy to use applications. It is one of our goal. It is a lot easier...
  15. M

    OpenBSD version ?

    Thank you for trying our products. There is no plan to release binaries for OpenBSD and NetBSD any time soon. We are start up with limited resources, have to focus on major platforms. We will consider adding binaries if demonds are high. LiteSpeed Team
Top