Valhalla Legends Forums Archive | Web Development | PHP/MySQL/Apache

AuthorMessageTime
The-Rabid-Lord
Does anybody know an installer for these all in one, other than PHPTriad or EasyPHP as they are not working? Thanks.
July 3, 2004, 3:45 PM
j0k3r
PHPDev, It doesn't include MySQL, you need a seperate program for that.

Added: Apache is used as a PHP interpreter I believe, so those two go hand-in-hand, while you need a seperate program to run MySQL (I believe).
July 3, 2004, 10:59 PM
Tuberload
It is not too hard to individually install them if you follow the directions that come with.
July 4, 2004, 4:02 AM
St0rm.iD
It's really not too hard at all:
[code]
su
fetch http://someapachemirror.org/apache-version.tar.gz
tar xvfz apache-version.tar.gz
cd apache-version.tar.gz
./configure
make
make install
cd ..
fetch http://phpmirror.net/php-version.tar.gz
tar xvfz php-version.tar.gz
cd php-version
./configure
make
make install
cd ..
fetch http://mysqlmirror.org/mysql-version.tar.gz
tar xvfz mysql-version.tar.gz
cd mysql-version
make
make install
[/code]

Or, if you were on FreeBSD (which you should be ;))
[code]
su
pkg_add -rv apache
pkg_add -rv php
pkg_add -rv mysql
[/code]
w00t!
July 4, 2004, 8:39 PM
Thing
Don't forget to initialize Apache and MySQL in your startup scripts.
July 5, 2004, 6:40 PM
The-Rabid-Lord
I got it working, but what do you mean by initialize it in the startup, I can connect and retrieve data.
July 5, 2004, 6:41 PM
St0rm.iD
ah, right

put them in your startup file/dir, either /etc/rc.local, /usr/local/etc/rc.d/, or /etc/rc.d/
July 5, 2004, 7:36 PM
The-Rabid-Lord
Should have mentioned I am running Windows XP for the next 2 weeks. Everythings fine though now thanks. I get a server in 2 weeks that runs Unix.
July 5, 2004, 8:55 PM
Thing
[quote] Should have mentioned I am running Windows XP for the next 2 weeks.[/quote]
There's no need to bore us with mundane details such as what OS you are running. We can easily read your mind and formulate the correct answer. Knowing that you will soon realize Linux or BSD is the best way to go, we gave you the appropriate answers.

Oh and in reply to your next post, "You're Welcome".
July 5, 2004, 9:00 PM
St0rm.iD
FreeBSD is so ridiculously easy.
July 5, 2004, 10:59 PM
The-Rabid-Lord
My mums boyfriend works closley with sun so hes getting me a Solaries(spelt wrong) server and a copy of unix. Where can i get BSD though please? Thanks.
July 6, 2004, 7:15 AM
Maddox
[quote author=$t0rm link=board=22;threadid=7549;start=0#msg68707 date=1089068387]
FreeBSD is so ridiculously easy.
[/quote]

Gentoo is even easier!
emerge -k apache mod_php mysql
w00t!
July 6, 2004, 7:47 AM
crashtestdummy
[quote author=Meh link=board=22;threadid=7549;start=0#msg68781 date=1089098115]
My mums boyfriend works closley with sun so hes getting me a Solaries(spelt wrong) server and a copy of unix. Where can i get BSD though please? Thanks.
[/quote]
Come on now:
http://www.google.com/search?hl=en&ie=UTF-8&q=bsd&btnG=Google+Search
http://linuxiso.org/
July 6, 2004, 8:00 AM

Search