Visualizzazione risultati 1 fino 12 di 12

Discussione: [ratemyphoto] Fatal error

  1. #1
    Guest

    Exclamation [ratemyphoto] Fatal error

    Dopo aver aver passato tutta la giornata dietro a questo errore provo l ultima chance..chi mi puo aiutare?
    ho installato un script per votare le immagini "ratemyphoto"
    ho uppato il tutto e modificato il config.php come nell esempi ma al momento dell install mi appare sta scritta..

    Fatal error: main() [function.require]: Failed opening required '/var/www/html/comm/eng.php' (include_path='.:') in /membri/eluremagazine/comm/config.php on line 69

    qui il link del conf.php
    grazie per un eventuale aiuto
    Ultima modifica di ELureMagazine : 12-05-2007 alle ore 18.37.27

  2. #2
    L'avatar di mythologia
    mythologia non è connesso Moderatore
    Data registrazione
    05-01-2004
    Messaggi
    2,614

    Predefinito

    uhm, sembrerebbe che le tue modifiche al config.php non siano esatte...
    potresti riportare qui il contenuto del file (tranne le password ovviamente)?

  3. #3
    Guest

    Predefinito

    Contenuto del file? intendi config.php?

    Codice PHP:
    <?php
    /* $Id: config.php,v 1.0 2005-08-26 16:23:36-07 brian Exp brian $ */
    // vim: expandtab sw=4 ts=4 sts=4:
    /* Set your language...
    Code: eng for english, nor for norwegian or other... */
    $language = "eng";
    $version = "1.35"; // version of search portal script
    /* allows you to check over photos submitted before they go live
    1 = live on submit
    2 = pending
    */
    $SetPending = '2';
    $AdminAllowComments = '1'; // Allow Comments on Site
    $AdminAllowMsg = '1'; // Allow Comments on Site
    $siteurl = "http://www.eluremagazine.altervista.org/comm"; // no ending slash
    /* for IIS users you will need to add this manually.
    eg: $full_path_to_public_program = "c:/Inet/www/path/auction";
    */
    $full_path_to_public_program = $_SERVER['DOCUMENT_ROOT']."/comm"; // no ending slash
    $upload_dir = "$full_path_to_public_program/comm/pictures"; // no ending slash
    /* Your emailadress. BE SURE TO SET. */
    $from_address = "info@domain.com";
    define('FLOOD_TIMEOUT',"1800"); // defines max time they have to wait before sending messages. used for slowing down spam
    define(MAXFILE_SIZE,"500000"); // defines max file size for images
    define(MAXIMAGE_W_SIZE,"500"); // defines max image width size for uploaded images
    define(MAXIMAGE_H_SIZE,"500"); // defines max image height size for uploaded images


    /* How many members do you want per page*/
    $admin_member_per_page = 25;
    /* Number of profiles per each page */
    $number_of_ads_per_page = 16;

    /* Table names must be set here */
    $admintbl = "admin";
    $usr_tbl = "users";
    $cat_tbl = "categories";
    $comment_tbl = "comments";
    $msg_tbl = "emailmesg";
    $pic_tbl = "picture";
    $secure_image = "security_images";
    $rating_tbl = "rating";
    $sess_tbl = "session";
    /*
    1=HTTP Authentication
    0 or '' = html login
    only use this if you do not have permissions to create a .htaccess/.htpasswd files.
    */
    $logintype["http"] = ''; //specifies the login type

    // set to on (1) it will NOT clean out the session db table automatically.
    $GLOBALS['noshutdownfunc'] = 1;
    // Do not edit below unless you change install directory:
    $full_path_to_db = "$full_path_to_public_program/adminpanel/db.php";
    if (
    file_exists($full_path_to_db))
    {
    require(
    $full_path_to_db);
    }
    require(
    "$full_path_to_public_program/$language.php");


    include_once(
    "$full_path_to_public_program/adminpanel/func.php");
    ?>
    Ultima modifica di ELureMagazine : 12-05-2007 alle ore 20.25.52

  4. #4
    L'avatar di funcool
    funcool non è connesso Utente storico
    Data registrazione
    05-02-2004
    Residenza
    Qui... Non lì, qui!
    Messaggi
    15,433

    Predefinito

    Credo che dovresti andare a capo prima di:
    Codice PHP:
    $upload_dir = "$full_path_to_public_program/comm/pictures"; // no ending slash
    Mattia vi manda a FunCool - Matriz - Directory Gogol - Sfondo rosso per la Birmania
    «Tu mi dai fastidio perché ti credi tanto un Dio!» «Bè, dovrò pur prendere un modello a cui ispirarmi, no?» Woody Allen

  5. #5
    Guest

    Predefinito

    Citazione Originalmente inviato da funcool
    Credo che dovresti andare a capo prima di:
    Codice PHP:
    $upload_dir = "$full_path_to_public_program/comm/pictures"; // no ending slash
    Si li ho fatto casino ora,, l originale e a capo.
    volevo evidenziare la zona ma non ci sono riuscito..

  6. #6
    L'avatar di mythologia
    mythologia non è connesso Moderatore
    Data registrazione
    05-01-2004
    Messaggi
    2,614

    Predefinito

    L'errore dovrebbe correggersi così, spero:

    Codice PHP:
    <?php
    /* $Id: config.php,v 1.0 2005-08-26 16:23:36-07 brian Exp brian $ */
    // vim: expandtab sw=4 ts=4 sts=4:
    /* Set your language...
    Code: eng for english, nor for norwegian or other... */
    $language = "eng";
    $version = "1.35"; // version of search portal script
    /* allows you to check over photos submitted before they go live
    1 = live on submit
    2 = pending
    */
    $SetPending = '2';
    $AdminAllowComments = '1'; // Allow Comments on Site
    $AdminAllowMsg = '1'; // Allow Comments on Site
    $siteurl = "http://www.eluremagazine.altervista.org/comm"; // no ending slash
    /* for IIS users you will need to add this manually.
    eg: $full_path_to_public_program = "c:/Inet/www/path/auction";
    */
    $full_path_to_public_program = "/membri/eluremagazine/comm"; // no ending slash
    $upload_dir = "$full_path_to_public_program/comm/pictures"; // no ending slash
    /* Your emailadress. BE SURE TO SET. */
    $from_address = "info@domain.com";
    define('FLOOD_TIMEOUT',"1800"); // defines max time they have to wait before sending messages. used for slowing down spam
    define(MAXFILE_SIZE,"500000"); // defines max file size for images
    define(MAXIMAGE_W_SIZE,"500"); // defines max image width size for uploaded images
    define(MAXIMAGE_H_SIZE,"500"); // defines max image height size for uploaded images


    /* How many members do you want per page*/
    $admin_member_per_page = 25;
    /* Number of profiles per each page */
    $number_of_ads_per_page = 16;

    /* Table names must be set here */
    $admintbl = "admin";
    $usr_tbl = "users";
    $cat_tbl = "categories";
    $comment_tbl = "comments";
    $msg_tbl = "emailmesg";
    $pic_tbl = "picture";
    $secure_image = "security_images";
    $rating_tbl = "rating";
    $sess_tbl = "session";
    /*
    1=HTTP Authentication
    0 or '' = html login
    only use this if you do not have permissions to create a .htaccess/.htpasswd files.
    */
    $logintype["http"] = ''; //specifies the login type

    // set to on (1) it will NOT clean out the session db table automatically.
    $GLOBALS['noshutdownfunc'] = 1;
    // Do not edit below unless you change install directory:
    $full_path_to_db = "$full_path_to_public_program/adminpanel/db.php";
    if (
    file_exists($full_path_to_db))
    {
    require(
    $full_path_to_db);
    }
    require(
    "$full_path_to_public_program/$language.php");


    include_once(
    "$full_path_to_public_program/adminpanel/func.php");
    ?>
    L'errore dovrebbe essere nel path indicato... prova e fai sapere

  7. #7
    Guest

    Predefinito

    Grazie mille! funziona
    :)

  8. #8
    L'avatar di mythologia
    mythologia non è connesso Moderatore
    Data registrazione
    05-01-2004
    Messaggi
    2,614

  9. #9
    Guest

    Predefinito

    Eh mi sa che ancora lunga la cosa..
    non ci si puo registrare perche non mostra la security image..
    :(

  10. #10
    L'avatar di funcool
    funcool non è connesso Utente storico
    Data registrazione
    05-02-2004
    Residenza
    Qui... Non lì, qui!
    Messaggi
    15,433

    Predefinito

    Ti esce qualche errore? Qual è il codice della pagina con l'errore?
    Mattia vi manda a FunCool - Matriz - Directory Gogol - Sfondo rosso per la Birmania
    «Tu mi dai fastidio perché ti credi tanto un Dio!» «Bè, dovrò pur prendere un modello a cui ispirarmi, no?» Woody Allen

  11. #11
    Guest

    Predefinito

    No non mi da nessune errore..
    semplicemnte quando apro il form d iscrizione in fondo non si visualizza e quindi nonsi puo procedere oltre.
    cliccando con il tasto destr su "mostra immagine" non succede nulla uguale. anche con i refresh.

    link
    ho fatto una provaaggiungendo foto in admnin ma nemmeno le foto normali mi visualizza..
    Credo lo reinstallerò..poi basta se non va.. ci metto una pietra sopra.
    Ultima modifica di ELureMagazine : 13-05-2007 alle ore 19.28.43

  12. #12
    L'avatar di mythologia
    mythologia non è connesso Moderatore
    Data registrazione
    05-01-2004
    Messaggi
    2,614

    Predefinito

    Non so, forse l'errore potrebbe dipendere da un /comm in più nella variabile $upload_dir...
    Prova così:

    Codice PHP:
    <?php
    /* $Id: config.php,v 1.0 2005-08-26 16:23:36-07 brian Exp brian $ */
    // vim: expandtab sw=4 ts=4 sts=4:
    /* Set your language...
    Code: eng for english, nor for norwegian or other... */
    $language = "eng";
    $version = "1.35"; // version of search portal script
    /* allows you to check over photos submitted before they go live
    1 = live on submit
    2 = pending
    */
    $SetPending = '2';
    $AdminAllowComments = '1'; // Allow Comments on Site
    $AdminAllowMsg = '1'; // Allow Comments on Site
    $siteurl = "http://www.eluremagazine.altervista.org/comm"; // no ending slash
    /* for IIS users you will need to add this manually.
    eg: $full_path_to_public_program = "c:/Inet/www/path/auction";
    */
    $full_path_to_public_program = "/membri/eluremagazine/comm"; // no ending slash
    $upload_dir = "$full_path_to_public_program/pictures"; // no ending slash
    /* Your emailadress. BE SURE TO SET. */
    $from_address = "info@domain.com";
    define('FLOOD_TIMEOUT',"1800"); // defines max time they have to wait before sending messages. used for slowing down spam
    define(MAXFILE_SIZE,"500000"); // defines max file size for images
    define(MAXIMAGE_W_SIZE,"500"); // defines max image width size for uploaded images
    define(MAXIMAGE_H_SIZE,"500"); // defines max image height size for uploaded images


    /* How many members do you want per page*/
    $admin_member_per_page = 25;
    /* Number of profiles per each page */
    $number_of_ads_per_page = 16;

    /* Table names must be set here */
    $admintbl = "admin";
    $usr_tbl = "users";
    $cat_tbl = "categories";
    $comment_tbl = "comments";
    $msg_tbl = "emailmesg";
    $pic_tbl = "picture";
    $secure_image = "security_images";
    $rating_tbl = "rating";
    $sess_tbl = "session";
    /*
    1=HTTP Authentication
    0 or '' = html login
    only use this if you do not have permissions to create a .htaccess/.htpasswd files.
    */
    $logintype["http"] = ''; //specifies the login type

    // set to on (1) it will NOT clean out the session db table automatically.
    $GLOBALS['noshutdownfunc'] = 1;
    // Do not edit below unless you change install directory:
    $full_path_to_db = "$full_path_to_public_program/adminpanel/db.php";
    if (
    file_exists($full_path_to_db))
    {
    require(
    $full_path_to_db);
    }
    require(
    "$full_path_to_public_program/$language.php");


    include_once(
    "$full_path_to_public_program/adminpanel/func.php");
    ?>

Regole di scrittura

  • Non puoi creare nuove discussioni
  • Non puoi rispondere ai messaggi
  • Non puoi inserire allegati.
  • Non puoi modificare i tuoi messaggi
  •