Batch add - no listing with no errors displayed Batch add - no listing with no errors displayed
 

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

Batch add - no listing with no errors displayed

Started by kegobeer, June 10, 2005, 05:54:15 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

kegobeer

If you are trying to use the batch add function, but you don't get any directories listed, and you've verified all of your file permissions are correct, you can try this:

In seachnew.php, find

function display_dir_tree($folder, $ident)

below that, replace

if (!is_readable($dir_path)) return;

with
//if (!is_readable($dir_path)) return;

If that doesn't help, continue further down that function, and replace

        //if (is_dir($CONFIG['fullpath'] . $folder . $file) && $file != "." && $file != "..") { // removed by following line for 'do not show folders with dots': gaugau 03-11-02
        if (is_dir($CONFIG['fullpath'] . $folder . $file) && substr($file,0,1) != "." && strpos($file,"'") == FALSE && $file != substr($CONFIG['userpics'],0,strlen($CONFIG['userpics'])-1)  && $file != "edit" ) {


with

        if (is_dir($CONFIG['fullpath'] . $folder . $file) && $file != "." && $file != "..") { // removed by following line for 'do not show folders with dots': gaugau 03-11-02
        //if (is_dir($CONFIG['fullpath'] . $folder . $file) && substr($file,0,1) != "." && strpos($file,"'") == FALSE && $file != substr($CONFIG['userpics'],0,strlen($CONFIG['userpics'])-1)  && $file != "edit" ) {


is_readable may have trouble on some servers that have safe mode enabled in php.ini.
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

Joachim Müller

Warning: there appear to be some users who haven't understood the concept of batch-adding, so they apply this hack without knowing what batch-add is all about: you mustn't FTP-upload to the userpics folder, but to a custom folder you have to create first within the albums folder. The userpics folder is not meant to turn up when using batch-add: it's hidden on purpose. Coppermine uses the userpics folder for internal stuff (this is where the http uploads are stored), you mustn't use it for batch-adding. Before applying the hack posted by kegobeer, make sure you have read the docs, especially the batch-add section. Verify that you have set permissions as suggested. I repeat: don't FTP-upload to the userpics folder. Never ever!