when members of the gallery and I tried to upload appears:
Warning: move_uploaded_file(): SAFE MODE Restriction in effect. The script whose uid is 32086 is not allowed to access /home/civilian/public_html/lloret-de-mar/albums/userpics/10001 owned by uid 99 in /home/civilian/public_html/lloret-de-mar/db_input.php on line 258
what to do?
the gallery is @ http://www.justletmysoulflyfree.net/lloret-de-mar
Try this, http://coppermine.sourceforge.net/manual.php#safe
I´ve done all except this, because I don´t understand it:
Check that at the beginning the the "include/config.inc.php" file, you have a line with : "define('SILLY_SAFE_MODE', 1);"
Ahh, my "include/config.inc.php":
<?php
// Coppermine configuration file
// MySQL configuration
$CONFIG['dbserver'] = "localhost"; // Your database server
$CONFIG['dbuser'] = "???"; // Your mysql username
$CONFIG['dbpass'] = "???"; // Your mysql password
$CONFIG['dbname'] = "???"; // Your mysql database name
// MySQL TABLE NAMES PREFIX
$CONFIG['TABLE_PREFIX'] = "???";
?>
what modification need I to do?
PS: ??? -> not to know :P
Change your file to this;
<?php
// Coppermine configuration file
define('SILLY_SAFE_MODE', 1);
// MySQL configuration
$CONFIG['dbserver'] = "localhost"; // Your database server
$CONFIG['dbuser'] = "???"; // Your mysql username
$CONFIG['dbpass'] = "???"; // Your mysql password
$CONFIG['dbname'] = "???"; // Your mysql database name
// MySQL TABLE NAMES PREFIX
$CONFIG['TABLE_PREFIX'] = "???";
?>
thank you very much
[]