Also, check your server logs to see if there are any errors that stand out or catch your attention. Can you also post a link/show the output from a phpinfo script?
Here is a link to the php_info (as an html file) : I hope nothing is sensitive, i.e. undesirables get hold of it for nefarious purposes!
http://melhuish.org/php_info.htmlI am not sure exactly what the .htaccess file does. I have several of them, one associated with PunBB, three from a PHP photo album program called "Gallery". I don't see one for Coppermine.
Here is .htaccess for PunBB
<Limit GET POST PUT>
Order Allow,Deny
Deny from All
</Limit>
Here is the contents of the Gallery .htaccess in /gallery/
# BEGIN Gallery section
# (Automatically generated. Do not edit this section)
# Note: still under development, so format may change.
# If you edit this file, make a backup before runnng the Config. Wizard.
php_value post_max_size 20971520
php_value upload_max_filesize 20971520
php_value magic_quotes_gpc off
php_value session.save_handler files
<IfModule sapi_apache2.c>
php_value session.bug_compat_warn off
</IfModule>
<IfModule mod_php4.c>
php_flag session.bug_compat_warn off
</IfModule>
Options -Indexes +FollowSymLinks
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /gallery/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.\?/]+)/([0-9]+)$ /gallery/view_photo.php?set_albumName=$1&index=$2 [QSA]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.\?/]+)/([A-Za-z_0-9\-]+)$ /gallery/view_photo.php?set_albumName=$1&id=$2 [QSA]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.\?/]+)/$ /gallery/$1 [R]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.\?/]+)$ /gallery/view_album.php?set_albumName=$1 [QSA]
</IfModule>
# END Gallery section. Add User changes below this line
Here is the contents of the Gallery .htaccess in /albums/.users/
Order deny,allow
Deny from all
Some other questions:
1)
The Coppermine setup instructions do not tell you what GRANT permissions the MySQL user requires. I set up the database and used the same GRANT permissions that I use for tikiwiki :
mysql> grant SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER on cpg132.* to 'username'@'localhost' identified by 'password';
2)
What ARE the file permissions supposed to be for coppermine files? They are all marked "write" by world, is this correct?
3)
I do want to integrate Coppermine with PunBB. Would the early version of Coppermine that actually works (1.1.0) be able to integrate with PunBB? Are there known security issues with cpg 1.1.0 ?
Thanks all!
James