Page 1 of 1

How to start

Posted: Mon Nov 17, 2003 8:23 pm
by lramos85
I'm using Red Hat Linux and I do my C++ Programming there with vi, I need to do PHP and mySQL but have no Idea how can anyone help me?

Posted: Mon Nov 17, 2003 8:41 pm
by Weirdan
install apache, php, mysql then read the PHP manual and use your vi (btw, vim is much more.... it just much more, as for me :D) to write your scripts.
You can use
http://www.google.com/,
http://www.php.net/,
http://mysql.com/
and http://httpd.apache.org/
for information on how to install all of this great things ;)

Posted: Tue Nov 18, 2003 7:15 am
by d-m
Weirdan wrote:install apache, php, mysql then read the PHP manual and use your vi (btw, vim is much more.... it just much more, as for me :D) to write your scripts.
You can use
http://www.google.com/,
http://www.php.net/,
http://mysql.com/
and http://httpd.apache.org/
for information on how to install all of this great things ;)

SO if you are a Newbie.. and like to know how to install them .. here it goes the solution!

Download the mod_ssl / apache / openssl and php to a path...

--- APACHE ---
cd ../cd mod_ssl-2.8.15-1.3.28

./configure --enable-module=so --with-apache=../apache_1.3.28 --with-ssl=../openssl-0.9.7/
cd ../apache_1.3.28/
make
make certificate TYPE=custom
make install
--- END APACHE ---

OBS: CRIPT the CA.key
DO NOT CRYPT server.key

-- PHP --
cd ../php-4.3.3
./configure --with-apxs=/usr/local/apache/bin/apxs --with-mysql
make
make install
-- END PHP ---