I used the PHP error_log function for the first time today.
This function doesn’t seem to be implemented at jsphp.co. Maybe I’ll implement it?
I was working with phpMyAdmin and I got the following error:
File upload error - unable to create a temporary file in Unknown on line 0
The problem was that the upload_tmp_dir setting in my php.ini file was specified twice. Once up the top of the file where I was editing it, and then later in the file where I didn’t see it. So the setting I wanted wasn’t being applied. If you get this error double check you’ve only got one setting for upload_tmp_dir.
On my list of things to do (at a rather low priority) is learning more about how to convert html to text in php.
Learned how to Disable CSS on Firefox. It’s in View -> Page Style.
Learning about how to enable and disable script in firefox. Tools -> Options -> Content -> Enable JavaScript.
Been learning about the Data URI scheme. That’s what you use to embed image data in HTML or CSS.
I used the CSS content Property for the first time the other day. You’d have to wonder where I’ve been…
I found Command Line svn:ignore a file while I was looking to do just that.
On the Gnu Privacy Guard Howto I learned how to create a revocation certificate for my public key:
$ gpg --output revoke.asc --gen-revoke $GPGKEY
Where $GPGKEY is the Key-ID of a certificate in your system.
Today I learned about the php_ini_loaded_file function. It returns the path to the php.ini file if one is loaded. This function is implemented in JavaScript at jsphp.co, but the implementation isn’t very interesting.