This is the correct link to use: http://www.mochabomb.com/blog/archives/109 Any help with this would be appreciated.
Thanks
Gregg
I tried adding “SecFilterEngine Off” but then my php code with ExecPHP was plain-text displaying – found this worked – use nested includes – see my post here – http://mochabomb.com/blog/archives/107
Here is a script I wrote and tested to set the perms to
644 for files and 755 for directories
Let me know if an issue is found..
========= cut below ==========
#!/bin/sh
# save in your wordpress dir, run from there.
# Script to lock down wordpress
#
for file in 'backtick'find . -print | grep -v htaccess'backtick'; do
# If its a file, 644 perms
if [ -f $file ]; then
chmod 644 $file
fi
# if its a dir, 755 perms
if [ -d $file ]; then
chmod 755 $file
fi
done
=========== cut above =============
** Replace ‘backtick’ with the actual backtick character – how do I show this in this post?