↧
Delete all .SVN folders and files from a directory
Nice DOS command script to remove all .svn files and folders. Some guy’s don’t know already the export function of SVN… for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do ( rd /s /q "%%i" )
View ArticleNightly backup your WordPress database and files
After rading Using a Cron job to keep things safe I didn’t found this really a complete procedure as it only backup the database… I think it’s better to backup everything at once and we usually have...
View ArticleWordPress bash deployment script
Recently in my current company we had a client asking for a restaurant website. We’ve decided to do it with WordPress and used it as a CMS instead of a blog. Beside the fact that we needed to create...
View Article