Visualizzazione dei risultati da 1 a 9 su 9
  1. #1

    [PHP]Coppermine gallery

    Allora , il mio problema , o meglio i miei 2 Problemi sono :
    per risolvere l'impossibilità di avere una galleria php sul mio server win aruba , ho installato coppermine stand alone su un'altro server altervista , ho installato , tutto ok , creato gli album e le categorie e abilitato all'upload anche i non registrati ...
    ma quando provo ad inserire immagini (che inserisce cottettamente ) mi da errore di warning :

    Warning: getmypid() has been disabled for security reasons in /membri2/webmyaltea/upload.php on line 501

    Warning: getmypid() has been disabled for security reasons in /membri2/webmyaltea/upload.php on line 501
    ed il codice in questione è questo :
    codice:
             // Create a random seed by taking the first 8 characters of an MD5 hash of a concatenation of the current UNIX epoch time and the current server process ID.
                    $seed = substr(md5(microtime().getmypid()), 0, 8);
    
                    // Assemble the file path.
                    $path_to_image = "./{$CONFIG['fullpath']}edit/". $prefix . $seed . '.' . $suffix;
    
                } while (file_exists($path_to_image));
    
                // Create a holder called $tempname.
                $tempname = $prefix . $seed . '.' . $suffix;
    
                //Now we upload the file.
                if (!(move_uploaded_file($_FILES['file_upload_array']['tmp_name'][$counter], $path_to_image))) {
    
                    // The file upload has failed.
    
                    $file_failure_array[] = array( 'failure_ordinal'=>$failure_ordinal, 'file_name'=> $file_name, 'error_code'=>$lang_upload_php['impossible']);
    
                    // There is no need for further tests or action, so skip the remainder of the iteration.
                    continue;
    
                }
    
                // Change file permission
                chmod($path_to_image, octdec($CONFIG['default_file_mode']));
    le cartelle sia quelle di destinazione file utenti albums e userpics sono a chmod 775 , ho provato ad impostare a777 ma non posso
    quqlcuno mi cambia il codice in modo che non controlli questo valore getmypid() , o comunque mi sa dire se nel cod è attivo o no e se c'è da uqlche parte un debug da disabilitare ( adesso nel pannello controllo non è attivo ) tipo quello che da gli errori quando si lavora con nuke in locale che si disabilità ? x che io in coppermine non so dove sbattere la capoccia , e questo era il primo problema ,

    problema 2 : è possibile eliminatre il controllo e la supervisione dell'amministratore per le immagini inserite cossicchè chi le posta può subito vederle e ad esempio linkarle nel forum senza aspettare che io alla sera le approvi ...
    mille grazie a chi avrà la voglia e la pazienza di rispondermi
    luca
    webmaster e presidente del
    Seat Altea Passion Club
    WWW.SEAT.ALTEA.IT

  2. #2
    nessuno che sappia aiutarmi
    webmaster e presidente del
    Seat Altea Passion Club
    WWW.SEAT.ALTEA.IT

  3. #3
    Dovresti postare la riga 501 del file indicato nel warning o almeno indicarla con precisione nel codice che hai postato

  4. #4


    giusto non sono segnate :

    501=
    $unique_ID = substr(md5(microtime().getmypid()), 0, 8);
    webmaster e presidente del
    Seat Altea Passion Club
    WWW.SEAT.ALTEA.IT

  5. #5
    Cmq io credo che si debba attivare quella funzione. Prova a vedere nel file di configurazione dello script: dovrebbe chiamarsi config

  6. #6
    non mi sembra : ti posto il file visto che non è grandissimo

    codice:
    <?php
    /*************************
      Coppermine Photo Gallery
      ************************
      Copyright (c) 2003-2005 Coppermine Dev Team
      v1.1 originaly written by Gregory DEMAR
    
      This program is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published by
      the Free Software Foundation; either version 2 of the License, or
      (at your option) any later version.
      ********************************************
      Coppermine version: 1.3.3
      $Source: /cvsroot/coppermine/stable/config.php,v $
      $Revision: 1.13 $
      $Author: gaugau $
      $Date: 2005/04/19 03:17:10 $
    **********************************************/
    
    define('IN_COPPERMINE', true);
    define('CONFIG_PHP', true);
    
    require('include/init.inc.php');
    require('include/sql_parse.php');
    
    if (!GALLERY_ADMIN_MODE) cpg_die(ERROR, $lang_errors['access_denied'], __FILE__, __LINE__);
    
    function form_label($text)
    {
        echo <<<EOT
            <tr>
                    <td class="tableh2" colspan="2">
                            $text
                    </td>
            </tr>
    
    EOT;
    }
    
    function form_input($text, $name)
    {
        global $CONFIG;
    
        $value = $CONFIG[$name];
    
        echo <<<EOT
            <tr>
                <td width="60%" class="tableb">
                            $text
            </td>
            <td width="40%" class="tableb" valign="top">
                    <input type="text" maxlength="255" class="textinput" style="width: 100%" name="$name" value="$value">
                    </td>
            </tr>
    
    EOT;
    }
    
    function form_yes_no($text, $name)
    {
        global $CONFIG, $lang_yes, $lang_no;
    
        $value = $CONFIG[$name];
        $yes_selected = $value ? 'checked="checked"' : '';
        $no_selected = !$value ? 'checked="checked"' : '';
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <input type="radio" id="{$name}1" name="$name" value="1" $yes_selected /><label for="{$name}1" class="clickable_option">$lang_yes</label>
                            
                            <input type="radio" id="{$name}0" name="$name" value="0" $no_selected /><label for="{$name}0" class="clickable_option">$lang_no</label>
                    </td>
            </tr>
    
    EOT;
    }
    
    function form_img_pkg($text, $name)
    {
        global $CONFIG;
    
        $value = $CONFIG[$name];
        $im_selected = ($value == 'im') ? 'selected' : '';
        $gd1_selected = ($value == 'gd1') ? 'selected' : '';
        $gd2_selected = ($value == 'gd2') ? 'selected' : '';
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <select name="$name" class="listbox">
                                    <option value="im" $im_selected>Image Magick</option>
                                    <option value="gd1" $gd1_selected>GD version 1.x</option>
                                    <option value="gd2" $gd2_selected>GD version 2.x</option>
                            </select>
                    </td>
            </tr>
    
    EOT;
    }
    
    function form_sort_order($text, $name)
    {
        global $CONFIG, $lang_config_php;
    
        $value = $CONFIG[$name];
        $ta_selected = ($value == 'ta') ? 'selected' : '';
        $td_selected = ($value == 'td') ? 'selected' : '';
        $na_selected = ($value == 'na') ? 'selected' : '';
        $nd_selected = ($value == 'nd') ? 'selected' : '';
        $da_selected = ($value == 'da') ? 'selected' : '';
        $dd_selected = ($value == 'dd') ? 'selected' : '';
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <select name="$name" class="listbox">
                                    <option value="ta" $ta_selected>{$lang_config_php['title_a']}</option>
                                    <option value="td" $td_selected>{$lang_config_php['title_d']}</option>
                                    <option value="na" $na_selected>{$lang_config_php['name_a']}</option>
                                    <option value="nd" $nd_selected>{$lang_config_php['name_d']}</option>
                                    <option value="da" $da_selected>{$lang_config_php['date_a']}</option>
                                    <option value="dd" $dd_selected>{$lang_config_php['date_d']}</option>
                            </select>
                    </td>
            </tr>
    
    EOT;
    }
    
    function form_charset($text, $name)
    {
        global $CONFIG;
    
        $charsets = array('Default' => 'language file',
            'Arabic' => 'iso-8859-6',
            'Baltic' => 'iso-8859-4',
            'Central European' => 'iso-8859-2',
            'Chinese Simplified' => 'euc-cn',
            'Chinese Traditional' => 'big5',
            'Cyrillic' => 'koi8-r',
            'Greek' => 'iso-8859-7',
            'Hebrew' => 'iso-8859-8-i',
            'Icelandic' => 'x-mac-icelandic',
            'Japanese' => 'euc-jp',
            'Korean' => 'euc-kr',
            'Maltese' => 'iso-8859-3',
            'Thai' => 'windows-874 ',
            'Turkish' => 'iso-8859-9',
            'Unicode' => 'utf-8',
            'Vietnamese' => 'windows-1258',
            'Western' => 'iso-8859-1'
            );
    
        $value = strtolower($CONFIG[$name]);
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <select name="$name" class="listbox">
    
    EOT;
        foreach ($charsets as $country => $charset) {
            echo "                                <option value=\"$charset\" " . ($value == $charset ? 'selected' : '') . ">$country ($charset)</option>\n";
        }
        echo <<<EOT
                            </select>
                    </td>
            </tr>
    
    EOT;
    }
    
    function form_language($text, $name)
    {
        global $CONFIG;
    
        $value = strtolower($CONFIG[$name]);
        $lang_dir = 'lang/';
    
        $dir = opendir($lang_dir);
        while ($file = readdir($dir)) {
            if (is_file($lang_dir . $file) && strtolower(substr($file, -4)) == '.php') {
                $lang_array[] = strtolower(substr($file, 0 , -4));
            }
        }
        closedir($dir);
    
        natcasesort($lang_array);
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <select name="$name" class="listbox">
    
    EOT;
        foreach ($lang_array as $language) {
            echo "                                <option value=\"$language\" " . ($value == $language ? 'selected' : '') . ">" . ucfirst($language) . "</option>\n";
        }
        echo <<<EOT
                            </select>
                    </td>
            </tr>
    
    EOT;
    }
    ..............
    webmaster e presidente del
    Seat Altea Passion Club
    WWW.SEAT.ALTEA.IT

  7. #7
    .....
    codice:
    function form_theme($text, $name)
    {
        global $CONFIG;
    
        $result = db_query("SELECT value FROM {$CONFIG['TABLE_CONFIG']} WHERE name = 'theme'");
        list($value) = mysql_fetch_row($result);
        mysql_free_result($result);
    
        $theme_dir = 'themes/';
    
        $dir = opendir($theme_dir);
        while ($file = readdir($dir)) {
            if (is_dir($theme_dir . $file) && $file != "." && $file != "..") {
                $theme_array[] = $file;
            }
        }
        closedir($dir);
    
        natcasesort($theme_array);
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <select name="$name" class="listbox">
    
    EOT;
        foreach ($theme_array as $theme) {
            echo "                                <option value=\"$theme\" " . ($value == $theme ? 'selected' : '') . ">" . strtr(ucfirst($theme), '_', ' ') . "</option>\n";
        }
        echo <<<EOT
                            </select>
                    </td>
            </tr>
    
    EOT;
    }
    // Added for allowing user to select which aspect of thumbnails to scale
    function form_scale($text, $name)
    {
       global $CONFIG, $lang_config_php ;
    
        $value = $CONFIG[$name];
        $any_selected = ($value == 'max') ? 'selected' : '';
        $ht_selected = ($value == 'ht') ? 'selected' : '';
        $wd_selected = ($value == 'wd') ? 'selected' : '';
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <select name="$name" class="listbox">
                                    <option value="any" $any_selected>{$lang_config_php['th_any']}</option>
                                    <option value="ht" $ht_selected>{$lang_config_php['th_ht']}</option>
                                    <option value="wd" $wd_selected>{$lang_config_php['th_wd']}</option>
                            </select>
                    </td>
            </tr>
    
    EOT;
    }
    
    function form_lang_theme($text, $name)
    {
        global $CONFIG, $lang_yes, $lang_no, $lang_config_php;
    
        $value = $CONFIG[$name];
        $no_selected = ($value == '0') ? 'checked="checked"' : '';
        $yes_1_selected = ($value == '1') ? 'checked="checked"' : '';
        $yes_2_selected = ($value == '2') ? 'checked="checked"' : '';
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <input type="radio" id="{$name}0" name="$name" value="0" $no_selected /><label for="{$name}0" class="clickable_option">$lang_no</label>
                            
                            <input type="radio" id="{$name}1" name="$name" value="1" $yes_1_selected /><label for="{$name}1" class="clickable_option">$lang_yes:{$lang_config_php['item']}</label>
                            
                            <input type="radio" id="{$name}2" name="$name" value="2" $yes_2_selected /><label for="{$name}2" class="clickable_option">$lang_yes:{$lang_config_php['label']}+{$lang_config_php['item']}</label>
            </td>
            </tr>
    
    EOT;
    }
    
    function form_lang_debug($text, $name)
    {
        global $CONFIG, $lang_yes, $lang_no, $lang_config_php;
    
        $value = $CONFIG[$name];
        $no_selected = ($value == '0') ? 'checked="checked"' : '';
        $yes_1_selected = ($value == '1') ? 'checked="checked"' : '';
        $yes_2_selected = ($value == '2') ? 'checked="checked"' : '';
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <input type="radio" id="{$name}0" name="$name" value="0" $no_selected /><label for="{$name}0" class="clickable_option">$lang_no</label>
                            
                            <input type="radio" id="{$name}1" name="$name" value="1" $yes_1_selected /><label for="{$name}1" class="clickable_option">$lang_yes:{$lang_config_php['debug_everyone']}</label>
                            
                            <input type="radio" id="{$name}2" name="$name" value="2" $yes_2_selected /><label for="{$name}2" class="clickable_option">$lang_yes:{$lang_config_php['debug_admin']}</label>
            </td>
            </tr>
    
    EOT;
    }
    
    function form_number_dropdown($text, $name)
    {
       global $CONFIG, $lang_config_php ;
    
        echo <<<EOT
            <tr>
                <td class="tableb">
                            $text
            </td>
            <td class="tableb" valign="top">
                            <select name="$name" class="listbox">
    EOT;
            for ($i = 5; $i <= 25; $i++) {
            echo "<option value=\"".$i."\"";
            if ($i == $CONFIG[$name]) { echo " selected=\"selected\"";}
            echo ">".$i."</option>\n";
            }
         echo <<<EOT
         </select>
                    </td>
            </tr>
    EOT;
    }
    
    
    function create_form(&$data)
    {
        foreach($data as $element) {
            if ((is_array($element))) {
                switch ($element[2]) {
                    case 0 :
                        form_input($element[0], $element[1]);
                        break;
                    case 1 :
                        form_yes_no($element[0], $element[1]);
                        break;
                    case 2 :
                        form_img_pkg($element[0], $element[1]);
                        break;
                    case 3 :
                        form_sort_order($element[0], $element[1]);
                        break;
                    case 4 :
                        form_charset($element[0], $element[1]);
                        break;
                    case 5 :
                        form_language($element[0], $element[1]);
                        break;
                    case 6 :
                        form_theme($element[0], $element[1]);
                        break;
                    // Thumbnail scaling
                    case 7 :
                        form_scale($element[0], $element[1]);
                        break;
                    // Language + Theme selection
                    case 8 :
                        form_lang_theme($element[0], $element[1]);
                        break;
                    // debug mode selection
                    case 9 :
                        form_lang_debug($element[0], $element[1]);
                        break;
                    // tabbed display fix
                    case 10 :
                        form_number_dropdown($element[0], $element[1]);
                        break;
                    default:
                        die('Invalid action');
                } // switch
            } else {
                form_label($element);
            }
        }
    }
    
    if (count($HTTP_POST_VARS) > 0) {
        if (isset($HTTP_POST_VARS['update_config'])) {
            $need_to_be_positive = array('albums_per_page',
                'album_list_cols',
                'max_tabs',
                'picture_width',
                'subcat_level',
                'thumb_width',
                'thumbcols',
                'thumbrows',
                // Show filmstrip
                'max_film_strip_items');
    
            // Code to rename system thumbs in images folder
            $old_thumb_pfx =& $CONFIG['thumb_pfx'];
    
            if ($old_thumb_pfx != $HTTP_POST_VARS['thumb_pfx']) {
                $folders = array('images/', $THEME_DIR.'images/');
                foreach ($folders as $folder) {
                    $thumbs = cpg_get_system_thumb_list($folder);
                    foreach ($thumbs as $thumb) {
                        @rename($folder.$thumb['filename'],
                                $folder.str_replace($old_thumb_pfx,$HTTP_POST_VARS['thumb_pfx'],$thumb['filename']));
                    }
                }
            }
    
            foreach ($need_to_be_positive as $parameter)
            $HTTP_POST_VARS[$parameter] = max(1, (int)$HTTP_POST_VARS[$parameter]);
    
            foreach($lang_config_data as $element) {
                if ((is_array($element))) {
                    if ((!isset($HTTP_POST_VARS[$element[1]]))) cpg_die(CRITICAL_ERROR, "Missing config value for '{$element[1]}'", __FILE__, __LINE__);
                    $value = addslashes($HTTP_POST_VARS[$element[1]]);
                    db_query("UPDATE {$CONFIG['TABLE_CONFIG']} SET  value = '$value' WHERE name = '{$element[1]}'");
                }
            }
            pageheader($lang_config_php['title']);
            msg_box($lang_config_php['info'], $lang_config_php['upd_success'], $lang_continue, 'index.php');
    
        } elseif (isset($HTTP_POST_VARS['restore_config'])) {
            $default_config = 'sql/basic.sql';
            $sql_query = fread(fopen($default_config, 'r'), filesize($default_config));
            $sql_query = preg_replace('/CPG_/', $CONFIG['TABLE_PREFIX'], $sql_query);
            db_query("TRUNCATE TABLE {$CONFIG['TABLE_CONFIG']}");
            db_query("TRUNCATE TABLE {$CONFIG['TABLE_FILETYPES']}");
            $sql_query = remove_remarks($sql_query);
            $sql_query = split_sql_file($sql_query, ';');
    
            $sql_count = count($sql_query);
            for($i = 0; $i < $sql_count; $i++) if (strpos($sql_query[$i],'_config') || strpos($sql_query[$i],'_filetypes')) db_query($sql_query[$i]);
                  pageheader($lang_config_php['title']);
                msg_box($lang_config_php['info'], $lang_config_php['restore_success'], $lang_continue, $PHP_SELF);
        }
        pagefooter();
        exit;
    }
    
    pageheader($lang_config_php['title']);
    
    $signature = 'Coppermine Photo Gallery ' . COPPERMINE_VERSION;
    
    starttable('100%', "{$lang_config_php['title']} - $signature", 2);
    echo <<<EOT
            <form action="$PHP_SELF" method="post">
    
    EOT;
    create_form($lang_config_data);
    echo <<<EOT
            <tr>
                <td colspan="2" align="center" class="tablef">
                            <input type="submit" class="button" name="update_config" value="{$lang_config_php['save_cfg']}">
                            
                            <input type="submit" class="button" name="restore_config" value="{$lang_config_php['restore_cfg']}">
                    </td>
            </form>
            </tr>
    
    EOT;
    endtable();
    pagefooter();
    ob_end_flush();
    
    ?>
    webmaster e presidente del
    Seat Altea Passion Club
    WWW.SEAT.ALTEA.IT

  8. #8
    Ma questo è il file di configurazione?

  9. #9
    Ho fatto una ricerca sul sito di php ed ho scoperto che getmypid() è una funzione di php. Quindi è disabilitata a livello di php.ini. Mi dispiace ma a questo punto non so aiutarti!

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.