June 24th, 2009
I might have just read the best description of how companies should approach “Social Media” ever. My department has been constantly talking about how best to reform their curriculum to incorporate social media. Great. The part the kills me is the floundering for a purpose or point. I’m not sure I have much steam left for the whole “We need to teach Twitter!” and “What is Twitter?” conversation. Seriously? Teach Twitter? You set up and account, and then you type. I’m sure most 12 year olds can figure this one out pretty easily. Just make sure that once the accounts are set up, there’s a point to write about!
Anyway, Quote of the Week is courtesy of John C. Welch on Social Media:
If you make it more complicated than that as a concept, stop. You’re about to go off the cliff into New Media Douchebaggery, and you don’t want that. Ever.
Perfect.
Tagged as New Media, Social Media, Twitter, Web 2.0
Posted in General Computing, Random Thoughts | No Comments »
June 16th, 2009
Several versions of WordPress ago, I started sporadically encountering a problem while trying to use the Flash uploader in WordPress. Every time I tried to upload something using the Flash uploader, I would just get this HTTP Error message:

I searched for a solution to the problem and found that it was a bug in one of the older versions of WordPress. Now, several versions later, it’s still happening. I’ve seen it on both WordPress 2.7 and WordPress 2.8. More Googling revealed several tips about about adding directives to the .htaccess file. I tried each of them, but with no success.
The most puzzling part of this problem for me was that I have several different installations of WordPress on different servers and different versions, but this error was only happening on some of them. After I actually sat down and thought about the problem, I realized that the error was only occurring on the WordPress installations that I had set to be private through the authorization control using my .htaccess files. Those sites have an .htaccess file in the root directory which starts with something like this:
AuthName "private site"
AuthType Basic
AuthUserFile /home/private/.htpasswd
Require valid-user
This causes a dialog box to pop up when you try to go to the site. You have to specify a correct username and password, as specified in the .htpasswd file, in order to gain access to the site.
After realizing there might be a connection with this, I tested using the flash uploader on one of my sites with the htaccess authentication turned off. Sure enough, it worked like a charm. So after realizing that the HTTP Error was definitely related to this, a solution was easier to find.
The solution that worked for me was to create an .htaccess file in the wp-admin directory. The htaccess file should have the following rules in it:
AuthType Basic
AuthName share
Satisfy Any
Order deny,allow
Allow from all
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
Since adding this file, I’ve been using the image uploader on my protected sites without a problem.
Tagged as Authentication, Fixes, htaccess, HTTP Error, Image Uploader, Tips, WordPress
Posted in Web Design | 1 Comment »
April 27th, 2009
Excellent looking course syllabus and overview for Internet-Age Writing. The class is ENG 371WR: Writing for Nonreaders in the Postprint Era.
Week 4 looks excellent:
Week 4:
The Kindle Question
Is Amazon’s wireless reading device the Segway of handheld gadgets? Should it be smaller, come with headphones, and play MP3s instead of display book text? Students will discuss.
Also not to be missed are the course electives.
Via Kottke.org.
Tagged as Blogging, Education, Humor, Reading, Twitter, Writing
Posted in Random Thoughts | No Comments »