I have the same/a similar problem:
When upgrading from 1.3.4 to 1.4, and tring to access:
http://site/Gallery/setup/index.php, I get:
Forbidden
You don't have permission to access /Gallery/setup/index.php on this server.
The access_log has the following entry:
[Fri Sep 12 03:58:23 2003] [error] [client x.x.x.x] (13)Permission denied: access to /Gallery/setup/index.php failed because search permissions are missing on a component of the path
I have deleted the .htaccess in the setup-directory, and I do not have access to the httpd.conf of my web-server.
Who can help me out...?
Regards,
Evert
Posts: 3473
meulie,
Completely different problem. You just need to do the chmods as described here.
Posts: 60
The result is that setup/index.php gives:
mkdir(fs_import_filename($filename, 0)); } else { $results = mkdir(fs_import_filename($filename, 0), $perms); } umask($umask); return $results; } ?> ITE_SEPARATOR = "\&"; } else { $GALLERY_REWRITE_SEPARATOR = "&"; } } else { $GALLERY_REWRITE_OK = 0; } ?> tf(_("Resizing %s"), $name)); $gallery->album->resizePhoto($index, $gallery->album->fields["resize_size"], $gallery->album->fields["resize_file_size"]); } } /* auto-rotate the photo if needed */ if (!strcmp($gallery->app->autorotate, 'yes') && $gallery->app->use_exif) { $index = $gallery->album->numPhotos(1); $exifData = $gallery->album->getExif($index); if ($orientation = trim($exifData['Orientation'])) { $photo = $gallery->album->getPhoto($index); switch ($orientation) { case "rotate 90": $rotate = -90; break; case "rotate 180": $rotate = 180; break; case "rotate 270": $rotate = 90; break; default: $rotate = 0; } if ($rotate) { $gallery->album->rotatePhoto($index, $rotate); processingMsg("- ". sprintf(_("Photo auto-rotated %s°"), $rotate)); } } } /*move to the beginning if needed */ if ($gallery->album->getAddToBeginning() )
and lots more of that...Posts: 8194
Are you sure PHP is enabled on your server? It sure doesn't look like it
Posts: 60
Look for yourself... :wink:
http://www.meulie.net/Fotootjes/setup/phpinfo.php
Posts: 3473
Your gallery files are corrupt. Download a fresh copy, remove everything from server and upload them again.
And I'm splittin this topic again.
Posts: 60
Hmm, so much for the problem-less upgrade from 1.3.4 -> 1.4... :-?
Posts: 3473
oh, it's an upgrade! make sure you protect config.php and .htaccess, and your albums.
But it's not our fault that the files are corrupted. This sometimes happens during upload, download.
Posts: 60
My initial posting clearly mentions 'upgrade'... :P
Posts: 8194
So, try reuploading the files. Something is obviously corrupted..
Posts: 60
That worked, yes...
So instead of putting it on top of the existing installation, I put it in a clean dir, and moved the config.php
Now http://www.meulie.net/Fotootjes/ is back in business!