-
Re: Xampp and lamp issue
it because there is no database at your LAMPP MySQL, try to dump from previous built in MySQL, and re-import it again to your LAMPP MySQL.
actualy to run yer auto pathce, you don't need to use multyple web server and MySQL server, built in server can do it without any problem.
check at /var/www that was all your webserver
-
Re: Xampp and lamp issue
Thx Hrace, yes i was using the var/www/ server earlier...but the autopatcher wasnt connecting.
-
Re: Xampp and lamp issue
Heartiest thanx to all of u guyz....alas my xampp working fine and also the autopatcher :w00t::thumbup1:
The only thing which is down is my registration page:(:,how can i connect xampp with the basic Mysql which is already running?
-
Re: Xampp and lamp issue
Make sure config.php is configured within the /register/ directory
-
Re: Xampp and lamp issue
The New Xampp is full of rubbish, I prefer doing everything manually.
$ Sudo apt-get update
$ Sudo apt-get upgrade
Now it's time to install Apache 2 and PHP 5.
Sudo apt-get install apache2 php5
To test if everything was installed correctly, create the file index.php with the information of PHP5:
$ Sudo vi / var / www / index.php
Copy the content below to the new file:
<? Php
phpinfo ();
?>
Save the file and access the address http://localhost/. If the information of PHP appear, everything is installed correctly.
With Apache and PHP running chubby, it's time to install MySQL
$ Sudo apt-get install mysql-server-5.0 php5-mysql
Now change the administrator password root MySQL:
Sudo mysqladmin-u root seu_password
For the service to run straight along with PHP5, restart Apache:
$ Sudo / etc/init.d/apache2 restart
To administer MySQL, install phpMyAdmin, which is one of the best tools for this purpose.
$ Sudo apt-get install phpmyadmin
Access the address http://localhost/phpmyadmin/ and provide the root login and password that you set in MySQL