Htscanner

If you’re a PHP developer who use Windows for development platform, you might want to try htscanner. It’s a PHP extension that parses configuration files (for example .htaccess) and changes the PHP settings according to it. You can find its windows binaries here. It’s a very useful extension especially when you need to simulate PHP …

My Delicious Linkblog

Gee, even Andrei now has linkblog. I think I have to make it too. So, i took a little PEAR::Services_Delicious and some ugly codes of mine and there you go, <?php require_once ‘Services/Delicious.php’; $d = new Services_Delicious(‘eristemena’,’guesswhat’); $r = $d->getRecentPosts(); $k=0; foreach ( $r as $l ) { $tidx = date(‘d F Y’,strtotime($l[time])); $lb[$tidx][$k][‘href’] = …

Ngeblog 0.2 : Yes, You can Use AuthSub Now

As written in Google Code blog (err, yesterday), Ngeblog now supports AuthSub authentication. And it uses Zend Framework (Zend_Gdata) for abstracting the whole authentication process, including ClientLogin authentication. Since Ngeblog 0.2 now uses the modified version of Zend_Gdata, the files is getting larger and it is hard for me to put Ngeblog 0.2 to phpclasses. …

Ngeblog as Google Code Featured Project

I’ve just found out this morning that Ngeblog has been chosen as one of Google Code Featured Project. download the company men dvdrip real top gear apocalypse movie download Although it’s not really accurate, since i haven’t used Zend GData yet, and it hasn’t supported AuthSub, but thanks anyway. I take that as a suggestion. …

PHPSecInfo: Alternatif PHPINFO()

Seperti saya tulis sebelumnya, PHPINFO() adalah tool ampuh buat programmer seperti kita yang menggunakan jasa shared hosting. Hanya saja kita perlu lebih hati-hati untuk tidak membiarkannya terbuka begitu saja untuk dibaca orang lain. Tool serupa yang bisa kita gunakan, khususnya pengguna jasa shared hosting adalah PHPSecInfo(). Tampilannya mirip dengan PHPINFO(), hanya saja informasi yang ditampilkan …

Ngintip PHPINFO()

Seperti saya tulis dalam posting sebelumnya, beberapa hari lalu tim pengembang PHP telah merilis PHP versi 5.2 yang merupakan versi paling stabil dari seri 5.x. Banyak perbaikan dan penyempurnaan yang dilakukan oleh mereka, termasuk dan terutama dari sisi security. Oleh karena itu sangat dianjurkan bagi pemakai PHP, khususnya penyedia jasa hosting, untuk mengupgrade PHP mereka …

ClientLogin Authentication for Zend GData

As i mentioned in my previous post, i was going to add AuthSub authentication for Ngeblog when people at Google Code team announced that Zend framework now has GData support.

After played around with it for hours, i finally got into a decision to use Zend Gdata for abstracting Ngeblog connection to Blogger. Unfortunately, Zend GData class library only supports AuthSub authentication, while Ngeblog already uses ClientLogin authentication and works fine this far.

So, to make it available for both type of authentication, i finally sat down and wrote some codes myself to add ClientLogin support for Zend GData. You can download the bundle in .zip here or in .tgz here which contains both Zend_Gdata bundle and my Zend_Gdata_ClientLogin class for ClientLogin authentication. Try getauthdemo.php to see how my ClientLogin class works.