Several reasons can cause this: You dont have apache rewrite module installed.... run a2enmod rewrite and restart apache You dont have "AllowOverride All" in the apache config file. To fix: Find the appropriate section in the apache config (for example, in ubuntu, /etc/apache2/sites-enabled/000-default) Find the directory section where wordpress is installed (example: <Directory /var/www/wordpress> Ensure the line AllowOverride All … Continue reading Why your wordpress install returns 404
Inotify, ubuntu and trash
I ran into an issue while monitoring an ubuntu machine's file system activity using python's implementation of Inotify (pyinotify) and it's awesome big brother, the "watchdog" python library. If you havent checked out watchdog for monitoring file system events - you're seriously missing out. Catch up on it here: http://pythonhosted.org/watchdog/ https://github.com/gorakhargosh/watchdog The watchdog library worked … Continue reading Inotify, ubuntu and trash
You must be logged in to post a comment.