I'm having some trouble installing Omeka on Debian Etch running PHP5.2 and Apache 2.x.
When I navigate to omeka in my browser the page loads blank and neither PHP or Apache logs an error. mod_rewrite is enabled and I have .htaccess files in /admin and in Omeka's root directory. I've also tested PHP and PHP's error reporting and everything seems to check out.
I've been able to successfully install Omeka on my Mac's MAMP stack but no luck on the Debian web server. Here are the contents of my .htaccess files (if this is any help):
omeka root:
IfModule mod_php5.c>
php_value display_errors 1
php_flag zlib.output_compression On
php_flag register_globals off
php_value zlib.output_compression_level 5
</IfModule>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d [OR]
RewriteCond %{REQUEST_URI} .+\/archive\/
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
<FilesMatch "\.(php|ini)$">
Order Allow,Deny
Deny from all
</FilesMatch>
/admin:
php_value display_errors 1
php_flag zlib.output_compression On
php_value zlib.output_compression_level 5
RewriteEngine on
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
This matches the .htaccess files on my successful MAMP stack install. I wish I had more information to give but this is all rather perplexing!
Thanks so much!