PHP: What is lsphp?

PHP needs to communicate with the WebServer (apache, nginx, litespeed or any other) in a format which both parties can understand. For example a common way of integrating apache with PHP is by using “mod-php” for apache. nginx usually is integrated using “php-fpm” which is a modern way of “cgi” interface (basically informations are shared … Read more

ssl_error_rx_record_too_long and Apache SSL [closed]

The link mentioned by Subimage was right on the money for me. It suggested changing the virtual host tag, ie, from <VirtualHost myserver.example.com:443> to <VirtualHost _default_:443> Error code: ssl_error_rx_record_too_long This usually means the implementation of SSL on your server is not correct. The error is usually caused by a server side problem which the server … Read more

Bash: No such file or directory?

I bet you miss dynamic linker. Just do a You should get an output like this: There are high chances that you system lacks the interpreter (/lib64/ld-linux-x86-64.so.2 in the example). In this case bash would yell No such file or directory, just like when the binary itself is missing. You can try to use a different linker. Sometime you can … Read more