Visualizzazione risultati 1 fino 11 di 11

Discussione: ALTERVISTA DRIVE E DESTINAZIONE DEI FILES CARICATI

  1. #1
    Guest

    Predefinito

    :?
    Salve a tutti. Sicuramente la domanda sarà stata posta 100 volte ma io non ho trovato traccia di ciò per cui volevo porla t tutti voi:

    - I files che vengono caricati tramite ALTERVISTADRIVE dove vanno a finire? E se io volessi indirizzarli chessò in una mia directory nel mio ftp?

    Grazie a tutti

    www.worldhandball.it

  2. #2
    Guest

    Predefinito

    I files dovrebbero essere salvati nell'hard disk virtuale.
    Se vuoi salvare i files in una directory ftp devi necessariamente usare uno script php e non il drive.

  3. #3
    Guest

    Predefinito

    Il problema è che ho si trovato uno script per l'upload dei files ma mi chiede il percorso dove volerli mettere; io glie lo do ma mi dice che non uploadarli sul server.

    il percorso corretto dovrebbe essere:

    ftp://username:password@nickname.alt...sottodirectory etc..

    Ma non riesco a farlo. Come mai??

  4. #4
    Guest

    Predefinito

    Non devi inserire l'ind. ftp ma quello http://
    per es. se vuoi che i tuoi file vadano alla radice del tuo spazio devi scrivere: http://nickname.altervista.org/ oppure se vuoi inserire i file in una cartella http://nickname.altervista.org/nomecartella

    se poi vuole l'url preciso di dove si trova sul server devi inserire: /membri/tuonick/(cartellachevuoitu) .

  5. #5
    Guest

    Predefinito

    TI ringrazio del suggerimento ma non ne sono venuto a capo

    Io ho inserito sia http:/nickname.altervista.org

    sia

    la cartella precisa a seguire ma lo script mi dice che non posso inviare il file al server.
    Sai indicarmi uno script che lo faccia o come comportarmi??

    Grazie

  6. #6
    Guest

    Predefinito

    Posta lo script...

  7. #7
    Guest

    Predefinito

    :? ecco lo script:

    <?
    //user defined variables
    $abpath = "http://worldhandball.altervista.org"; //Absolute path to where images are uploaded. No trailing slash
    $sizelim = "no"; //Do you want size limit, yes or no
    $size = "2500000"; //What do you want size limited to be if there is one

    //all image types to upload
    $cert1 = "image/pjpeg"; //Jpeg type 1
    $cert2 = "image/jpeg"; //Jpeg type 2
    $cert3 = "image/gif"; //Gif type
    $cert4 = "image/ief"; //Ief type
    $cert5 = "image/png"; //Png type
    $cert6 = "image/tiff"; //Tiff type
    $cert7 = "image/bmp"; //Bmp Type
    $cert8 = "image/vnd.wap.wbmp"; //Wbmp type
    $cert9 = "image/x-cmu-raster"; //Ras type
    $cert10 = "image/x-x-portable-anymap"; //Pnm type
    $cert11 = "image/x-portable-bitmap"; //Pbm type
    $cert12 = "image/x-portable-graymap"; //Pgm type
    $cert13 = "image/x-portable-pixmap"; //Ppm type
    $cert14 = "image/x-rgb"; //Rgb type
    $cert15 = "image/x-xbitmap"; //Xbm type
    $cert16 = "image/x-xpixmap"; //Xpm type
    $cert17 = "image/x-xwindowdump"; //Xwd type

    $log = "";


    if ($img5_name == "") {
    $log .= "Nessun file selezionato<br>";
    }
    if ($img5_name != "") {
    //checks if file exists
    if (file_exists("$abpath/$img5_name")) {
    $log .= "Il file esiste già<br>";
    } else {

    //checks if files to big
    if ($sizelim == "yes") {
    if ($img5_size > $size) {
    $log .= "Il file non può essere più grande di 2.5 mb<br>";
    }
    }

    //Checks if file is an image
    if (($img5_type == $cert1) or ($img5_type == $cert2) or ($img5_type == $cert3) or ($img5_type == $cert4) or
    ($img5_type == $cert5) or ($img5_type == $cert6) or ($img5_type == $cert7) or ($img5_type == $cert8) or
    ($img5_type == $cert9) or ($img5_type == $cert10) or ($img5_type == $cert11) or ($img5_type == $cert12) or
    ($img5_type == $cert13) or ($img5_type == $cert14) or ($img5_type == $cert15) or ($img5_type == $cert16) or
    ($img5_type == $cert17))
    {@copy("$abpath/$img5_name") or $log .= "Non posso copiare l'immagine sul server<br>";
    if (file_exists("$abpath/$img5_name")) {
    $log .= "Il file è stato uploadato<br>";
    }

    } else {
    $log .= "IL file non è un immagine supportata<br>";
    }
    }
    }
    ?>
    <html>
    <head>
    <title>Report</title>
    </head>
    <body>
    <p>Log:<br>
    <?

    echo "$log";

    ?>
    </p>
    <body>
    <html>


    Grazie

  8. #8
    Guest

    Predefinito

    Citazione Originalmente inviato da worldhandball
    :? ecco lo script:

    <?
    //user defined variables
    $abpath = "http://worldhandball.altervista.org"; //Absolute path to where images are uploaded. No trailing slash
    $sizelim = "no"; //Do you want size limit, yes or no
    $size = "2500000"; //What do you want size limited to be if there is one

    cut....

    Grazie
    Prima di tutto non si possono uppare file maggiori di 2mb...
    poi dopo l'indirizzo da inserire è "membri/worldhandball/(nome della cartella dove andranno le img)

    quindi:

    [code:1:baf2ff246a]
    <?
    //user defined variables
    $abpath = "membri/worldhandball/(nome della cartella dove andranno le img)";
    $sizelim = "yes"; //Do you want size limit, yes or no
    $size = "2000000"; //What do you want size limited to be if there is one

    //all image types to upload
    $cert1 = "image/pjpeg"; //Jpeg type 1
    $cert2 = "image/jpeg"; //Jpeg type 2
    $cert3 = "image/gif"; //Gif type
    $cert4 = "image/ief"; //Ief type
    $cert5 = "image/png"; //Png type
    $cert6 = "image/tiff"; //Tiff type
    $cert7 = "image/bmp"; //Bmp Type
    $cert8 = "image/vnd.wap.wbmp"; //Wbmp type
    $cert9 = "image/x-cmu-raster"; //Ras type
    $cert10 = "image/x-x-portable-anymap"; //Pnm type
    $cert11 = "image/x-portable-bitmap"; //Pbm type
    $cert12 = "image/x-portable-graymap"; //Pgm type
    $cert13 = "image/x-portable-pixmap"; //Ppm type
    $cert14 = "image/x-rgb"; //Rgb type
    $cert15 = "image/x-xbitmap"; //Xbm type
    $cert16 = "image/x-xpixmap"; //Xpm type
    $cert17 = "image/x-xwindowdump"; //Xwd type

    $log = "";


    if ($img5_name == "") {
    $log .= "Nessun file selezionato<br>";
    }
    if ($img5_name != "") {
    //checks if file exists
    if (file_exists("$abpath/$img5_name")) {
    $log .= "Il file esiste già<br>";
    } else {

    //checks if files to big
    if ($sizelim == "yes") {
    if ($img5_size > $size) {
    $log .= "Il file non può essere più grande di 2.5 mb<br>";
    }
    }

    //Checks if file is an image
    if (($img5_type == $cert1) or ($img5_type == $cert2) or ($img5_type == $cert3) or ($img5_type == $cert4) or
    ($img5_type == $cert5) or ($img5_type == $cert6) or ($img5_type == $cert7) or ($img5_type == $cert8) or
    ($img5_type == $cert9) or ($img5_type == $cert10) or ($img5_type == $cert11) or ($img5_type == $cert12) or
    ($img5_type == $cert13) or ($img5_type == $cert14) or ($img5_type == $cert15) or ($img5_type == $cert16) or
    ($img5_type == $cert17))
    {@copy("$abpath/$img5_name") or $log .= "Non posso copiare l'immagine sul server<br>";
    if (file_exists("$abpath/$img5_name")) {
    $log .= "Il file è stato uploadato<br>";
    }

    } else {
    $log .= "IL file non è un immagine supportata<br>";
    }
    }
    }
    ?>
    <html>
    <head>
    <title>Report</title>
    </head>
    <body>
    <p>Log:<br>
    <?

    echo "$log";

    ?>
    </p>
    <body>
    <html>
    [/code:1:baf2ff246a]

    Vedi un pò dovrebbe funzionare...

  9. #9
    L'avatar di Evcz
    Evcz non è connesso Utente storico
    Data registrazione
    31-05-2002
    Residenza
    Vicenza
    Messaggi
    5,670

    Predefinito

    $abpath = "/membri/worldhandball/";

    c'era un errore di battitura

    tutto il resto dovrebbe funzionarti come te lo ha corretto ant
    There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...

  10. #10
    Guest

    Predefinito


    Grazie a tutti voi!!
    A buon rendere!

  11. #11
    Guest

    Predefinito

    Mi spiace ma non funziona. Non so più cosa fare. Mi dice che NON PUO' UPLOADARE IL FILE SUL SERVER. Non e' che avete uno script funzionante??


Regole di scrittura

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