Hello!
I was able to install Omeka on Windows XP using XAMPP.
However, I am having problems with the display on my browser, CSS and Javascript is not working. I believe that it is caused by the backslash \ used as directory separator on Windows. I used web developer firefox extension to view the source. Here is the portion I think which is causing the error:
<!-- Stylesheets -->
<link rel="stylesheet" media="screen" href="http://localhost/om\themes\default\css\screen.css" />
<link rel="stylesheet" media="print" href="http://localhost/om\themes\default\css\print.css" />
<!-- JavaScripts -->
<script type="text/javascript" src="http://localhost/om\shared\javascripts\prototype.js" charset="utf-8"></script>
<script type="text/javascript" src="http://localhost/om\shared\javascripts\prototype-extensions.js" charset="utf-8"></script>
<script src="http://localhost/om\shared\javascripts\scriptaculous.js?load=effects,dragdrop" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" src="http://localhost/om\shared\javascripts\search.js" charset="utf-8"></script>
Here is the portion when I view the generated source:
<link rel="stylesheet" media="screen" href="http://localhost/om%5Cthemes%5Cdefault%5Ccss%5Cscreen.css">
<link rel="stylesheet" media="print" href="http://localhost/om%5Cthemes%5Cdefault%5Ccss%5Cprint.css"><!-- JavaScripts -->
<script type="text/javascript" src="http://localhost/om%5Cshared%5Cjavascripts%5Cprototype.js" charset="utf-8"></script>
<script type="text/javascript" src="http://localhost/om%5Cshared%5Cjavascripts%5Cprototype-extensions.js" charset="utf-8"></script>
<script src="http://localhost/om%5Cshared%5Cjavascripts%5Cscriptaculous.js?load=effects,dragdrop" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" src="http://localhost/om%5Cshared%5Cjavascripts%5Csearch.js" charset="utf-8"></script><!-- Plugin Stuff --></head><body>
I am guessing that making the directory separator hardcoded as forward slash may fix this. Could this be edited or changed in the zipped file provided for download?
I am sorry for being hardheaded on installing Omeka on Windows, it is just that I thought I can give it a shot :-)
By the way, I have installed Omeka on Ubuntu 7.10 successfully, side by side with WordPress, and I am currently adding data so I don't have much to show yet. I will post the URL once it is respectable enough.
Thanks!
mon