i have done everything to this point but dont know wear to find Webmin wear do i look thanks
First, you will have to download following source
files:
Apache 2.0.49 source code for Linux: download from
http://www.apache.org/dist/httpd/httpd-2.0.49.tar.gz
PHP 4.3.5 source code for Linux: download from
http://www.php.net/get/php-4.3.5.tar.gz/from/a/mirror
PHP 4 manual: download from
http://www.php.net/download-docs.php
Libiconv - GNU library for character encoding
conversion (supports, e.g., UTF-8, Unicode, CP1250,
CP1251, ISO-8859-1, ISO-8859-2, and many others):
basic description at:
http://www.gnu.org/software/libiconv/ and download
from
http://ftp.gnu.org/pub/gnu/libiconv/...v-1.9.1.tar.gz
MySQL: you can install a binary form of MySQL from
your preferred Linux distribution (just be cautious,
MDK 9.2/10 installs binary form of Postgress by
default, not MySQL).
Now we can compile and install all modules
(this assumes you have all *.tar.gz files in
/usr/local/src):
cd /usr/local/src
Apache 2:
[code] tar -zxvf httpd-2.0.49.tar.gz
cd httpd-2.0.49
./configure
--prefix=/usr/local/apache2
--enable-so
--enable-auth-digest
make
make install [/code
iconv:
Code:
tar -zxvf libiconv-1.9.1.tar.gz
cd ../libiconv-1.9.1
./configure
--prefix=/usr/local
make
make install
PHP 4 (as Apache 2 server module!):
Code:
tar -zxvf php-4.3.5.tar.gz
cd ../php-4.3.5
./configure
--with-apxs2=/usr/local/apache2/bin/apxs
--with-mysql
--with-iconv=/usr/local
--enable-track-vars
--with-gettext
--with-config-file-path=/usr/local/apache2/conf
--enable-trans-id
make
make install
cp php.ini-dist /usr/local/apache2/conf/php.ini
(add additional modules to ./configure, as needed,
e.g. mod_rewrite or SSL)
Webmin
Now, run Webmin and create a new service here, so that
Apache 2 will start automatically with bootup:
(open URI
https://localhost:10000/ in your browser,
select System, Bootup and Shutdown, Create new bootup
and shutdown) and fill-in the following service:
Code:
start: /usr/local/apache2/bin/apachectl start
stop: /usr/local/apache2/bin/apachectl stop