Windows:
Install service:
httpd.exe -k install -n "MyServiceName"
httpd.exe -k install -n "MyServiceName" -f "c:\files\my.conf"
Uninstall service
httpd.exe -k uninstall
httpd.exe -k uninstall -n "MyServiceName"
catetan:
untuk membuat/install apache service atau meng-uninstall-nya.
melalui command prompt window sebagai Administrator (klik kanan - "Run as Administrator")
Setting httpd.conf untuk PHP
Sebagai Module
LoadModule php5_module "c:/php/php5apache2_4.dll"
AddHandler application/x-httpd-php .php
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
# configure the path to php.ini
PHPIniDir "C:/php"
Sebagai CGI
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
Action application/x-httpd-php "/php/php-cgi.exe"
Install service:
httpd.exe -k install -n "MyServiceName"
httpd.exe -k install -n "MyServiceName" -f "c:\files\my.conf"
Uninstall service
httpd.exe -k uninstall
httpd.exe -k uninstall -n "MyServiceName"
catetan:
untuk membuat/install apache service atau meng-uninstall-nya.
melalui command prompt window sebagai Administrator (klik kanan - "Run as Administrator")
Setting httpd.conf untuk PHP
Sebagai Module
LoadModule php5_module "c:/php/php5apache2_4.dll"
AddHandler application/x-httpd-php .php
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
# configure the path to php.ini
PHPIniDir "C:/php"
Sebagai CGI
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
Action application/x-httpd-php "/php/php-cgi.exe"
Comments
Post a Comment