User Controls

how to upload a web page?

  1. #1
    Kev Space Nigga
    we all know how to upload a file to a media sharing site but how do i upload a web page i saved to my computer so the link i share would show the web page and all its graphics?
  2. #2
    Register the domain and get someone to Host it for you, like godaddy (who will do both).
  3. #3
    Kev Space Nigga
    too much work, is there a way to upload it to a media sharing site and get it to display as a web page?
  4. #4
    Originally posted by Kev too much work, is there a way to upload it to a media sharing site and get it to display as a web page?

    No I don't think so.

    There are free web hosting sites out there...don't know how "good" they are these days as it's years since I used one.
  5. #5
    Sophie Pedophile Tech Support
    Is it a static page? Just index.html? No frameworks involved like Ruby on Rails? Would you mind tunneling through third party servers?
  6. #6
    Donald Trump Black Hole
    Try printing it as a PDF. That often works OK - but certainly not always. Most modern OSs should be able to save print output to PDF, you just click file>print like normal.
  7. #7
    pEEpEEpOOpOO African Astronaut
  8. #8
    Kev Space Nigga
    Originally posted by Sophie Is it a static page? Just index.html? No frameworks involved like Ruby on Rails? Would you mind tunneling through third party servers?

    no, the page.htm and the folder with all the associated files, graphics and so on. what do you mean by tunneling through third party servers?
  9. #9
    FreeAssange Houston [our argentine adverbial dick]
    I just tried it on W3Schools and it worked using Donald Trump's avatar as a test. It displayed, so, as long as you change all the links and includes and so on to absolute urls (with the "https://domain part). Use their "try it editor"
  10. #10
    Ajax African Astronaut [rumor the placative aphakia]
    Originally posted by Kev no, the page.htm and the folder with all the associated files, graphics and so on. what do you mean by tunneling through third party servers?

    He wants to host it for you.
  11. #11
    Sophie Pedophile Tech Support
    Originally posted by Kev no, the page.htm and the folder with all the associated files, graphics and so on. what do you mean by tunneling through third party servers?

    There's software that allows you to host all your website stuff locally, tunnel the connection to a third party server which will then host it for you for a limited amount of time.

    Also Github allows for the easy creation and free hosting of static sites. In fact i am making one through GH right now for a new OSS tool i have been developing.

    Originally posted by Ajax He wants to host it for you.

    Only way i'd do that would be through one of my dedicated servers that are hardened and configured to run multiple VMs at a time so as to provide hosting for a hidden service. However i have strict rules when it comes to that. The venue needs to be invite only, not exceed a certain number of unique visitors and have no CP. I'll set up a hidden service with no rules as long as you provide the infrastructure, and compensate me for my troubles.

    Otherwise my infrastructure my rules, plus, servers cost money so if you wanna host something on my data center, i expect appropriate compensation as well unless it's a joint project, or for your research as long as all results are shared with me and a mirror is kept of all the relevant data at secured venues under my control and supervision.
  12. #12
    Kev Space Nigga
    i see, how long will the third party server host for?

    this still all sounds cumbersome tho. text dump sites exist, dont any of them support html?
  13. #13
    Originally posted by Kev i see, how long will the third party server host for?

    this still all sounds cumbersome tho. text dump sites exist, dont any of them support html?

    Just host it on godaddy...free domain and starting at $1 a month...jeeze

    https://www.godaddy.com/offers/web-hosting/cheap?isc=hostmwpg01&gclid=Cj0KCQjwkZiFBhD9ARIsAGxFX8B2jQrya1VNGfGxuJgg_fmhr90iURhkkxQTZh8lGVA0nf2zAiHpDl8aAvTFEALw_wcB&gclsrc=aw.ds
  14. #14
    Sophie Pedophile Tech Support
    Originally posted by Kev i see, how long will the third party server host for?

    this still all sounds cumbersome tho. text dump sites exist, dont any of them support html?

    Third party i have in mind; two hours. Github no limit.
  15. #15
    Sophie Pedophile Tech Support

    #!/bin/bash

    function start(){
    echo "Starting server..."
    python3 server.http --cgi 8080

    echo "Starting http tunnel..."
    sh -c 'xterm -e ngrok http 8080' &

    echo "Opening access log" && sleep 2
    python3 -m webbrowser 127.0.0.1:4040

    }

    function get(){
    wget -O ngrok.zip https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
    unzip ngrok.zip
    chmod +x ngrok
    start
    }


    # i.e. /home/kev/mysite

    echo "Enter the full path to the dir you want to serve"
    read -p "Path: " dir

    cd $dir

    stat ngrok > /dev/null && start || get


    Bingo bango bongo.

    Run it on ubuntu.
  16. #16
    Kev Space Nigga
    i will keep it in mind, thx.
Jump to Top