Posts

Showing posts with the label ldap

PHP modules' DLL hell

Image
In Windows platform, the webserver package of my choice is MoWes (mobile webserver). In the past it is called WoS (Webserver on a stick). We just copy the folder from one computer to another, and run its exe-file, instantly we have a Apache - MySQL - PHP triad running without any installation hassles. But recently, I copied the MoWes onto two servers, and I cant seem to load both PHP_OCI8 and PHP_LDAP modules. After a few wrong turns, finally I used Microsoft Visual Studio's Dependency Walker tool. And voila - both of the DLL's problems were shown before my eyes. PHP_LDAP's problem was SSLEAY not installed. PHP_OCI8's problem was that the OCI.DLL is in the AMD 64-bit architecture (equivalent to Intel EM64T architecture) while the php/apache system is in 32-bit architecture. Now, where did I keep the downloaded the oracle instant client for win32..

integrasi ebox-usersandgroups dgn Apache-Subversion

Subversion adalah sebuah source control system yang dapat menyimpan file apapun . Prinsip kerjanya lebih mirip CVS daripada SourceSafe , dan memang merupakan hasil pengembangan orang - orang yg ingin memperbaiki CVS . Dalam Subversion, kita dapat menyimpan file source code ataupun binary (file PHP atau file Excel, misalnya ), memberi akses terpusat ke banyak orang ke file tersebut , memberi access control ( siapa yang boleh menulis , siapa yang hanya dapat membaca ), mencatat tiap versi dari file ( sehingga ada history/log revisi tiap file, diubah oleh siapa , kapan , dan apa pesan perubahannya ). Subversion memiliki fitur integrasi dengan Apache Web Server, sehingga kita dapat memanfaatkan salah satu dari metoda authentication yang tersedia bagi Apache, dan memungkinkan akses ke repository menggunakan protokol HTTP. Ya benar , bisa diakses dengan web browser, tapi hanya akses dasar saja yang dapat dilaku...