Older news is archived here.
XBitHack onThis turns on SSI parsing for any file with its execute-bit attribute set. So, I have set 'test.html' to attributes 755 -- that should be ok shouldn't it? I don't see how setting the owner's execute bit compromises security. At least, in Hostgator its ok I think -- Servage on the other hand has all the files owned by 'nobody'.
# export CPPFLAGS="-I/usr/include/seamonkey -I/usr/X11R7/include"Probably if I had added '-I/usr/include/seamonkey/nspr' to CPPFLAGS then the modification to 'npapi.h' would not have been needed.
# export LDFLAGS="-L/usr/lib/seamonkey -L/usr/X11R7/lib -lXinerama"
# ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --build=i486-t2-linux-gnu --disable-integration-wizard --with-spidermonkey=/usr/include/seamonkey/js --without-dbus --without-hal
# make
Error:
In file included from plugin.c:54:
npapi.h:45:21: error: prtypes.h: No such file or directory
I edited 'npapi.h':
/* BK change, this is a seamonkey file...
#include <prtypes.h> */
#include <nspr/prtypes.h>
...then 'make' worked.
# new2dir make install
# gxine /mnt/hda3/sources/media-test/TSS_Lindows.rmthen Gxine starts but does not play the video. (Note though, other files like WMV and AVI play fine). However, if I start it with a fully-qualified URI like this:
# gxine file:///mnt/hda3/sources/media-test/TSS_Lindows.rmThat's it, it plays! I do vaguelly recall this bug being reported, but at the time I didn't have a clue why it would make any difference clicking on the file in ROX-Filer to start it compared with 'File -> Open inside Gxine.
umount $MNTPTIt works. With a zombie 'gftp' process I was able to unmount the partition using Pmount. This is great, after so many years I have finally solved this problem!
#v3.99 fix zombie process prevents partition unmount, invisible to fuser...
if [ $? -ne 0 ];then
ZOMBIES="`ps -H -A | grep '<defunct>' | sed -e 's/ /|/g' | grep -v '|||' | cut -f 1 -d ' ' | tr '\n' ' '`"
for ONEZOMBIE in $ZOMBIES
do
echo "Killing parentless zombie process $ONEZOMBIE"
kill $ONEZOMBIE
done
umount $MNTPT
fi
Older news is archived here.