CONFIGURASI
Pada halaman ini saya ingin menjelaskan tentang configurasi:1. Httpd.conf
2. Php.ini
3. Php5ts.dll
1. Configurasi http.conf
1. Konfigurasi : edit the apache httpd.conf configuration file
Document Root “C:/Apache2.2/htdocs”
DirectoryIndex index.php
index.html
<IfModule mime_module>
AddType application/x-compress .Z
AddType application/x-gzip .tgz
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .html
AddType application/x-httpd-php .htm
AddType application/x-httpd-php-source .phps
2. Restart
3. Testing
jika sesuai gambar dibawah maka server tersebut bekerja dengan baik.
2 . Configurasi php.ini
1.
Matikan service Apache
2.
Jalankan file php-5.2.14-win32-installer
3.
Change folder c:\php\
4.
Pilih Apache 2.2.x Module
5.
Isikan C:\Apache 2.2\conf\
6.
Pilih extensions , modul Oracle (10) dan PDO|Oracle 10g client and above
7.
Configurasi atau hilangkan tanda ;
pada : C:\php\php.ini
Baris
342 : error_reporting = E_ALL & ~E_NOTICE
Baris
373 : display_errors = On
Baris
496 : magic_quotes_gpc = On
Baris
535 : doc_root = “C:/Apache2.2/htdocs”
3. Configurasi php5ts.dll
pada konfigurasi ini sangat mudah dan sebagai berikut:
1. Cari directory c:\php
2. Copy file php5ts.dll ke c:\Apache2.2\bin
Bangun koneksi antara PHP dan ORACLE
<!--Nama File: nama file php .php-->
<?php
$username="Isi Dengan Username yang apa pada nama database oracle anda";
$password="Isi Password pada database anda";
$dbname="localhost/XE";
$c=oci_connect($username, $password, $dbname);
if (!$c) {
echo "Koneksi ke server database gagal dilakukan";
exit();
}else{
echo "Koneksi ke server database sukses";
}
?>
0 komentar:
Posting Komentar