Tag Archive | "scripts"

Best Free PHP Forum Script

Saturday, February 9, 2008

1 Comment

The best PHP forum software has got to be vBulletin, because it has unparalleled features and support. The only problem is it costs over a hundred dollars. So that may be a problem if you’re just starting out. It used to be that the single largest competitor to vBulletin was phpBB, but it’s no longer [...]

Continue reading...

Recursively Delete Files and Retain Folders in Windows

Thursday, January 3, 2008

1 Comment

I was trying to delete all files in the current directory and all subdirectories, while keeping the directory structure intact. I found that I could use the following DOS command to recursively delete files, and NOT touch the directories: ending in .doc del /s *.doc Do note though, that ALL files with the extension doc [...]

Continue reading...