Upload website in HTML 5 [closed] - html

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
How can I upload my website
How can I choose an URL
How to have many pages in your website which are linked

You need to have some hosting with public IP.
You need to buy domain name from some provider,
Don't understand the question...

You will have to find some hosting, there are a lot of free hostings if you only do your website for fun/school project like cba (free hostings can add ad to your website) etc. Then you will have to use some kind of ftp client to connect to your website server and upload your website files.
When creating account on those websites they will ask you to chouse yor domain name like here.
Coud you explain?

Related

How do i make my website inaccesible from public? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed last year.
Improve this question
i want to make a website that will not be accessed by anyone, there will be a login page in which you can't make an account, only for admins.
for example, i have a homepage which will be on example.com/homepage, if normal people accessed this they wouldn't be able to see it and instead get redirected to example.com/login unless they login with the right account they won't be able to go to the other sections of the websites.
This can be done by configuring your web server. E.g. Apache has multiple choices, the simplest one being with just two files https://httpd.apache.org/docs/2.4/howto/auth.html#gettingitworking
For more complicated solutions you'll need a server side programming language, like PHP.

Is there a way to make an upload to AWS bucket from the web [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I have a website and I want to have an upload button that will, instead of uploading to a certain directory on my webroot, upload to an AWS bucket. How can I do this? Will I need a server-side scripting language?
Thanks
There is an example of this use case. In this AWS tutorial, a Spring boot application is used that lets a user upload images to an Amazon S3 bucket.
So this is possible with a web application. For details, see this URL:
https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/javav2/usecases/creating_photo_analyzer_app

Can I host a HTML site on a server without php and database? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
At the moment I am working at a HTML page and I want to host it on a server, so I need a database or php for this?
Just put your file(s) in the correct directory. What's your web server ? If nothing is changed:
If you use Apache, your html goes in the directory configured in HttpConf as DocumentRoot.
In case of IIS, put your html in C:\inetpub\wwwroot
You can then access your html in a browser using http://yoururl/yourfile.html
No, you can use something like nginx for that. This is a reverse proxy but it can be used to host a directory.

How to access active directory with perl [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have never done anything like this... So here it goes.
I need to be able to submit (at one time) roughly 300 user ids and get back their name and email address... The company has all this info in active directory.
Does anyone have any idea how this would work with Perl, or really any language? I don't even know what type of UI I would need, and how to actually connect to AD to get the requested information..
Any and all help is appreciated!
you can connect to Microsoft AD with Net::LDAP - Lightweight Directory Access Protocol

creating open source online game [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I started creating online open source game as a project in school. It will be server with n connected clients. But now I have a problem with "security". What to do if one client would used modified source code for changing some restrictions? How can I prevent it? My first idea was make client only for connection to server and server would send all necessary files but I don't like this idea very much. Can you advise me something better? Thank you.
You need to keep your validations in the server. The server should check each client move, and if it's not allowed according to the server's rules - reject it.
You should still keep validations in the client, too, so that users who don't mess with the client code can get speedier responses.