<?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: Last 35 Posts</title>
<link>http://omeka.org/forums/</link>
<description>Forums: Last 35 Posts</description>
<language>en</language>
<pubDate>Sun, 06 Jul 2008 01:38:06 +0000</pubDate>

<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-515</link>
<pubDate>Thu, 03 Jul 2008 04:53:22 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">515@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Actually, that was very fast.  Thank you very much for the help.  I appreciate it a lot and it works perfectly.&#60;/p&#62;
&#60;p&#62;Even though it affected all collection select lists, I had to install the DropboxController.patch Sean Hannan posted on the Omeka Dev site in order to get the Dropbox collection feature to work properly.  But it's good to go now.&#60;/p&#62;
&#60;p&#62;URL: &#60;a href=&#34;http://groups.google.com/group/omeka-dev/browse_thread/thread/1c1dff2497e67086?hl=en&#34; rel=&#34;nofollow&#34;&#62;http://groups.google.com/group/omeka-dev/browse_thread/thread/1c1dff2497e67086?hl=en&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-514</link>
<pubDate>Thu, 03 Jul 2008 01:34:32 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">514@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hey, my apologies for not getting to this sooner.  I fixed the bug and sent a patch to the dev list, which you can find at:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://groups.google.com/group/omeka-dev/browse_thread/thread/1cfa3fa1fc19726c&#34; rel=&#34;nofollow&#34;&#62;http://groups.google.com/group/omeka-dev/browse_thread/thread/1cfa3fa1fc19726c&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;To apply the patch, download the attached file and try:&#60;/p&#62;
&#60;p&#62;patch -p0 &#38;lt; collections_limit.patch &#60;/p&#62;
&#60;p&#62;in the root of your installation.&#60;/p&#62;
&#60;p&#62;Hope that helps!
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-513</link>
<pubDate>Wed, 02 Jul 2008 20:41:38 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">513@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hmmm, I don't think that's the code that's affecting this after all.  I'll keep reading through it all.  :)
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-512</link>
<pubDate>Wed, 02 Jul 2008 15:30:59 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">512@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Whoops, I left out the file name:&#60;/p&#62;
&#60;p&#62;admin/themes/default/items/form.php
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-511</link>
<pubDate>Wed, 02 Jul 2008 15:30:00 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">511@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I really need to figure this out.  Looking at the generated code in the admin panel for adding an item to a collection, I can see that only 10 collections are generated in the drop down list (in the admin page ---&#38;gt; either when you're adding a single item or batch adding many items, the Collection Metadata --&#38;gt; Collection drop down list only returns the first ten collections).&#60;/p&#62;
&#60;p&#62;I'm guessing the reason is in the PHP that generates the form for the drop down list.  After looking through a lot of the PHP code, I'm guessing the file that needs adjusting is in&#60;/p&#62;
&#60;p&#62;admin/themes/default/items&#60;/p&#62;
&#60;p&#62;and it's around line 337.   I'll add the code below although I'm not sure how it will display when I submit this post:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
 &#60;/code&#62;&#60;code&#62;&#38;lt;fieldset id=&#38;quot;collection-metadata&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
                &#60;code&#62;&#38;lt;legend&#38;gt;Collection Metadata&#38;lt;/legend&#38;gt;&#60;/code&#62;&#60;br /&#62;
                &#60;code&#62;&#38;lt;div class=&#38;quot;field&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
                &#60;code&#62;&#38;lt;?php select(&#38;#39;collection_id&#38;#39;,&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;collections(),&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;$item-&#38;gt;collection_id,&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;&#38;#39;Collection&#38;#39;,&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;&#38;#39;id&#38;#39;,&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;&#38;#39;name&#38;#39; ); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;In my limited experience, the code above looks good to me.  Does anything think otherwise?  Could the problem be there or somewhere else?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>tmikk on "getting the 'contribution' plugin to work"</title>
<link>http://omeka.org/forums/topic/getting-the-contribution-plugin-to-work#post-510</link>
<pubDate>Tue, 01 Jul 2008 18:59:29 +0000</pubDate>
<dc:creator>tmikk</dc:creator>
<guid isPermaLink="false">510@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Here is a bit more information about the problem.&#60;/p&#62;
&#60;p&#62;The error #1 appears to have something to do with me serving the site from root url.  If I change the site to example/omeka, then adding a story works fine.&#60;/p&#62;
&#60;p&#62;The error #2 had to do with me not having write enabled directories inside the archive directory. Once I write enabled the directories, I have been able to add an image without an error.&#60;/p&#62;
&#60;p&#62;It would be nice if the contribute plugin would work with the root URL site.  &#60;/p&#62;
&#60;p&#62;Thank you,&#60;br /&#62;
Tonu
&#60;/p&#62;</description>
</item>
<item>
<title>tmikk on "getting the 'contribution' plugin to work"</title>
<link>http://omeka.org/forums/topic/getting-the-contribution-plugin-to-work#post-509</link>
<pubDate>Tue, 01 Jul 2008 15:01:29 +0000</pubDate>
<dc:creator>tmikk</dc:creator>
<guid isPermaLink="false">509@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I am experiencing the same problem :-(.  I tried to modify the add.php file as earlier posts mention, but it has not helped.  As far as I can see, it appears to have the correct URL with just /contribute .&#60;/p&#62;
&#60;p&#62;I have Omeka 9.2.2 with the plugin downloaded today.  My Omeka install is at &#60;a href=&#34;http://omekastage.dmc.umn.edu&#34; rel=&#34;nofollow&#34;&#62;http://omekastage.dmc.umn.edu&#60;/a&#62; .&#60;/p&#62;
&#60;p&#62;I have two problems.&#60;br /&#62;
1.  When a story is contributed, then the thank you page URL is contribute/contribute/thankyou .  Fixing it manually to contribute/thankyou will display the correct page.&#60;/p&#62;
&#60;p&#62;2.  When a image is selected as contribution type, then I get an error after submission that Omeka has experienced an error.&#60;/p&#62;
&#60;p&#62;Thank you for all your help!&#60;/p&#62;
&#60;p&#62;Tonu
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-508</link>
<pubDate>Tue, 01 Jul 2008 00:46:39 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">508@http://omeka.org/forums/</guid>
<description>&#60;p&#62;This is not just a batch add issue.  I can't access the 11th collection when trying to add a single item.&#60;/p&#62;
&#60;p&#62;I'm not really much of a programmer, but I'm trying to find the culprit.  :)
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-507</link>
<pubDate>Tue, 01 Jul 2008 00:29:12 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">507@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I am having a similar problem.  I have added more than 10 collections.  When I try to batch upload to the 11th collection, it's not an option in the Collection Metadata dropdown menu.  The first 10 are available though.&#60;/p&#62;
&#60;p&#62;Even though I'm working with PHP 5.1.6, I tested this behavior on my machine which has 5.2.6.  It's repeatable.&#60;/p&#62;
&#60;p&#62;Thoughts?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "New Install (pair.com): cannot upload images"</title>
<link>http://omeka.org/forums/topic/new-install-paircom-cannot-upload-images#post-506</link>
<pubDate>Mon, 30 Jun 2008 23:55:21 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">506@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Yes, I applied the fix to 0.9.2, so hopefully it should work on your Pair hosting.  Please let us know how it goes!
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "php version requirement"</title>
<link>http://omeka.org/forums/topic/php-version-requirement#post-505</link>
<pubDate>Mon, 30 Jun 2008 17:49:18 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">505@http://omeka.org/forums/</guid>
<description>&#60;p&#62;By the way, the reason for 5.1.x is because the academic institution where the Omeka site I'm installing runs Red Hat Enterprise Linux 5 and PHP 5.1.6 is what's available right now for that version of Red Hat.  The IT department won't install PHP 5.2 from source so PHP 5.1.6 is all I have available to me.  Fortunately it seems to be a go.
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "php version requirement"</title>
<link>http://omeka.org/forums/topic/php-version-requirement#post-504</link>
<pubDate>Mon, 30 Jun 2008 17:41:19 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">504@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Thanks Dave.  I edited the verify.php file from 5.2 to 5.1.x and it seems to be working like its normal awesome self.  The Dropbox plugin is working also.
&#60;/p&#62;</description>
</item>
<item>
<title>DaveLester on "php version requirement"</title>
<link>http://omeka.org/forums/topic/php-version-requirement#post-503</link>
<pubDate>Mon, 30 Jun 2008 15:47:31 +0000</pubDate>
<dc:creator>DaveLester</dc:creator>
<guid isPermaLink="false">503@http://omeka.org/forums/</guid>
<description>&#60;p&#62;If you’d like to override the 5.2.x system requirement, you can modify the verify.php in the ‘install’ directory.  There you’ll see the 5.2.x version requirement, so you can lower that.&#60;/p&#62;
&#60;p&#62;With that said, it’s unlikely that you’ll be able to get everything running properly.  The forum message you dug up was 7 months ago during our Private Alpha testing stage, and much of the code has changed since then.  You’re welcome to give it a try and let us know what you come up with, but we can’t formally support PHP versions below 5.2.x.
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "php version requirement"</title>
<link>http://omeka.org/forums/topic/php-version-requirement#post-502</link>
<pubDate>Sun, 29 Jun 2008 13:04:25 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">502@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Just curious, is it possible for Omeka to run using PHP 5.1.x?  Searching through the forums, I found this comment:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;&#34;We currently list PHP 5.2.x as a system requirement, however we’re working on an overhaul of our database connections in the core code which will lower that requirement to 5.1.4 once completed – possibly by next month.&#34;&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;URL: &#60;a href=&#34;http://omeka.org/forums/topic/parse-error?replies=8#post-46&#34; rel=&#34;nofollow&#34;&#62;http://omeka.org/forums/topic/parse-error?replies=8#post-46&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I attempted to install Omeka on a system running PHP 5.1.6, but the install screen tells me my PHP version is too low.  If it is possible to use Omeka with this PHP version, is there a simple adjustment I can make somewhere?
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Omeka Upgrades"</title>
<link>http://omeka.org/forums/topic/omeka-upgrades#post-501</link>
<pubDate>Fri, 27 Jun 2008 23:58:40 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">501@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi, the general process for upgrading will be the same as before.  People who are upgrading will move their config files and archive directory from the old omeka to the new one and then run a script through the administrative backend to upgrade their database.  That will be the extent of the upgrade for anyone who hasn't modified any of the PHP files in Omeka.&#60;/p&#62;
&#60;p&#62;When you say &#34;get too far along in something&#34;, do you mean changing the core of the application, or do you making extensions like themes or plugins?  If you've changed any PHP files in Omeka's code base that aren't either plugins, themes, or configuration files, chances are that your changes won't work in the new version.  It'd be best to make a list of all the things you've changed and then it will be easier to upgrade later.  &#60;/p&#62;
&#60;p&#62;Plugins and themes are a different story.  I can say with certainty that the API for Omeka's themes and plugins in the next version will be changing considerably from the current 0.9 release branch, though we haven't finalized the changes yet.  The changes in the API are necessary because we've made some pretty fundamental changes to Omeka's database, and the old themes won't work with the new database.  That said, we'll be upgrading all the themes and plugins that we've released to work with the new system, so we'll most likely have instructions on our codex as well as answering specific questions on the forums.  &#60;/p&#62;
&#60;p&#62;Hope that helps!
&#60;/p&#62;</description>
</item>
<item>
<title>bethnicol on "New Install (pair.com): cannot upload images"</title>
<link>http://omeka.org/forums/topic/new-install-paircom-cannot-upload-images#post-500</link>
<pubDate>Fri, 27 Jun 2008 20:29:33 +0000</pubDate>
<dc:creator>bethnicol</dc:creator>
<guid isPermaLink="false">500@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Kris:&#60;/p&#62;
&#60;p&#62;Is this fix in 0.9.2? If so, I'll probably try again on my account at Pair.com (or I'll try the &#34;fix&#34; you listed.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>tmikk on "Exhibit "Add a Section" error"</title>
<link>http://omeka.org/forums/topic/exhibit-add-a-section-error#post-499</link>
<pubDate>Thu, 26 Jun 2008 16:37:05 +0000</pubDate>
<dc:creator>tmikk</dc:creator>
<guid isPermaLink="false">499@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hey, thanks finnarne for your offer to help!  I ended up upgrading to 9.2.2 and root path setup is working fine now.  &#60;/p&#62;
&#60;p&#62;Tonu
&#60;/p&#62;</description>
</item>
<item>
<title>JeremyBoggs on "Installation on dreamhost did not work"</title>
<link>http://omeka.org/forums/topic/installation-on-dreamhost-did-not-work#post-498</link>
<pubDate>Wed, 25 Jun 2008 22:59:19 +0000</pubDate>
<dc:creator>JeremyBoggs</dc:creator>
<guid isPermaLink="false">498@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi Johannes,&#60;/p&#62;
&#60;p&#62;It seems that you don't have a print.css file in omeka/themes/default/css. You can do a few things:&#60;/p&#62;
&#60;p&#62;1) Create a print.css file (leave it blank if you want, or add styles to it) in omeka/themes/default/css.&#60;br /&#62;
2) Remove the line for the print stylesheet in themes/default/common/header.php&#60;br /&#62;
3) Try switching to a different theme, like Minimalist (or download one from our &#60;a href=&#34;http://omeka.org/download/themes/&#34;&#62;themes list&#60;/a&#62;) and see if you get the same error.&#60;/p&#62;
&#60;p&#62;If you do have a print.css file in omeka/themes/default/css, there something else is wrong. If that's the case, let us know.&#60;/p&#62;
&#60;p&#62;Hope this helps!
&#60;/p&#62;</description>
</item>
<item>
<title>AJMillion on "Omeka Upgrades"</title>
<link>http://omeka.org/forums/topic/omeka-upgrades#post-497</link>
<pubDate>Tue, 24 Jun 2008 05:30:14 +0000</pubDate>
<dc:creator>AJMillion</dc:creator>
<guid isPermaLink="false">497@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hey all. I've been back and forth on the boards lately and have another question. This time, I'm curious about upgrading Omeka. I know from version .9 to .91 all that really had to be done was replace a few files. Is this going to be the case in future versions? The reason I ask is because I don't want to get too far along in something and not be able to upgrade Omeka because &#34;x&#34; change or &#34;y&#34; change has been made.&#60;/p&#62;
&#60;p&#62;Any idea of how future upgrades will be dealt with?
&#60;/p&#62;</description>
</item>
<item>
<title>theguffaw on "New Install (pair.com): cannot upload images"</title>
<link>http://omeka.org/forums/topic/new-install-paircom-cannot-upload-images#post-496</link>
<pubDate>Thu, 19 Jun 2008 16:07:18 +0000</pubDate>
<dc:creator>theguffaw</dc:creator>
<guid isPermaLink="false">496@http://omeka.org/forums/</guid>
<description>&#60;p&#62;worked perfectly, thanks :o&#60;/p&#62;
&#60;p&#62;alex
&#60;/p&#62;</description>
</item>
<item>
<title>SheilaBrennan on "CAPTCHA for Contribution?"</title>
<link>http://omeka.org/forums/topic/captcha-for-contribution#post-495</link>
<pubDate>Thu, 19 Jun 2008 14:02:27 +0000</pubDate>
<dc:creator>SheilaBrennan</dc:creator>
<guid isPermaLink="false">495@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi Brent, &#60;/p&#62;
&#60;p&#62;Yes, it is a great idea. We are having the same problem in HDMB, and as a result someone is already working on creating a Re-Captcha plugin to work with the form.  I can't wait!&#60;/p&#62;
&#60;p&#62;As always, we'll let everyone know once it's ready for release. &#60;/p&#62;
&#60;p&#62;Sheila
&#60;/p&#62;</description>
</item>
<item>
<title>bjesiek on "CAPTCHA for Contribution?"</title>
<link>http://omeka.org/forums/topic/captcha-for-contribution#post-494</link>
<pubDate>Thu, 19 Jun 2008 13:01:14 +0000</pubDate>
<dc:creator>bjesiek</dc:creator>
<guid isPermaLink="false">494@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Is anyone working on a CAPTCHA feature for the Contribution module? We typically see 2-10 spurious entries a day, which requires more regular maintenance than we would like. I've considered writing my own mod, but probably won't have time for a month or so. In the meantime I thought it would be worth asking the community.&#60;/p&#62;
&#60;p&#62;P.S. The April 16 Archive (&#60;a href=&#34;http://april16archive.org/&#34;&#62;http://april16archive.org/&#60;/a&#62;) is finally redesigned and redeployed on the newest version of Omeka. Yay!
&#60;/p&#62;</description>
</item>
<item>
<title>BGFalcon on "getting the 'contribution' plugin to work"</title>
<link>http://omeka.org/forums/topic/getting-the-contribution-plugin-to-work#post-493</link>
<pubDate>Wed, 18 Jun 2008 18:37:09 +0000</pubDate>
<dc:creator>BGFalcon</dc:creator>
<guid isPermaLink="false">493@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Okay, I fixed it now.  When trying to fix the Thank you page, I deleted a &#34;/&#34; that was needed on accident and placed it back where it belongs.  Sorry for any inconvenience I may have caused.
&#60;/p&#62;</description>
</item>
<item>
<title>BGFalcon on "getting the 'contribution' plugin to work"</title>
<link>http://omeka.org/forums/topic/getting-the-contribution-plugin-to-work#post-492</link>
<pubDate>Wed, 18 Jun 2008 17:58:18 +0000</pubDate>
<dc:creator>BGFalcon</dc:creator>
<guid isPermaLink="false">492@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I've been doing all of my testing in Firefox and when I tried in IE, I get a different error all together.  When I change the Contribution type in IE, it does not change the input panel at all.   Though on both Firefox and IE, if I hit the submit button before filling in all of the fields, the screen is setup properly after it reloads.
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "New Install (pair.com): cannot upload images"</title>
<link>http://omeka.org/forums/topic/new-install-paircom-cannot-upload-images#post-491</link>
<pubDate>Tue, 17 Jun 2008 19:22:47 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">491@http://omeka.org/forums/</guid>
<description>&#60;p&#62;After much consternation, I think I've found the problem.  If you have the PEAR File module installed, there is a naming conflict between classes in that and Omeka.  Specifically the File class is defined twice.  &#60;/p&#62;
&#60;p&#62;To get around that, open up 'paths.php' in the root of your installation and find the line that says &#60;code&#62;set_include_path(get_include_path() . PATH_SEPARATOR . ...);&#60;/code&#62;.  Remove the part that says &#60;code&#62;get_include_path() . PATH_SEPARATOR .&#60;/code&#62; because that will take out the existing include path to the PEAR modules.  Omeka doesn't use any of these PEAR modules so it shouldn't be a problem.  I'm thinking that this is a bug that should be fixed in the upcoming Omeka release.&#60;/p&#62;
&#60;p&#62;Hope that helps!
&#60;/p&#62;</description>
</item>
<item>
<title>jstrobel on "Installation on dreamhost did not work"</title>
<link>http://omeka.org/forums/topic/installation-on-dreamhost-did-not-work#post-490</link>
<pubDate>Tue, 17 Jun 2008 18:39:20 +0000</pubDate>
<dc:creator>jstrobel</dc:creator>
<guid isPermaLink="false">490@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
after many troubles with my past provider, I wasn't able to install omeka, so I switched to dreamhost (as recommended on omeka's web-site).&#60;/p&#62;
&#60;p&#62;I switched to php5.2, what seems to be the most issue that people had.&#60;/p&#62;
&#60;p&#62;I run the installation, which finished smoothly.&#60;/p&#62;
&#60;p&#62;Then the problem:&#60;/p&#62;
&#60;p&#62;The whole site is just blank when I call it. When I look into the [view source], it shows the following:&#60;br /&#62;
href=&#34;http://www.moonstories.org/omeka/themes/default/css/screen.css&#34; /&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;stylesheet&#34; media=&#34;print&#34; href=&#34;Error:Could not find file 'css/print.css'!&#60;/p&#62;
&#60;p&#62;This is exactly the same error I got from my prior installations at other servers...&#60;/p&#62;
&#60;p&#62;What could I possible be doing wrong.&#60;br /&#62;
thanks&#60;br /&#62;
Johannes
&#60;/p&#62;</description>
</item>
<item>
<title>theguffaw on "New Install (pair.com): cannot upload images"</title>
<link>http://omeka.org/forums/topic/new-install-paircom-cannot-upload-images#post-489</link>
<pubDate>Mon, 16 Jun 2008 18:48:44 +0000</pubDate>
<dc:creator>theguffaw</dc:creator>
<guid isPermaLink="false">489@http://omeka.org/forums/</guid>
<description>&#60;p&#62;i'm having the same problem on my test server that i am running omeka on.&#60;/p&#62;
&#60;p&#62;running ubuntu 8.04&#60;/p&#62;
&#60;p&#62;with the xampp lampp package with php 5.2.5 and mysql 5.0.51a&#60;/p&#62;
&#60;p&#62;any insight as to the problem or solution?&#60;/p&#62;
&#60;p&#62;thanks a lot,&#60;br /&#62;
alex
&#60;/p&#62;</description>
</item>
<item>
<title>BGFalcon on "getting the 'contribution' plugin to work"</title>
<link>http://omeka.org/forums/topic/getting-the-contribution-plugin-to-work#post-488</link>
<pubDate>Mon, 16 Jun 2008 15:54:05 +0000</pubDate>
<dc:creator>BGFalcon</dc:creator>
<guid isPermaLink="false">488@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I was able to fix the thank you page.  But, haven't located the problem with the contribute page with switching between submition types.  Sadly, our Omeka installation is on a local server set up behind our campus's firewall on a subnet.
&#60;/p&#62;</description>
</item>
<item>
<title>finnarne on "Exhibit "Add a Section" error"</title>
<link>http://omeka.org/forums/topic/exhibit-add-a-section-error#post-487</link>
<pubDate>Sun, 15 Jun 2008 11:02:23 +0000</pubDate>
<dc:creator>finnarne</dc:creator>
<guid isPermaLink="false">487@http://omeka.org/forums/</guid>
<description>&#60;p&#62;This is a small bug in the current version of Omeka, and is actually related to the same problem as in &#60;a href=&#34;http://omeka.org/forums/topic/unable-to-get-to-the-public-site-from-admin-screen.&#34; rel=&#34;nofollow&#34;&#62;http://omeka.org/forums/topic/unable-to-get-to-the-public-site-from-admin-screen.&#60;/a&#62; If you look at the source code for the front page, you'll notice that Omeka sets the wrong path for several resources, including javascript - the /admin/ sneaks in there. &#60;/p&#62;
&#60;p&#62;The problem is somewhere in the paths.php file in the Omeka root directory - it will probably be fixed in the next version of Omeka. I had one of the developers show me how to fix it, but I deleted that email long ago. However, just send me an email (look up my website/contact info in my profile) and I'll be happy to email you a copy of my paths.php file.
&#60;/p&#62;</description>
</item>
<item>
<title>DaveLester on "getting the 'contribution' plugin to work"</title>
<link>http://omeka.org/forums/topic/getting-the-contribution-plugin-to-work#post-486</link>
<pubDate>Fri, 13 Jun 2008 03:15:04 +0000</pubDate>
<dc:creator>DaveLester</dc:creator>
<guid isPermaLink="false">486@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Is it possible to share a link to your Omeka installation so  I could see exactly what's going on?
&#60;/p&#62;</description>
</item>
<item>
<title>tmikk on "Exhibit "Add a Section" error"</title>
<link>http://omeka.org/forums/topic/exhibit-add-a-section-error#post-485</link>
<pubDate>Thu, 12 Jun 2008 19:02:29 +0000</pubDate>
<dc:creator>tmikk</dc:creator>
<guid isPermaLink="false">485@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Sheila, I changed my URL to &#60;a href=&#34;http://..../omeka&#34; rel=&#34;nofollow&#34;&#62;http://..../omeka&#60;/a&#62; and now I am able to add a section to exhibits.  The tabs also became rounded in the admin site.  It would be nice to have it work with the root URL though.  I look forward to the resolution.&#60;/p&#62;
&#60;p&#62;Tonu
&#60;/p&#62;</description>
</item>
<item>
<title>BGFalcon on "getting the 'contribution' plugin to work"</title>
<link>http://omeka.org/forums/topic/getting-the-contribution-plugin-to-work#post-484</link>
<pubDate>Thu, 12 Jun 2008 18:56:30 +0000</pubDate>
<dc:creator>BGFalcon</dc:creator>
<guid isPermaLink="false">484@http://omeka.org/forums/</guid>
<description>&#60;p&#62;We are using the newest version of Omeka and the newest version of Contribution, but are still having the errors mentioned previously in this topic.  On our screen it looks as if it is adding the header in the middle of the page when switching between story and file types.  It is also directing to the wrong url for the thank you page.  I have checked and the add.php file does not have the extra /contributions.
&#60;/p&#62;</description>
</item>
<item>
<title>SheilaBrennan on "Exhibit "Add a Section" error"</title>
<link>http://omeka.org/forums/topic/exhibit-add-a-section-error#post-483</link>
<pubDate>Thu, 12 Jun 2008 17:50:38 +0000</pubDate>
<dc:creator>SheilaBrennan</dc:creator>
<guid isPermaLink="false">483@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Thanks, Tonu. We are looking into this issue, because it appears that it is happening to a few others as well. &#60;/p&#62;
&#60;p&#62;You might try doing what Samip did, which was to install Omeka into its own directory off of the root folder (www.yoursite.org/omekainstallation). That should solve the problem, but we realize that Omeka should be able to function from the root directory though and we are creating a ticket to investigate the problem. &#60;/p&#62;
&#60;p&#62;Sheila
&#60;/p&#62;</description>
</item>
<item>
<title>tmikk on "Exhibit "Add a Section" error"</title>
<link>http://omeka.org/forums/topic/exhibit-add-a-section-error#post-482</link>
<pubDate>Thu, 12 Jun 2008 14:49:21 +0000</pubDate>
<dc:creator>tmikk</dc:creator>
<guid isPermaLink="false">482@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi Sheila, my tabs are rectangular shaped, not rounded as in the sandbox.  Where does that lead us?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Tonu
&#60;/p&#62;</description>
</item>
<item>
<title>SheilaBrennan on "Exhibit "Add a Section" error"</title>
<link>http://omeka.org/forums/topic/exhibit-add-a-section-error#post-481</link>
<pubDate>Thu, 12 Jun 2008 02:10:33 +0000</pubDate>
<dc:creator>SheilaBrennan</dc:creator>
<guid isPermaLink="false">481@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi Tonu, &#60;/p&#62;
&#60;p&#62;Does your admin interface show rounded tabs, like shown in the sandbox admin?&#60;br /&#62;
&#60;a href=&#34;http://omeka.org/sandbox/demo/admin/&#34; rel=&#34;nofollow&#34;&#62;http://omeka.org/sandbox/demo/admin/&#60;/a&#62; (demo, sandbox).&#60;/p&#62;
&#60;p&#62;This will help us know if it is a Javascript error.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Sheila
&#60;/p&#62;</description>
</item>

</channel>
</rss>
