• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Reply to: HTML assistance

Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "HTML assistance"

Collapse

  • manclarky
    replied
    Google Docs - is exactly what I'm after.

    Thanks very much for your help.....all that ftp stuff sounded too complicated

    Leave a comment:


  • manclarky
    replied
    Originally posted by Spacecadet View Post
    Dropbox (PM sent)
    Thanks - I'll look at that.
    I just replied to PM asking what it was, whereas I should've read the thread first!!

    Leave a comment:


  • lilelvis2000
    replied
    To store a file all you need is Dropbox or Live space or Yahoo or any number of free websites that will do this. If it is photos there is flickr as well.

    Leave a comment:


  • Cliphead
    replied
    Originally posted by Spacecadet View Post
    Dropbox (PM sent)
    Most usefull app I've come across in a long time.

    Leave a comment:


  • Spacecadet
    replied
    Dropbox (PM sent)

    Leave a comment:


  • DimPrawn
    replied
    https://www.google.com/accounts/Serv...ltmpl=homepage

    Leave a comment:


  • xoggoth
    replied
    Very simple HTML file and PHP files to upload single file:

    <html>
    <body>
    <form action="upload.php" method="post" enctype="multipart/form-data">
    <label for="file">Filename:</label>
    <input type="file" name="file" id="file" /><br />
    <input type="submit" name="submit" value="Submit" />
    </form>
    </body>
    </html>



    <?php
    if ($_FILES["file"]["error"] > 0)
    {
    echo "Error: " . $_FILES["file"]["error"] . "<br />";
    }
    else
    {
    echo "Upload: " . $_FILES["file"]["name"] . "<br />";
    echo "Type: " . $_FILES["file"]["type"] . "<br />";
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    echo "Stored in: " . $_FILES["file"]["tmp_name"]."<br>";
    move_uploaded_file($_FILES["file"]["tmp_name"],$_FILES["file"]["name"]);
    echo "Stored in: ".$_FILES["file"]["name"];
    }
    ?>

    Leave a comment:


  • xoggoth
    replied
    1) Just use windows explorer (Not internet explorer). Type the FTP address in the address bar, something like
    ftp://mysite.co.uk/ , fill in the user and pwd details in the popup and it's just like accessing a local folder.

    2) Check what your host provides. Most have a free explorer type file transfer utility that you could log into on client site.

    3) A google should bring up some freeware uploaders in php or whatever.

    Leave a comment:


  • stek
    replied
    Run ssh on your box on port 443 and scp on that port.

    Leave a comment:


  • administrator
    replied
    To get this straight - you simply want to get files from work to home so that you can look at them when at home? The web site bit is kind of irrelevant?

    If this is the case can you not stick them on a usb stick?

    Could you remote desktop to your home machine and push them in that way? If they are blocking the standard port for RDP then find an open port in their firewall and set RDP on your home machine to answer on that one instead.

    If you can't do either of these and are adamant that it must go up to your web space then how do you connect to your web space from home? Surely Cliphead is correct with ftp? What do you mean you don't have access to ftp at work? All you need to do is use an ftp client - heck you can even use Firefox as an FTP client if you want to - and just hope they have not blocked port 21. If they have blocked port 21 and you are using shared hosting then you are buggered.

    If that is the case then set up a VM on your home machine with linux on it and either use SCP or ftp with a changed port number to push your files up.

    The possibilities of getting data out of a client's site are endless

    Leave a comment:


  • manclarky
    replied
    Originally posted by Cliphead View Post
    Why not just FTP the files to the web host?
    I don't know

    I don't think we have access to FTP either (although I'm not certain)

    Leave a comment:


  • Cliphead
    replied
    Why not just FTP the files to the web host?

    Leave a comment:


  • manclarky
    started a topic HTML assistance

    HTML assistance

    I have a web site and want to be able to upload files from client site (we have no external email) so I can access when I get home.

    What tags do I need to do this?

    Any help much appreciated

Working...
X