Monthly Archives: September 2006

How many seconds in a decade?

Someone asked me recently, how many second in a decade? I reached for the calculator, and he said, “No, do it in your head, estimate.” “Ah,” I thought, “a brain teaser, I love these!” Share This Post On:u=http://www.koopman.me/2006/09/how-many-seconds-in-a-decade/&title=How+many+seconds+in+a+decade%3F” title=”Share ‘How … Continue reading

Posted in Uncategorized | Leave a comment

Repeating same name parameters with nusoap

This article assumes you have a background with nusoap. Start by reading a nusoap tutorial or two, suggest http://www.zend.com/zend/tut/tutorial-campbell.php and http://www.scottnichol.com/nusoapprogwsdl.htm I’m going to setup a soap server to except parameters. The method will do something silly, the point is … Continue reading

Posted in Code | Leave a comment

Create a Basic Password Protected web directory

.htaccess   AuthUserFille /path/to/file.htpasswdAuthGroupFile /dev/nullAuthName “Secret Section”AuthType Basic require valid-user Then create the password file: /etc/httpd/bin/htpasswd -bcm /path/to/file.htpasswd dave mypass   Share This Post On:u=http://www.koopman.me/2006/09/create-a-basic-password-protected-web-directory/&title=Create+a+Basic+Password+Protected+web+directory” title=”Share ‘Create a Basic Password Protected web directory’ on BlueDot”>

Posted in Uncategorized | Leave a comment

libphp4.so and libphp5.so at the same time?

I tried running both libphp4.so and libphp5.so modules at the same time by putting this in my /etc/httpd/conf.d/php.conf file: LoadModule php5_module modules/libphp5.soLoadModule php4_module modules/libphp4.so AddHandler php5-script .phpAddHandler php-script .php4AddType text/html .phpAddType text/html .php4 Doesn’t work… apache will restart, but any … Continue reading

Posted in Uncategorized | Leave a comment