Apache

Apache tutorials & documentation

mod_rewrite Fedora 13

How to configure mod_rewrite on Fedora 13

  1. Open the Apache configuration file
    gedit /etc/httpd/conf/httpd.conf
  2. Change AllowOveride None to AllowOveride All inside the DocumentRoot Directory Directive, normally <Directory "/var/www/html">
  3. Save and close the file
  4. Restart the Apache service

mod_ssl Fedora 13

How to install mod_ssl on Fedora 13

  1. Run the mod_ssl install command
    yum install mod_ssl

How to configure mod_ssl on Fedora 13

  1. Open the mod_ssl Apache configuration file
    gedit /etc/httpd/conf.d/ssl.conf
  2. Enable name-based virtual hosting on port 443
    1. Add the following text just before the SSL Virtual Host Context comment
      # Use name-base virtual hosting

phpMyAdmin Fedora 13

How to install phpMyAdmin on Fedora 13

  1. Install phpMyAdmin
    yum install phpmyadmin
  2. Restart the Apache Server
    service httpd restart

How to test phpMyAdmin on Fedora 13

  1. Visit http://localhost/phpmyadmin in your local web browser

Apache Fedora 13

How to install Apache on Fedora 13

  1. Install Apache Sever
    yum install httpd

How to configure Apache Server on Fedora 13

  1. Set the apache service to start on boot
    chkconfig --levels 235 httpd on
  2. Enable name-based virtual hosting on port 80
    1. Open the httpd configuration file for editing

Lamp Fedora 13

How to install and configure LAMP on Fedora 13

  1. Linux

Free Open Source PHP IDE Fedora 13

Build a completely Free PHP IDE using Open Source Software on Fedora 13

  1. Install and Configure LAMP on Fedora 13
    1. Install and Configure Fedora 13

Zend Debugger

The Zend Debugger is a PHP extension which can be installed on a web server to enable the debugging of PHP scripts. Visit the Zend PDT website for more information.

LAMP

LAMP is not software in itselft, but is acutally a solution stack of software used to run websites or servers. For more information on LAMP, visit wikipedia's LAMP Solution Stack article.

How to install and configure LAMP

Since LAMP is not actually software in itself, to install and configure it, we will install and configure the individual software components that make up a LAMP Solution Stack.

phpMyAdmin

phpMyAdmin is a tool written in PHP intended to handle the administration of MySQL over the Web. Visit the phpMyAdmin website for more information.

mod_ssl

mod_ssl is an Apache module that provides SSL v2/v3 and TLS v1 support for the Apache HTTP Server.  See the mod_ssl documentation for more information.

Syndicate content