Hi Tanzeem I am not trying to directly address your issue about xampp, but I trying to see the objective and purpose a solution which will full fill your objective of running PHP, MySQL application on Apache
Try installing (1) install mysql-server yum install mysql mysql-server (2) install apache yum install httpd (3) install PHP yum install php ----------------------------------------------------------------------- post installation steps ------------------------- MySQL # enabling mysql to start when the system is booting systemctl enable mysqld.service # starting mysql service systemctl start mysqld.service Note:- if you want more security on MySQL please run "mysql_secure_installation", not needed if running on ur PC, this setup a MySQL root password --------------------------- APACHE #Now configure your system to start Apache at boot time... systemctl enable httpd.service # startinf apache service systemctl start httpd.service # check it by opening your broswer and typing "localhost" or "127.0.0.1" or "ur IP" , you will get the apache test page ---------------- Testing PHP / Getting Details About Your PHP Installation create a file "test.php" in "/var/www/html" with contents <?php phpinfo(); ?> ------------------------------- check the site with localhost/test.php or 127.0.0.1/test.php you will get ur PHP infomation,which also contains information for apache and MySQL ________________________________ From: Tanzeem M.B <[email protected]> To: [email protected] Sent: Tuesday, 9 April 2013 2:05 PM Subject: [fsug-tvm] Error installing xampp on linux I recently downloaded and installed xampp 1.7.1. I get the following error after successfully starting Xampp and typing http://localhost in my Firefox browser. I am using 64 bit CPU running Fedora 17. Please help... The error shown on the browser page is as below Server error! The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script. If you think this is a server error, please contact the webmaster. Error 500 localhost Tue 09 Apr 2013 03:21:31 PM IST Apache/2.2.11 (Unix) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8k PHP/5.2.9 mod_apreq2-20051231/2.6.0 mod_perl/2.0.4 Perl/v5.10.0 -- Tanzeem M.B Programmer, C-DIT -- -- "Freedom is the only law". "Freedom Unplugged" http://www.ilug-tvm.org You received this message because you are subscribed to the Google Groups "ilug-tvm" group. To control your subscription visit http://groups.google.co.in/group/ilug-tvm/subscribe To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For details visit the google group page: http://groups.google.com/group/ilug-tvm?hl=en --- You received this message because you are subscribed to the Google Groups "Free Software Users Group, Thiruvananthapuram" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out. -- -- "Freedom is the only law". "Freedom Unplugged" http://www.ilug-tvm.org You received this message because you are subscribed to the Google Groups "ilug-tvm" group. To control your subscription visit http://groups.google.co.in/group/ilug-tvm/subscribe To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For details visit the google group page: http://groups.google.com/group/ilug-tvm?hl=en --- You received this message because you are subscribed to the Google Groups "Free Software Users Group, Thiruvananthapuram" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
