an error occurred while processing this directive
today i faced this problem "an error occurred while processing this directive" after uploading new drupal website using justhost.com hosting company, it turns out just a permission issue with files, i changed it to 755 and error disappeared
Delete .svn folders recursively using command line
some times i work on small projects with friends and we use Subversion to track and store code changes, collaborate, and share project files so once we finish we usually upload it somewhere by copying the whole project folder so i face that subversion makes folder inside each folder in the project called ".svn" and that take time to remove manually and unnecessary size to upload
so i run a command inside the project folder to remove that folders recursively before upload.
Run this:
find . -name .svn -exec rm -rf {} \;
Mount and Unmout ISO Files in Ubuntu
Mount ISO File
First you need to make the directory to put the ISO file into using the following command
sudo mkdir /media/isodir
Then use following command
sudo mount your_image_file.iso /media/isodir/ -t iso9660 -o loop
Now you should have your iso file mounted, and accessible from your desktop.
Unmount ISO File
Just use following command
sudo umount /media/isodir




