I host my own web content and use Solaris 11.1 on amd64 platform. Thus far so good. However the habari project has not gone smoothly. I have two possible issues. One is PHP 5.3 running concurrently with PHP 5.2 which is required on another bit of software. The next is the nagging error message when I attempt to start the install. I have searched for the issues, and verified the requisite configuration is installed, yet the install fails to run.
1. My Apache server *does* have mod_rewrite enabled for the virtualhost that contains Habari. mod_rewrite is required for Habari to functions. Verify that mod_rewrite is installed and enabled on your server. 2. Your Apache configuration does not allow .htaccess to override configuration options in the virtualhost. The virtualhost in which Habari is installed should include the "AllowOverride FileInfo" directive for the directory that contains the Habari files. This will allow Habari's .htaccess file to properly handle incoming URLs. (Consult the AllowOverride<http://httpd.apache.org/docs/2.2/mod/core.html#allowoverride>documentation for further details on the AllowOverride directive.) *LoadModule rewrite_module libexec/mod_rewrite.so* is the last line in the file and the 64 bit is correctly done. my .htaccess file: ### HABARI START RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !=/favicon.ico RewriteBase /habri RewriteRule . index.php [PT] RewriteRule ^(system/(classes|handlers|locale|schema|$)) index.php [PT] ### HABARI END What have I missed? David *Please send responses to [email protected]* -- -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/habari-users --- You received this message because you are subscribed to the Google Groups "habari-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
