User Controls
how to upload a web page?
-
2021-05-18 at 5:12 PM UTCwe 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?
-
2021-05-18 at 5:16 PM UTCRegister the domain and get someone to Host it for you, like godaddy (who will do both).
-
2021-05-18 at 5:44 PM UTCtoo much work, is there a way to upload it to a media sharing site and get it to display as a web page?
-
2021-05-18 at 8:24 PM UTC
-
2021-05-19 at 10:57 AM UTCIs it a static page? Just index.html? No frameworks involved like Ruby on Rails? Would you mind tunneling through third party servers?
-
2021-05-19 at 11:05 AM UTCTry 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.
-
2021-05-19 at 12:08 PM UTC
-
2021-05-19 at 1:44 PM UTC
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? -
2021-05-19 at 5:16 PM UTCI 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"
-
2021-05-19 at 5:23 PM UTC
-
2021-05-19 at 8:35 PM UTC
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. -
2021-05-20 at 2:21 PM UTCi 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? -
2021-05-20 at 3:19 PM UTC
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 -
2021-05-21 at 3:41 PM UTC
-
2021-05-22 at 2:45 AM UTC
#!/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. -
2021-05-22 at 3:10 PM UTCi will keep it in mind, thx.