<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Forums Tag: .htaccess</title>
<link>http://omeka.org/forums/</link>
<description>Forums Tag: .htaccess</description>
<language>en</language>
<pubDate>Fri, 05 Sep 2008 17:49:16 +0000</pubDate>

<item>
<title>Fritz on "Still getting 404s and whitepages with install"</title>
<link>http://omeka.org/forums/topic/still-getting-404s-and-whitepages-with-install#post-581</link>
<pubDate>Fri, 08 Aug 2008 16:48:30 +0000</pubDate>
<dc:creator>Fritz</dc:creator>
<guid isPermaLink="false">581@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I'm getting a 500 error that says &#38;lt;Directory not allowed in the .htaccess file. Is there another way to get those commands into the file without putting it into the directory tag?
&#60;/p&#62;</description>
</item>
<item>
<title>ammon on "Still getting 404s and whitepages with install"</title>
<link>http://omeka.org/forums/topic/still-getting-404s-and-whitepages-with-install#post-580</link>
<pubDate>Fri, 08 Aug 2008 16:07:04 +0000</pubDate>
<dc:creator>ammon</dc:creator>
<guid isPermaLink="false">580@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Fritz,&#60;/p&#62;
&#60;p&#62;Try adding this to the bottom of your .htaccess file.&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
&#38;lt;Directory /home/web/manchester-press.com/data&#38;gt;&#60;br /&#62;
        Options -MultiViews -Includes -FollowSymLinks -Indexes&#60;br /&#62;
        Order Deny,Allow&#60;br /&#62;
        Allow from all&#60;br /&#62;
&#38;lt;/Directory&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This will disable the options set in the apache conf file. This might be necessary because MultiViews, if it can't find a file or directory, kind of makes one up. You'll also want to disable Indexes, so that the directory structure is not visible. Includes (server side includes) are pretty insecure, so it's also best to disable those.  You probably won't have any symbolic links to worry about, so it's safe to disable that as well.&#60;/p&#62;
&#60;p&#62;Let us know if that works or does not.
&#60;/p&#62;</description>
</item>
<item>
<title>Fritz on "Still getting 404s and whitepages with install"</title>
<link>http://omeka.org/forums/topic/still-getting-404s-and-whitepages-with-install#post-575</link>
<pubDate>Thu, 07 Aug 2008 15:13:00 +0000</pubDate>
<dc:creator>Fritz</dc:creator>
<guid isPermaLink="false">575@http://omeka.org/forums/</guid>
<description>&#60;pre&#62;&#60;code&#62;&#38;lt;Directory &#38;quot;/home/web/manchester-press.com/data&#38;quot;&#38;gt;
    Options Indexes FollowSymLinks MultiViews Includes
    AllowOverride All
    Order allow,deny
    Allow from all
  &#38;lt;/Directory&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;My sysadmin reports that the above is my entry in the .conf file. Is there anything in this that could be killing the omeka install?
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Still getting 404s and whitepages with install"</title>
<link>http://omeka.org/forums/topic/still-getting-404s-and-whitepages-with-install#post-563</link>
<pubDate>Mon, 28 Jul 2008 23:49:31 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">563@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I googled that apache error, and it may have something to do with your server settings not allowing access to that directory.  I'm still not sure what would be wrong, but you could try adding something like this to your httpd.conf file:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;directory /home/web/manchester-press.com/data&#38;gt;
allow from all
&#38;lt;/directory&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Fritz on "Still getting 404s and whitepages with install"</title>
<link>http://omeka.org/forums/topic/still-getting-404s-and-whitepages-with-install#post-562</link>
<pubDate>Thu, 24 Jul 2008 20:11:30 +0000</pubDate>
<dc:creator>Fritz</dc:creator>
<guid isPermaLink="false">562@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Kris:&#60;/p&#62;
&#60;p&#62;Thanks so much for the quick reply.&#60;/p&#62;
&#60;p&#62;I commented the FilesMatch section, and that got test.php to work with .htaccess present, but other than that, nothing has changed. I commented the zlib lines out, and I am still hitting a plain white page. I am not getting errors on screen, or in the logs.&#60;/p&#62;
&#60;p&#62;And yes, php_value display_errors 1 is in my .htaccess file.&#60;/p&#62;
&#60;p&#62;I am stuck.&#60;/p&#62;
&#60;p&#62;-Fritz
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Still getting 404s and whitepages with install"</title>
<link>http://omeka.org/forums/topic/still-getting-404s-and-whitepages-with-install#post-561</link>
<pubDate>Thu, 24 Jul 2008 15:28:49 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">561@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Is this the line you have in your .htaccess to display errors?&#60;/p&#62;
&#60;p&#62;&#60;code&#62;php_value display_errors 1&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Also, the .htaccess file for Omeka won't let you access scripts other than index.php, since the entire application is routed through that.  To get around that in order to try loading a test.php file, you should comment out the following:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;FilesMatch &#38;quot;\.(php&#124;ini)$&#38;quot;&#38;gt;
 Order Allow,Deny
 Deny from all
&#38;lt;/FilesMatch&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Be sure to uncomment it again after you get Omeka working.&#60;/p&#62;
&#60;p&#62;One other thing I can think of is, try taking out the lines with &#60;code&#62;php_flag zlib&#60;/code&#62; in them.  Let me know if any of that helps.
&#60;/p&#62;</description>
</item>
<item>
<title>Fritz on "Still getting 404s and whitepages with install"</title>
<link>http://omeka.org/forums/topic/still-getting-404s-and-whitepages-with-install#post-558</link>
<pubDate>Wed, 23 Jul 2008 22:18:49 +0000</pubDate>
<dc:creator>Fritz</dc:creator>
<guid isPermaLink="false">558@http://omeka.org/forums/</guid>
<description>&#60;p&#62;My sysadmin has set AllowOverrides ALL in httpd.conf, and I have checked that mod-rewrite is installed in my PHP config (http://www.manchester-press.com/test.php), but when I have the .htaccess file in my root folder, then nothing works: the omeka php files just give me the whitepage, and even test.php which I introduced doesn't work.&#60;/p&#62;
&#60;p&#62;Basically, I have the server configured as asked, and when I place the .htaccess file into the root folder, all of the php goes dead.  &#60;/p&#62;
&#60;p&#62;I've also made sure that the .htaccess has the code telling php to give me error messages, but that does nothing at this point.&#60;/p&#62;
&#60;p&#62;what else can I ask my sysadmin to do? I check the error logs and all I get is stuff like this (only when .htaccess is present):&#60;/p&#62;
&#60;p&#62;[Tue Jul 22 18:57:28 2008] [error] [client 76.232.149.226] client denied by server configuration: /home/web/manchester-press.com/data/test.php
&#60;/p&#62;</description>
</item>
<item>
<title>TemporaryLogin on "Bluehost hosting and issues with pdo_mysql, .htaccess, and php.ini"</title>
<link>http://omeka.org/forums/topic/bluehost-hosting-and-issues-with-pdo_mysql-htaccess-and-phpini#post-543</link>
<pubDate>Fri, 18 Jul 2008 16:30:03 +0000</pubDate>
<dc:creator>TemporaryLogin</dc:creator>
<guid isPermaLink="false">543@http://omeka.org/forums/</guid>
<description>&#60;p&#62;The script you need to propagate php.ini through Bluehost (and probably a zillion other ISPs) is this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
'&#38;lt;?php system(&#34;find * -type d&#124;xargs -i cp --verbose php.ini {}/.&#34;); ?&#38;gt;'&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;(Not certain if I actually have the correct 'backtick' character. Copy and paste from the left '&#38;lt;' to the right '&#38;gt;' and you'll be fine. The allowed markup of &#60;code&#62;&#60;/code&#62; should have it covered, so I am confused about the need to use the backticks at all. Perhaps this page is interpreted and this is a safety check to make certain that 'live code' doesn't run accidentally?)&#60;/p&#62;
&#60;p&#62;Place it on a text page all by itself and give it a name that ends in &#34;php&#34;, such as &#34;somename.php&#34;.  Give it, and php.ini file attributes of 755 on a Unix-based server.&#60;/p&#62;
&#60;p&#62;Then, surf to that page with your browser. &#60;/p&#62;
&#60;p&#62;Your screen should fill up with all the zillions of places the php.ini file has been copied to.&#60;/p&#62;
&#60;p&#62;You should be able to drop to 700 for &#34;somename.php&#34; after execution, but php.ini needs to remain executable.&#60;/p&#62;
&#60;p&#62;I ran into the identical problem while installing &#34;Magento&#34; (e-commerce software rumored to be quite good). I traded the pdo_mysql error message for a blank screen. Ah well, onward and upward!&#60;/p&#62;
&#60;p&#62;My copy of .htaccess does not have a line about php_value in it at all. So I would ask the original poster to download a copy of the php.ini file and the .htaccess file he is using  and, using a text editor, perform a search for the php_value string. It would bring him great glory and honor and international acclaim if he would close the loop he has opened by reporting the full resolution.
&#60;/p&#62;</description>
</item>
<item>
<title>anarchivist on "Omeka 0.9.0 installation and troubleshooting tips - GSU Library Case"</title>
<link>http://omeka.org/forums/topic/omeka-090-installation-and-troubleshooting-tips-gsu-library-case#post-478</link>
<pubDate>Wed, 11 Jun 2008 04:58:11 +0000</pubDate>
<dc:creator>anarchivist</dc:creator>
<guid isPermaLink="false">478@http://omeka.org/forums/</guid>
<description>&#60;p&#62;The issue is point 3.3 - I'll post to the dev list.
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Omeka 0.9.0 installation and troubleshooting tips - GSU Library Case"</title>
<link>http://omeka.org/forums/topic/omeka-090-installation-and-troubleshooting-tips-gsu-library-case#post-477</link>
<pubDate>Tue, 10 Jun 2008 22:48:31 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">477@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I'm not sure which part of this list needs to be fixed.  Maybe you could give a bit more info?  We haven't run into any of these errors on our server (except the email bug, which was fixed in the stable-0.9 branch).  What sort of problems are you having?  If we can't replicate it, maybe you could help us out and try patching it and posting that to the dev list?  Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>anarchivist on "Omeka 0.9.0 installation and troubleshooting tips - GSU Library Case"</title>
<link>http://omeka.org/forums/topic/omeka-090-installation-and-troubleshooting-tips-gsu-library-case#post-476</link>
<pubDate>Tue, 10 Jun 2008 21:20:57 +0000</pubDate>
<dc:creator>anarchivist</dc:creator>
<guid isPermaLink="false">476@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Please, please, PLEASE fix this in stable-0.9 if not 0.9.1.1 - this is a blocker.
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Bluehost hosting and issues with pdo_mysql, .htaccess, and php.ini"</title>
<link>http://omeka.org/forums/topic/bluehost-hosting-and-issues-with-pdo_mysql-htaccess-and-phpini#post-437</link>
<pubDate>Thu, 29 May 2008 13:33:54 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">437@http://omeka.org/forums/</guid>
<description>&#60;p&#62;That error means that you need to enter the correct MySQL login credentials into your db.ini file.  An access denied error only happens when the username/password/host doesn't authenticate properly.
&#60;/p&#62;</description>
</item>
<item>
<title>mpwakeford on "Bluehost hosting and issues with pdo_mysql, .htaccess, and php.ini"</title>
<link>http://omeka.org/forums/topic/bluehost-hosting-and-issues-with-pdo_mysql-htaccess-and-phpini#post-435</link>
<pubDate>Tue, 27 May 2008 21:38:52 +0000</pubDate>
<dc:creator>mpwakeford</dc:creator>
<guid isPermaLink="false">435@http://omeka.org/forums/</guid>
<description>&#60;p&#62;So I think I've installed things correctly, on Bluehost, but when I hit the install link I&#34;m getting this:&#60;/p&#62;
&#60;p&#62;MySQL connection error: [1045]&#60;/p&#62;
&#60;p&#62;Access denied for user &#60;a href=&#34;mailto:MYUSERNAME@'box363.bluehost.com'&#34;&#62;MYUSERNAME@'box363.bluehost.com'&#60;/a&#62; (using password: YES)&#60;/p&#62;
&#60;p&#62;Please refer to Omeka documentation for help.&#60;/p&#62;
&#60;p&#62;Am I missing something simple?
&#60;/p&#62;</description>
</item>
<item>
<title>SheilaBrennan on "Bluehost hosting and issues with pdo_mysql, .htaccess, and php.ini"</title>
<link>http://omeka.org/forums/topic/bluehost-hosting-and-issues-with-pdo_mysql-htaccess-and-phpini#post-413</link>
<pubDate>Mon, 12 May 2008 02:18:38 +0000</pubDate>
<dc:creator>SheilaBrennan</dc:creator>
<guid isPermaLink="false">413@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Chris G.&#60;br /&#62;
Glad to hear all is working well with the newest version.&#60;br /&#62;
Sheila
&#60;/p&#62;</description>
</item>
<item>
<title>ChrisG on "Bluehost hosting and issues with pdo_mysql, .htaccess, and php.ini"</title>
<link>http://omeka.org/forums/topic/bluehost-hosting-and-issues-with-pdo_mysql-htaccess-and-phpini#post-412</link>
<pubDate>Sun, 11 May 2008 17:45:23 +0000</pubDate>
<dc:creator>ChrisG</dc:creator>
<guid isPermaLink="false">412@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I attempted a clean install of Omeka 0.9.1.1 this morning on Bluehost and everything is up and running without problem.  I tried, unsuccessfully, a couple months ago to install on Bluehost and encountered the same problems as described in previous postings.  Not sure if this release resolved the issues or if Bluehost made server adjustments.  Either way the install went smoothly and without error.
&#60;/p&#62;</description>
</item>
<item>
<title>jgreenberg on "Omeka 0.9.0 installation and troubleshooting tips - GSU Library Case"</title>
<link>http://omeka.org/forums/topic/omeka-090-installation-and-troubleshooting-tips-gsu-library-case#post-393</link>
<pubDate>Sat, 26 Apr 2008 15:31:39 +0000</pubDate>
<dc:creator>jgreenberg</dc:creator>
<guid isPermaLink="false">393@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Just a data point - I needed to do 3.3 in a new installation of 0.9.1.1 in order to get file uploading working as well...
&#60;/p&#62;</description>
</item>
<item>
<title>Martinis on "Funny characters without editing the .htaccess"</title>
<link>http://omeka.org/forums/topic/funny-characters-without-editing-the-htaccess#post-355</link>
<pubDate>Tue, 15 Apr 2008 12:08:53 +0000</pubDate>
<dc:creator>Martinis</dc:creator>
<guid isPermaLink="false">355@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Okay, that's great.
&#60;/p&#62;</description>
</item>
<item>
<title>veehikle on "500 Internal Server Error"</title>
<link>http://omeka.org/forums/topic/500-internal-server-error#post-343</link>
<pubDate>Sat, 12 Apr 2008 18:25:05 +0000</pubDate>
<dc:creator>veehikle</dc:creator>
<guid isPermaLink="false">343@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Thanks. Wiped clean and started over with the new .9.1.1 version. Now we get a new error.&#60;/p&#62;
&#60;p&#62;The install part of the process was fine. When I go to the admin portion of the configuration I type &#60;a href=&#34;http://www.historicalsocietyofsomersethills.org/omeka/admin&#34; rel=&#34;nofollow&#34;&#62;http://www.historicalsocietyofsomersethills.org/omeka/admin&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;It brings me to &#60;a href=&#34;http://www.historicalsocietyofsomersethills.org/omeka/admin/users/login&#34; rel=&#34;nofollow&#34;&#62;http://www.historicalsocietyofsomersethills.org/omeka/admin/users/login&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;instead and then tells me that the page is not found.&#60;/p&#62;
&#60;p&#62;The host is on Godaddy.com and I have all the proper sql and php.&#60;/p&#62;
&#60;p&#62;Any idea? My install is off the root directory in a directory called omeka. Is that a problem for the .htacess files?
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Funny characters without editing the .htaccess"</title>
<link>http://omeka.org/forums/topic/funny-characters-without-editing-the-htaccess#post-327</link>
<pubDate>Thu, 10 Apr 2008 18:34:31 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">327@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Thanks for the heads up.  That must happen if PHP doesn't have the zlib extension enabled.  That is not a life or death thing that Omeka needs to have enabled, so it would be better if that was left out of the .htaccess file and checked elsewhere.  I've got a ticket on Trac so we can take care of that for the next release.
&#60;/p&#62;</description>
</item>
<item>
<title>Martinis on "Funny characters without editing the .htaccess"</title>
<link>http://omeka.org/forums/topic/funny-characters-without-editing-the-htaccess#post-320</link>
<pubDate>Tue, 08 Apr 2008 09:43:16 +0000</pubDate>
<dc:creator>Martinis</dc:creator>
<guid isPermaLink="false">320@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I had to uncomment the two lines in .htaccess within mod_php5.c &#34;...zlib.output_compression...&#34;&#60;/p&#62;
&#60;p&#62;Otherwise the pages gave some funny output on the screen with &#34;random&#34; chars.&#60;/p&#62;
&#60;p&#62;Dunno if this issue could help someone else or if this is just the mistake of my serverconfiguration.&#60;/p&#62;
&#60;p&#62;Regards&#60;br /&#62;
Martinis
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "500 Internal Server Error"</title>
<link>http://omeka.org/forums/topic/500-internal-server-error#post-311</link>
<pubDate>Fri, 04 Apr 2008 16:51:45 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">311@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi, sorry for the delayed response, but could you upgrade your Omeka installation to the latest version (0.9.1)?  We've fixed some of the issues with the .htaccess file and it may no longer cause problems for you.  Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>veehikle on "500 Internal Server Error"</title>
<link>http://omeka.org/forums/topic/500-internal-server-error#post-241</link>
<pubDate>Sat, 15 Mar 2008 04:54:57 +0000</pubDate>
<dc:creator>veehikle</dc:creator>
<guid isPermaLink="false">241@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Tried logging in a bunch of times to the admin module....&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.historicalsocietyofsomersethills.org/omeka/admin/&#34; rel=&#34;nofollow&#34;&#62;http://www.historicalsocietyofsomersethills.org/omeka/admin/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This is what I'm getting....HELP&#60;/p&#62;
&#60;p&#62;[Fri Mar 14 17:41:32 2008] [error] [client 69.249.59.157] File does not exist: /var/chroot/home/content/v/e/e/veehikle1/html/events_news/spacer.gif&#60;br /&#62;
[Fri Mar 14 17:58:33 2008] [alert] [client 68.192.188.165] /var/chroot/home/content/v/e/e/veehikle1/html/omeka/admin/.htaccess: Invalid command 'php_value', perhaps mis-spelled or defined by a module not included in the server configuration&#60;br /&#62;
[Fri Mar 14 17:58:36 2008] [alert] [client 68.192.188.165] /var/chroot/home/content/v/e/e/veehikle1/html/omeka/admin/.htaccess: Invalid command 'php_value', perhaps mis-spelled or defined by a module not included in the server configuration&#60;br /&#62;
[Fri Mar 14 17:58:42 2008] [alert] [client 68.192.188.165] /var/chroot/home/content/v/e/e/veehikle1/html/omeka/admin/.htaccess: Invalid command 'php_value', perhaps mis-spelled or defined by a module not included in the server configuration&#60;br /&#62;
[Fri Mar 14 18:00:22 2008] [error] [client 74.6.18.164] Directory index forbidden by rule: /var/chroot/home/content/v/e/e/veehikle1/html/Images/photoarchive/&#60;br /&#62;
[Fri Mar 14 18:24:01 2008] [error] [client 74.6.18.138] Directory index forbidden by rule: /var/chroot/home/content/v/e/e/veehikle1/html/Images/photoarchive/&#60;br /&#62;
SoftException in Application.cpp:624: Could not execute script &#34;/home/content/v/e/e/veehikle1/html/cgi/discus&#34;&#60;br /&#62;
Caused by SystemException in API_Linux.cpp:430: execve() for program &#34;/home/content/v/e/e/veehikle1/html/cgi/discus&#34; failed: Permission denied&#60;br /&#62;
[Fri Mar 14 18:51:02 2008] [error] [client 74.6.18.154] Premature end of script headers: /var/chroot/home/content/v/e/e/veehikle1/html/cgi/discus&#60;br /&#62;
[Fri Mar 14 19:09:25 2008] [error] [client 65.55.104.14] File does not exist: /var/chroot/home/content/v/e/e/veehikle1/html/drafts/bb.php&#60;br /&#62;
[Fri Mar 14 19:12:28 2008] [error] [client 74.6.23.217] Directory index forbidden by rule: /var/chroot/home/content/v/e/e/veehikle1/html/Images/photoarchive/&#60;br /&#62;
[Fri Mar 14 21:46:59 2008] [alert] [client 68.192.188.165] /var/chroot/home/content/v/e/e/veehikle1/html/omeka/admin/.htaccess: Invalid command 'php_value', perhaps mis-spelled or defined by a module not included in the server configuration&#60;br /&#62;
[Fri Mar 14 21:47:06 2008] [alert] [client 68.192.188.165] /var/chroot/home/content/v/e/e/veehikle1/html/omeka/admin/.htaccess: Invalid command 'php_value', perhaps mis-spelled or defined by a module not included in the server configuration&#60;br /&#62;
[Fri Mar 14 21:48:31 2008] [alert] [client 68.192.188.165] /var/chroot/home/content/v/e/e/veehikle1/html/omeka/admin/.htaccess: Invalid command 'php_value', perhaps mis-spelled or defined by a module not included in the server configuration&#60;br /&#62;
[Fri Mar 14 21:48:38 2008] [alert] [client 68.192.188.165] /var/chroot/home/content/v/e/e/veehikle1/html/omeka/admin/.htaccess: Invalid command 'php_value', perhaps mis-spelled or defined by a module not included in the server configuration
&#60;/p&#62;</description>
</item>
<item>
<title>jackeyhong on "Omeka 0.9.0 installation and troubleshooting tips - GSU Library Case"</title>
<link>http://omeka.org/forums/topic/omeka-090-installation-and-troubleshooting-tips-gsu-library-case#post-231</link>
<pubDate>Mon, 10 Mar 2008 18:19:11 +0000</pubDate>
<dc:creator>jackeyhong</dc:creator>
<guid isPermaLink="false">231@http://omeka.org/forums/</guid>
<description>&#60;p&#62;A copy of this post can also be found at &#60;a href=&#34;http://www.library.gsu.edu/pages/pages.asp?ldID=111&#38;#38;guideID=0&#38;#38;ID=5410&#34; rel=&#34;nofollow&#34;&#62;http://www.library.gsu.edu/pages/pages.asp?ldID=111&#38;#38;guideID=0&#38;#38;ID=5410&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;GSU System Settings:&#60;br /&#62;
  Linux Suse Enterprise v10&#60;br /&#62;
  Apache 2.2.3&#60;br /&#62;
  MySQL 5.0&#60;br /&#62;
  PHP 5.2.5&#60;br /&#62;
  ImageMagick (with libjpeg library installed)&#60;/p&#62;
&#60;p&#62;Installation/Troubleshooting Tips&#60;br /&#62;
  Since the Omeka installation is pretty straightforward, we will only concentrate on the problems we met during installation and testing.&#60;br /&#62;
  1. Upgrading PHP from 4.3 to 5.2.5&#60;br /&#62;
    1.1 in Suse Linux, use yast2 facility to do the upgrade&#60;br /&#62;
    1.2 again, using yast2 to enable with enable exif functions (in yast2, search for PHP and enable exif). Exif function is used by FileImages.php (/omeka/application/models/FileImages.php, exif_read_data() etc..). Exif function is used to read meta data from pictures by digital camera.&#60;/p&#62;
&#60;p&#62;  2. .htaccess file is a headache. It depends on apache server setting. The .htaccess files come with Omeka are perfect, but we have to add the following code in our apacke config file to make it work with Omeka .htaccess files. &#60;/p&#62;
&#60;p&#62;In GSU apache config file, we add the followings:&#60;br /&#62;
&#38;lt;Directory &#34;/srv/www/htdocs/omeka&#34;&#38;gt;&#60;br /&#62;
 Options All&#60;br /&#62;
 AllowOverride All&#60;br /&#62;
 Order allow,deny&#60;br /&#62;
 Allow from all&#60;br /&#62;
&#38;lt;/Directory&#38;gt;&#60;/p&#62;
&#60;p&#62;  3. After installation, we found the following problems in our testing.&#60;br /&#62;
    3.1 Error in adding a new user (blank page)&#60;br /&#62;
    This was caused by the micortime() function in /omeka/application/models/UsersActivations.php. This function is only available on operating systems that support the gettimeofday() system call. We changed it to date('YmdHis'), and troule resolved.&#60;/p&#62;
&#60;p&#62;  3.2 Error in sending activation email to new user.&#60;br /&#62;
    This is a known issue in Omeka 0.9.0 and to be resolved in next release. A temporary workaround was posted by us in Omeka forum (http://omeka.org/forums/topic/user-activation-issue-temporary-workaround?replies=2). Basically, just add one line of code as a quick fix.&#60;br /&#62;
in file: /application/controller/UsersController.php line 122. After&#60;br /&#62;
=====================================&#60;br /&#62;
try {&#60;br /&#62;
if($user-&#38;gt;saveForm($_POST)) {&#60;br /&#62;
=====================================&#60;br /&#62;
 Add:&#60;br /&#62;
$user-&#38;gt;email = $_POST['email'];&#60;/p&#62;
&#60;p&#62;  3.3 Error in adding new item to an archive (here we tested adding a new still image). If we leave the field Compression blank, it will cause a database insert error. We changed the database table field files.compression to NULL. &#60;/p&#62;
&#60;p&#62;  3.4 Error in uploading images. Omeka returns blank page after uploading an image. It was caused by Exif functions set are not available. Please refer to step 2.2 to learn how to install PHP Exif support.
&#60;/p&#62;</description>
</item>
<item>
<title>rubinsta on "Installation trouble on Debian etch"</title>
<link>http://omeka.org/forums/topic/installation-trouble-on-debian-etch#post-205</link>
<pubDate>Wed, 05 Mar 2008 22:05:39 +0000</pubDate>
<dc:creator>rubinsta</dc:creator>
<guid isPermaLink="false">205@http://omeka.org/forums/</guid>
<description>&#60;p&#62;That was it!  Thanks a lot, jonlesser.
&#60;/p&#62;</description>
</item>
<item>
<title>jonlesser on "Installation trouble on Debian etch"</title>
<link>http://omeka.org/forums/topic/installation-trouble-on-debian-etch#post-204</link>
<pubDate>Wed, 05 Mar 2008 19:51:15 +0000</pubDate>
<dc:creator>jonlesser</dc:creator>
<guid isPermaLink="false">204@http://omeka.org/forums/</guid>
<description>&#60;p&#62;rubinsta, Is your httpd.conf file on your Debian server allowing htaccess overrides? This can often be off by default. You'd want to look for the AllowOverrides directive.
&#60;/p&#62;</description>
</item>
<item>
<title>rubinsta on "Installation trouble on Debian etch"</title>
<link>http://omeka.org/forums/topic/installation-trouble-on-debian-etch#post-202</link>
<pubDate>Wed, 05 Mar 2008 01:36:27 +0000</pubDate>
<dc:creator>rubinsta</dc:creator>
<guid isPermaLink="false">202@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Thanks for the response...&#60;/p&#62;
&#60;p&#62;I've ftp'd via a few different clients and even copied the files from a working install to the debian server, all with the same results.  Here are the contents of my index.php file in the omeka root directory:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
// Ladies and Gentlemen, start your timers
define(&#38;#39;APP_START&#38;#39;, microtime(true));

require_once &#38;#39;paths.php&#38;#39;;

define(&#38;#39;ADMIN_THEME_DIR&#38;#39;, BASE_DIR.DIRECTORY_SEPARATOR.&#38;#39;admin&#38;#39;.DIRECTORY_SEPARATOR.&#38;#39;themes&#38;#39;);
define(&#38;#39;THEME_DIR&#38;#39;, BASE_DIR.DIRECTORY_SEPARATOR.&#38;#39;themes&#38;#39;);

require_once &#38;#39;Omeka/Core.php&#38;#39;;
$core = new Omeka_Core;
$core-&#38;gt;initialize();

// Call the dispatcher which echos the response object automatically
$core-&#38;gt;dispatch();

if ((boolean) $config-&#38;gt;debug-&#38;gt;timer) {
	echo microtime(true) - APP_START;
}
// We&#38;#39;re done here.
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This matches the index.php on my working installs (I've since installed successfully on a debian desktop).  The only installation step specific to my web server that I can think of is that I used unzip to uncompress omeka.  I used Archive Manager on the Debian desktop and Stuffit on the Mac.  Probably a red herring but I thought I'd through it into the mix.
&#60;/p&#62;</description>
</item>
<item>
<title>DaveLester on "Installation trouble on Debian etch"</title>
<link>http://omeka.org/forums/topic/installation-trouble-on-debian-etch#post-201</link>
<pubDate>Tue, 04 Mar 2008 20:39:49 +0000</pubDate>
<dc:creator>DaveLester</dc:creator>
<guid isPermaLink="false">201@http://omeka.org/forums/</guid>
<description>&#60;p&#62;My gut feeling is that these two problems are unrelated, but I could be wrong&#60;/p&#62;
&#60;p&#62;@rubinsta: Can you check to see that you've properly FTP'd the files to your server?  If the htaccess file is properly routing then it should be sending requests through your index.php file - is this file empty?&#60;/p&#62;
&#60;p&#62;@asnagy: Is this Andrew from code4lib? If so, greetings!  &#60;/p&#62;
&#60;p&#62;I looked at line 23 of the install file; is an exception being thrown, or how else are you seeing an error on that line?  In any case line 23 executes the SHOW TABLES command on mysql, which could be handled differently if you're running a version of mysql that's below mySQL5 which Omeka requires to run by default.  What version of mySQL are you running?
&#60;/p&#62;</description>
</item>
<item>
<title>asnagy on "Installation trouble on Debian etch"</title>
<link>http://omeka.org/forums/topic/installation-trouble-on-debian-etch#post-199</link>
<pubDate>Tue, 04 Mar 2008 17:48:06 +0000</pubDate>
<dc:creator>asnagy</dc:creator>
<guid isPermaLink="false">199@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I am experiencing the exact same problem.  I was able to narrow it down to issues with the database (I think).  However my mysql database is setup correctly.&#60;/p&#62;
&#60;p&#62;I was able to narrow it down to line 23 in install/install.php&#60;/p&#62;
&#60;p&#62;I will keep digging
&#60;/p&#62;</description>
</item>
<item>
<title>rubinsta on "Installation trouble on Debian etch"</title>
<link>http://omeka.org/forums/topic/installation-trouble-on-debian-etch#post-191</link>
<pubDate>Sun, 02 Mar 2008 21:02:26 +0000</pubDate>
<dc:creator>rubinsta</dc:creator>
<guid isPermaLink="false">191@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I'm having some trouble installing Omeka on Debian Etch running PHP5.2 and Apache 2.x.  &#60;/p&#62;
&#60;p&#62;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.  &#60;/p&#62;
&#60;p&#62;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):&#60;/p&#62;
&#60;p&#62;omeka root:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;IfModule mod_php5.c&#38;gt;
        php_value display_errors 1
        php_flag zlib.output_compression On
        php_flag register_globals off
        php_value zlib.output_compression_level 5
&#38;lt;/IfModule&#38;gt;

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d [OR]
RewriteCond %{REQUEST_URI}  .+\/archive\/
RewriteRule !\.(js&#124;ico&#124;gif&#124;jpg&#124;png&#124;css)$ index.php

&#38;lt;FilesMatch &#38;quot;\.(php&#124;ini)$&#38;quot;&#38;gt;
 Order Allow,Deny
 Deny from all
&#38;lt;/FilesMatch&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;/admin:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;php_value display_errors 1
php_flag zlib.output_compression On
php_value zlib.output_compression_level 5

RewriteEngine on
RewriteRule !\.(js&#124;ico&#124;gif&#124;jpg&#124;png&#124;css)$ index.php&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;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!&#60;/p&#62;
&#60;p&#62;Thanks so much!
&#60;/p&#62;</description>
</item>
<item>
<title>DaveLester on "Bluehost hosting and issues with pdo_mysql, .htaccess, and php.ini"</title>
<link>http://omeka.org/forums/topic/bluehost-hosting-and-issues-with-pdo_mysql-htaccess-and-phpini#post-184</link>
<pubDate>Sun, 02 Mar 2008 03:35:29 +0000</pubDate>
<dc:creator>DaveLester</dc:creator>
<guid isPermaLink="false">184@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Patrick -- Sure, I'll take a look at it to see what they did. If you zip it up and send it as an email attachment to &#60;a href=&#34;mailto:omeka.dev@gmail.com&#34;&#62;omeka.dev@gmail.com&#60;/a&#62; that'd be great.  Also - could you send along the script that Bluehost gave you to copy the php.ini file to all subdirectories?  I'd be interested in looking at it, and eventually adding this information all to the codex for future users.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
