1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
postaci for Debian
----------------------
If you want to properly working postaci you must configure webserver and php4.
-Firstly, in your php.ini file (/etc/php4/apache/php.ini)
Dynamic Extensions Section make the following changes:
extension=mysql.so ## for mysql database
extension=pgsql.so ## for postgresql database
extension=imap.so
Then save the file and exit.
-Secondly, we configure the apache web server.
In your /etc/apache/srm.conf file you must have the following line for PHP support.Change this line according to our examples.
AddType application/x-httpd-php .php3 .php .inc .phtml
We also suggests modify the line "DirectoryIndex index.html", as follow:
DirectoryIndex index.html index.php
Then save the file and exit.
-Thirdly, we must activate the changes.
You restart the webserver (/etc/init.d/apache restart).
Go to the http://your.server/postaci/index.php
And that's all...
-- Murat Demirten <murat@debian.org> Sat, 4 Nov 2000 18:49:23 +0200
|