Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # setting httpd.conf ServerRoot, Listen dan DocumentRoot
- ServerRoot "c:/Apache24"
- Listen 8080
- DocumentRoot "c:/Apache24/htdocs"
- <Directory "c:/Apache24/htdocs">
- # install service apache, command
- httpd.exe -k install -n "Apache HTTP Server"
- # jika link dengan PHP, tambahkan konfigurasi di httpd.conf
- # penting! pastikan vc apache dan vc php build sama, arsitekturnya juga harus sama 32 atau 64 bit. (jika gagal ... )
- AddHandler application/x-httpd-php .php
- AddType application/x-httpd-php .php .html
- LoadModule php7_module "c:/php/php7apache2_4.dll"
- PHPIniDir "c:/php"
- # penting! pastikan oci8 sesuai 32 atau 64bit php nya
- # untuk oracle client menyesuaikan dll oci8 (untuk 11g pakai yang 32 bit oraclient)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement