Fedora 13 tutorials & documentation
How to install Drupal 6 on Fedora 13
- Install PECL uploadprogress library
pecl install uploadprogress
How to configure PECL uploadprogress library on Fedora 13
- Create an uploadprogress PHP configuration file
gedit /etc/php.d/uploadprogress.ini
- Add the following text to the file
; Enable uploadprogress extension module
How to install Zend Debugger 5.3.x on Fedora 13
- Download the latest Zend Debugger source files
- Visit the Zend Studio Downloads page
http://www.zend.com/en/products/studio/downloads
- Click the (TAR.GZ) 2.79MB link for the Studio Web Debugger v5.2.26 (64 bit)
How to install Subclipse 1.6.x on PDT 2.2
-
Install the JNI bindings to the Subversion libraries
yum install subversion-javahl
-
Open Eclipse
-
Select the Help > Install New Software... menu option
-
Set the Work with field
http://subclipse.tigris.org/update_1.6.x
-
Click the Add... button
-
Set the Name field
How to install Eclipse PDT 2.2 on Fedora 13
- Download the latest Eclipse PDT All-In-One package
- Visit the Eclipse PDT downloads page
How to Install Subversion on Fedora 13
- Install Subversion
yum install subversion
How to configure mod_rewrite on Fedora 13
- Open the Apache configuration file
gedit /etc/httpd/conf/httpd.conf
- Change AllowOveride None to AllowOveride All inside the DocumentRoot Directory Directive, normally <Directory "/var/www/html">
- Save and close the file
- Restart the Apache service
How to install mod_ssl on Fedora 13
- Run the mod_ssl install command
yum install mod_ssl
How to configure mod_ssl on Fedora 13
- Open the mod_ssl Apache configuration file
gedit /etc/httpd/conf.d/ssl.conf
- Enable name-based virtual hosting on port 443
- Add the following text just before the SSL Virtual Host Context comment
# Use name-base virtual hosting
How to install OpenSSL on Fedora 13
- Install OpenSSL
yum install openssl
How to configure OpenSSL on Fedora 13
- Change your working directory to /etc/pki/CA
cd /etc/pki/CA
- Create a file that holds the database of certificates
touch index.txt
- Create a file that holds the next certificate serial number
How to install phpMyAdmin on Fedora 13
- Install phpMyAdmin
yum install phpmyadmin
- Restart the Apache Server
service httpd restart
How to test phpMyAdmin on Fedora 13
- Visit http://localhost/phpmyadmin in your local web browser
How to install MySQL on Fedora 13
- Install MySQL
yum install mysql-server php-mysql
How to configure MySQL on Fedora 13
- Set the MySQL service to start on boot
chkconfig --levels 235 mysqld on
- Start the MySQL service
service mysqld start
- Log into MySQL
mysql -u root
- Set the root user password for all local domains