Skeleton is a CMS Made Simple module you can use as the base for writing a new module. It has all the basic code in place already.
Monthly Archives: January 2010
Convert Filenames to Lowercase on Linux
If you transfer files from a Windows server to a Linux one, you may get some broken links because Linux is case-sensative while Windows isn’t. You can rename all the files on the Linux server to their lowercase equivalents with this shell script from Linux Journal. #!/bin/sh # lowerit # convert all file names in […]