Monthly Archives: February 2008

SQLite for PHP Compile Error and Fix

Trying to create an SQLite module in with pecl resulted in   /tmp/tmpb8wKoA/SQLite-1.0.3/sqlite.c  -fPIC -DPIC -o .libs/sqlite.o /tmp/tmpb8wKoA/SQLite-1.0.3/sqlite.c:56: error: ‘BYREF_NONE’ undeclared here (not in a function) /tmp/tmpb8wKoA/SQLite-1.0.3/sqlite.c:56: error: ‘BYREF_FORCE’ undeclared here (not in a function) /tmp/tmpb8wKoA/SQLite-1.0.3/sqlite.c:125: warning: initialization from incompatible … Continue reading

Posted in Uncategorized | Leave a comment

Amazon S3 Tools, Using PHP

If you haven’t heard of Amazon S3, check it out here. It’s remote storage for your files, at $0.15 per GB per month. You sign up for an account for free, then pay at the end of each month for … Continue reading

Posted in Code | 1 Comment

Store a file on Amazon’s S3 service

s3put.php:Note: This file requires:pear install Crypt_HMACpear install HTTP_Request Share This Post On:u=http://www.koopman.me/2008/02/store-a-file-on-amazons-s3-service/&title=Store+a+file+on+Amazon%26%238217%3Bs+S3+service” title=”Share ‘Store a file on Amazon’s S3 service’ on BlueDot”>

Posted in Code | Leave a comment

Cisco Data Center Technology Forum

Yesterday, 2008-02-06, I attended this conference at the Phoenix Ritz Carlton. Cisco treated its attendees very nicely, with gourmet lunch, coffee, tea, soda, desert and snacks. The venue was also exciting: 1130-12 Registration 12-1 Data Center 3.0 Overview 1-2 Cisco … Continue reading

Posted in Uncategorized | Leave a comment

Index for God Sake!

Taken from: http://mysqlhow2.com/viewtopic.php?t=8 If you have a database that is returning slow result you might want to optimize your queries and do indexing. But how to tell which of the queries need to be optimized. Lets look at the rulsts … Continue reading

Posted in Uncategorized | 1 Comment