Making registered users able to post in albums by default. Making registered users able to post in albums by default.
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Making registered users able to post in albums by default.

Started by plastikaa, February 16, 2005, 11:33:51 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

plastikaa

At the moment every album I create I have to seperately set the permisions on each one so that visitors can post images. Where can I change this so that all albums are already set to allow visitors to uplaod pics?

kegobeer

To create albums that are set to allow visitor uploads:

In delete.php, look for
$query = "INSERT INTO {$CONFIG['TABLE_ALBUMS']} (category, title, uploads, pos) VALUES ('$category', '" . addslashes($op['album_nm']) . "', 'NO',  '{$op['album_sort']}')";
and change to
$query = "INSERT INTO {$CONFIG['TABLE_ALBUMS']} (category, title, uploads, pos) VALUES ('$category', '" . addslashes($op['album_nm']) . "', 'YES',  '{$op['album_sort']}')";
Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots

plastikaa

Thanks I knew it was in that file somewhere... I just didnt know where to even start looking and thought someone would know which would save me quite a bit of time.