How to install ruby library for apache in Ubuntu/Linux?
mod_ruby embeds the Ruby interpreter into the Apache2 web server, allowing Ruby CGI scripts to be executed natively. These scripts will start up much faster than without mod_ruby. This package contains Ruby libraries for mod_ruby.To install this package in Ubuntu,
How to install apache in Ubuntu?
Apache can be installed in Linux using source. It can be easily installed in Ubuntu using the following command But after installation, you can verify that in the browser. Enter http://localhost/. If everything is fine, the page can be displayed with no connection errors. To start/restart apache or To stop the apache server
How to Configure MySql with PHP and Apache?
After installing PHP, Apache and MySql, let’s see whether everything works fine Take a sample PHP-MySql program written in /usr/local/apache2/htdocs/mysql.php If your mysql is configured well with php, you will be sucessfully able to execute the above script This is because php is configured to work with the socket /var/mysql/mysql.sock. There are two ways by [...]
How to configure PHP and Apache in Linux and Mac?
You have installed PHP and Apache (Check the installation procedure). But you are facing with the following problems You are not able to configure PHP and apache so that apache can execute the .php files Instead of executing the php files, the browser simply displays the php files like a text Instead of executing the [...]
How to install Apache in Mac and Linux?
Installing Apache from sources involves the following steps Download Apache. Make sure that you download the source (stable version) The downloaded file will be something like this httpd-x.x.x.tar.gz (where x.x.x is the Apache version) Now execute the following commands ./configure –prefix=/usr/local/apache2 make sudo make install If everything is installed fine, run the following command, And [...]