For the most part all went fine.. Let me start by saying that I am using Server 2003 with IIS 6 and I do not have mod-rewrite.
2 things I noticed
1. It prompted me for a security certificate after I installed. I am not running https on my site and that made all my pictures not show up. I did notice that on lines 97 thru 99 it attempts to specify the protocol. I had to modify this to look at just http instead of https.
2 On the Image page it image doesnt look like it is resizing. it is flowing overtop of my sidebar(wordpress). Havent had time to look into this one..
http://www.chilifrei.net/zp/index.php?album=AutoRAMA+2006&image=DSC01886.jpgI should note that when I upgraded I just replaced the contents of the zen folder. I have modified my template for wordpress. However.. from 1.0.1b to 1.0.2 the template has not changes and it did work and now it doesnt.. is that page handled any differently?
Otherwise everything seems to be working..
One more thing.. is it weird that I get really really excited over new releases?
Thanks for all your hard work...
Comments
Everything is working fine for me. I can finally login to the admin area...
However I am having a problem with the "edit on the go" feature which doesn't seem to work at all for me... I even deleted my cookies, any ideas?
As for #1, the problem is probably that IIS doesn't have some of the server variables that Apache does. I will see which ones it does have soon, but for now I think you got it
For those with IIS as far as the whole https thing goes... here is what I did to fix it
Change line 97 in i.php
from:
$protocol = $_SERVER['HTTPS'] ? 'https' : 'http';
to
$protocol = $_SERVER['HTTP'] ? 'https' : 'http';
And yeah..Now that you mention it.. I cant live edit anything.. the info i type doesnt save.. Minimal problem for me as I dont normally modify that stuff.