Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 11
  1. #1

    Accesso FTP da JavaScript

    Vorrei creare una pagina molto semplice per fare in modo che inserendo nomeuntente e password vengano salvate in due variabili che poi vengano inserite nell indirizzo
    ftp://var-nomeutente:var-pass@claudio.com
    e venga effettuato il redirect al link con il nomeutente e pass cliccando su un tasto "Accedi"...

    qualcuno ha voglia di scrivermi un po di script per poter ottenere tutto questo??

    Scusate il disturbo

    Grazie
    There are two kinds of researchers:
    those that have implemented something and those that have not.
    The latter will tell you that there are 142 ways of doing things
    and that there isn't consensus on which is best.
    The former will simply tell you that 141 of them don't work.

  2. #2
    codice:
    <?xml version="1.0" encoding="iso-8859-1"?>
    
      <!DOCTYPE html 
         PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
      <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
        <head>
          <title>Code Example by DYNAMIC+</title>
    
          <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
          <meta http-equiv="Content-Language" content="en-us" />
    
          <script type="text/javascript">
          <!--
    
            function exploreFtp( __objForm )
            {
              var _server   = 'ftp.mioftp.it';
              var _user     = __objForm.elements['user'].value;
              var _password = __objForm.elements['password'].value;
    
              var _location = 'ftp://' + _user + ':' + _password + '@' + _server + '/';
              window.open( _location, 'FTPNavigator', '' ).focus( );
            }
    
          //-->
          </script>
    
        </head>
        <body>
    
          
    
    
            <form action="#" onsubmit=" exploreFtp( this ); return false; ">
              User: <input type="text" name="user" />
    
              Pass: <input type="password" name="password" />
    
    
              <input type="submit" value="Log In" />
            </form>
          </p>
    
        </body>
      </html>
    DYNAMIC+ [ E-mail ]

    Secondo me non si può fare!

  3. #3
    Grazie mille proprio quello che mi serviva...

    grazie grazie grazie
    There are two kinds of researchers:
    those that have implemented something and those that have not.
    The latter will tell you that there are 142 ways of doing things
    and that there isn't consensus on which is best.
    The former will simply tell you that 141 of them don't work.

  4. #4
    disturbo ancora...
    purtroppo non mi funziona
    inserisco nome utente e pass clicco Login ma nn mi redirecta sul link..


    .....................

    Edito...
    ho sistemato avevo salvato la pagina sotto *.xml e non sotto html scusatemi
    There are two kinds of researchers:
    those that have implemented something and those that have not.
    The latter will tell you that there are 142 ways of doing things
    and that there isn't consensus on which is best.
    The former will simply tell you that 141 of them don't work.

  5. #5
    BENVENUTI VISITATORI!registratevi e postate nel forum così vi do accesso all'ftp!
    DYNAMIC+ [ E-mail ]

    Secondo me non si può fare!

  6. #6
    Originariamente inviato da claudiocrack
    Edito...
    ho sistemato avevo salvato la pagina sotto *.xml e non sotto html scusatemi
    ok
    DYNAMIC+ [ E-mail ]

    Secondo me non si può fare!

  7. #7
    Utente di HTML.it L'avatar di angelicab
    Registrato dal
    Sep 2001
    Messaggi
    1,515
    l'ho usato anch'io .. cercavo una cosa simile ..
    solo che a me servirebbe un altro passaggio .. una volta effettuato l'accesso ftp, l'utente dovrebbe inviare un determinato file residente non sul suo PC ma sul mio server (cioè quello su cui sta la pagina da cui simula il collegamento ftp) ... come posso fare??
    ........\ | /......
    ......(@ @)).....
    -oOO-(_)-OOo-
    ......Angie.....

  8. #8
    Moderatore di JavaScript L'avatar di br1
    Registrato dal
    Jul 1999
    Messaggi
    19,998
    Un linguaggio lato server... anche se non credo sia tanto semplice utilizzare il protocollo FTP :master:
    Il guaio per i poveri computers e' che sono gli uomini a comandarli.

    Attenzione ai titoli delle discussioni: (ri)leggete il regolamento
    Consultate la discussione in rilievo: script / discussioni utili
    Usate la funzione di Ricerca del Forum

  9. #9
    Utente di HTML.it L'avatar di angelicab
    Registrato dal
    Sep 2001
    Messaggi
    1,515
    ho trovato questo .. http://benmeg.com/code/asp/ftp.asp.html


    potrebbe servire??? .. anche se non ho ben capito come funziona ..
    ........\ | /......
    ......(@ @)).....
    -oOO-(_)-OOo-
    ......Angie.....

  10. #10
    Moderatore di JavaScript L'avatar di br1
    Registrato dal
    Jul 1999
    Messaggi
    19,998
    Ti sposto su ASP
    Il guaio per i poveri computers e' che sono gli uomini a comandarli.

    Attenzione ai titoli delle discussioni: (ri)leggete il regolamento
    Consultate la discussione in rilievo: script / discussioni utili
    Usate la funzione di Ricerca del Forum

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.