Search Result for: Development Category

Articles

Check the WordPress user status on any template

This is the following code that will be used to log users into
Read More

Multi cursor not working anymore in Atom?

Here is how to fix the issue. The fix might reset other preset or settings in Atom, so please be aware of that. First, bring up the console in Atom by clicking: PC: (Ctrl + Shift
Read More

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

PHP Limit the amount of text being displayed in a string

Use the following PHP function to limit the number of characters ($limit) to be returned from the original string ($source). //limit text function limit_text($limit, $source =
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

Change permission settings for Joomla users

If you have set up a new Author in Joomla and find that they are not able to log into the Joomla Admin console. There there Permissions settings might not be set up right. Follow
Read More

Simple but effective .htaccess blocking for IP address

This is a simple but very effective way to block people from accessing folders in your website. Simply create a .htaccess page and place the following code: #Order deny,allow JOE
Read More

Display the second or third level menu items in WordPress

Display the second or third level menu items in WordPress. Surprisingly WordPress does not have this feature built into
Read More