- Details
* Rsync files to the new location
* Change Apache root folder settings
* Redo web directory protection entries
* Update Joomla core configuration (global settings)
* Update Akeeba backup configuration
* Rename old folder to ensure nothing is still using it
Checks
* Run Akeeba backup and make sure it saves to the new path
* Search Joomla database for anything using the old path
- Details
SPF is awesome for stopping delivery of spoofed spam and junk back-scatter, but many of the articles on how to set up SPF in Zimbra are old and out-of-date. It took a bit of research and trial-and-error, but I finally got it working.
Read more: Setting Up SPF on Zimbra Running on Ubuntu
- Details
My Toshiba 37Z2000 TV has a cool feature that allows me to record TV over my network to a CIFS (aka Samba) file share on my FreeNAS server. Unfortunately, however, the TV is extremely sensitive when it comes to the settings on the server. Upgrading FreeNAS to a newer version almost always broke the TV recording feature because new features & settings would be introduced. Here's a summary of what I painstakingly discovered.
Read more: Toshiba 37Z2000 TV - Sensitive CIFS Settings on FreeNAS
- Details
There was a recent issue where the Playstation 3 Netflix app stopped working with Getflix--a service I use to watch Netflix here in Japan. Fortunately, Getflix took swift action and resolved the issue. Unfortunately, the issue was resolved for everyone except me!
I wasn't overly surprised since I have an awesomely powerful (yet complex) UTM firewall called PFSense. I targeted the settings for Squid--a proxy / cache server. My hunch paid off...here's the fix if you happen to be the 0.01% of Getflix users in the same boat as I.
Read more: Getflix - Netflix Still Not Working on PS3
- Details
I wanted to figure out a way to quickly and easily combine an image file (jpg) and audio file (mp3) into a video file (mov) using the free media converter tool ffmpeg. This would allow me to upload my podcast episodes and songs to YouTube. After extensive googling and testing I found the combination that finally worked. And since I'm such a nice dude, I'll share it with you:
ffmpeg -loop 1 -i image-file.jpg -i audio-file.mp3 -shortest -acodec copy -f mov video-file.mov
Notes
* The above is on Ubuntu Server 12.04 LTS. Other ffmpeg versions may require tweaking of command options, hence the reason this took me extensive research and testing.
* Ffmpeg accepts a very wide range of file formats, so png, aif, wav, etc. can also be used.
UPDATE
* On Ubuntu at least, ffmpeg has been replaced by the avconv command; however, the exact same command format above works with avconv. Here it is again for copy/paste convenience:avconv -loop 1 -i image-file.jpg -i audio-file.mp3 -shortest -acodec copy -f mov video-file.mov
* Here's how to install avconv:apt-get install libav-tools
* Working fine on Ubuntu 14.04 LTS
- Details
Read more: Computing in Japanese - Dealing with Mojibake