1.4.1 Errors out on setup Step 3 and 4

vibrant

Joined: 2004-01-23
Posts: 3
Posted: Fri, 2004-01-23 23:36

Hi...

When I reach page 4, *url removed*, that I am missing variables that I have already filled in.

Also (and probably related), page 3 does not have buttons at the
bottom. It ends after "Album->Allow Slideshow to Loop"
without closing the body and html tags, which would appear that it's
bombing partway through the page without saving state.

Gallery URL: *removed*
Gallery version: 1.4.1
Apache version: 2.0.47
PHP version: php 5.0.0b1
Graphics Toolkit: pnm
Operating system: Linux 2.4.22
Web browser/version (if applicable): IE 6.0

Any ideas?

Thanks
Phil

 
foffo
foffo's picture

Joined: 2003-03-06
Posts: 660
Posted: Sat, 2004-01-24 00:06

To begin with I get a 403 forbidden error when accessing your gallery. So I suppose your permissions isn't correct.

Secondly, PHP5 is still in beta (currently beta 3), and is not ready for production use. Gallery will support PHP5 when it is released.

Please use the latest PHP4 version - 4.3.4 (4.3.5 is soon on its way...

:)

 
vibrant

Joined: 2004-01-23
Posts: 3
Posted: Sat, 2004-01-24 01:20

*URL removed* will show an error page
until setup is finished.

However, *removed*

still errors out, as mentioned above.

Thanks
Phil

 
vibrant

Joined: 2004-01-23
Posts: 3
Posted: Sun, 2004-01-25 00:58

After some debugging, I got configuration to complete.

The following seemed to fix it:

#diff index.php index.old.php
100a101
> global $$key;
103c104
< $real = $GLOBALS[$key];
---
> $real = $$key;

Globals have changed in php5. There are quite likely other
bugs of a similar sort.

cheers
Phil