Q. I’m using lighttpd under CentOS 5 and getting the following error: …can’t handle ‘$HTTP[url] =~ …’ as you compiled without pcre support. My question is What is pcre support, and how do I solve this problem? A. Pcre is nothing but Perl-compatible regular expression library. PCRE has its own native API, but a set [...]
Q. How do I configure lighttpd web server as virtual host for serving multiple web site from a single public IP address (name-based virtual hosting)? A. Virtual hosting is a method that servers such as webservers use to host more than one domain name on the same server, sometimes on the same IP address. There [...]
Q. I’d like to see my php or apache web server log files in real time. How do I see log file in real time including all incoming logs? A. You need to use tail command which output the last part of files in real time including all incoming logs to a file. tail -f [...]
How do I test php installation with a phpinfo() page under UNIX / Linux Apache / nginx / lighttpd web server?
Q. How do I run a shell script from a web server or a web page under Apache or Lighttpd websever? A. In order to run a shell script from a web page you need Apache web server configured with cgi access. Apache CGI allows documents/files in cgi-bin directory treated as application and run by [...]