Search Result for: Linux Category

Articles

Unable to send emails from your shared hosting account, using an email php email form

If your website is www.yourdomain.com and you are not able to send an email from a form to yourname@yourdomain.com. This could be a possible fix if you are using cPanel. Change
Read More

Inclrease the upload limit via .htaccess in Linux

Use the following code in the .htaccess file to increase for files to be uploaded. php_value upload_max_filesize 10M php_value post_max_size 20M php_value memory_limit
Read More

How to avoid the need to issue “y” several times when removing protected file

To avoid being asked about removing files, add the -f (“force”) option: rm -f
Read More

DigitalOcean WordPress Droplet – Unable to upload to uploads folder issue

perform the following commands in SSH on your droplet. sudo chown -R www-data:www-data /var/www/wp-content/uploads and sudo chmod -R 774 /var/www And then give access to the
Read More

Unable to upload files, NGINX / Ubuntu / WordPress

I could not upload images on a new droplet created in Digital Ocean. Specifications of the droplet: Ubuntu server running NGINX. I ran the following script to change permissions
Read More

Create a New directory

User the following code in terminal to create new
Read More

Installing PHP GD

PHP is not limited to creating just HTML output. It can also be used to create and manipulate image files in a variety of different image formats, including GIF, PNG, JPEG, WBMP,
Read More

Checking website speeds

On your Mac Terminal window: time curl your website URL > /dev/null If your SSH’d into the website: time wget your website URL Note: some of these commands may create a
Read More

Create a directory

Use the following code to create a directory in
Read More