Sometimes, doing lampp restart wont get rid of all the httpd procs.
So, here is a little handy killall.sh script to do just that. Enjoy!
ps -C httpd|sed -e 's/^\ \+//g' | grep httpd|awk '{print $1}'\
do
done