I know this is an old post. But many visitors to this page are getting nothing related to the question. Especially for a newbie.
How to upload and store images or file in our website:
For a static website there maybe no problem since the file storage for some share hosting still adequate. The problem comes from a dynamic website when it gets bigger. Bigger in the database can be handled, but bigger in file such as images is becomes a problem. There are two type of images in a website:
Images come from the administrator for dynamic blog. Usually, these images have been optimized before upload.
Images from users in case of users is allowed to upload images such as avatar. Or users can create blog content and put some images from text editor. This kind of images is difficult to predict the size. Users can upload big images just for small content by resize the view size but not resize the image size.
By ignoring item no. 1 above, quick solution for item no. 2 can be temporary solved by the following tips if we don't have image optimizer functionality in our website :
Do not allow users to directly upload from text editor by redirecting them to image gallery. On this page users must upload file in advance before they can embedded in the content. This method is called as a File Manager.
Use a crop image function for users to upload images. This will limit the image size even users upload very big file. The final image is the result of the cropped image. We can define the size in server side and accept only for example 500Kb or lower.
Now, that is only temporary. For final solution, the question is repeated :
What we can do then :
Migrate from share hosting VPS. Not enough? Then more higher by upgrading to Dedicated.
Create your own server for file storage. Googling to do it. This is not as difficult as you think. Some people do it for their website.
The easy way is use the CDN file storage service.
Okay, 1 and 2 is little bit expensive. But no 3 I think is the best solution.
Some CDN services allow you to store as many web files as you want.
Question, "how to upload file to CDN from our website?"
Don't worry, once you register, usually free, you will get guidance how to upload file and get their link from/to your website. You will get an API and more. It's easy.
Some providers give us a free service for 14 days with limited storage and bandwidth. But that will be okay for starting point. The only problem is because 'people never try'.
Hope it will help for newbie.