7-Views - Page 3 of 8 - Developers Blog
Unblock Limit Login Attempts in WordPress
Sometime wordpress limit login attempt may lock you from login to your wordpress site. If you have entered the wrong password a multiple times. To get rid of that , we are showing you how to unblock limit login attempts in WordPress. People who are familiar with MySQL and phpMyAdmin, you can easily run the […]
Add multiple TXT record on Route53
You want to set up TXT record for both Amazon SES and Mailgun? Currently TXT record for my domain example.com looks like this: TXT example.com.=”amazonses:GQxg09o5paN/HJqx2rOIXbEOQuOyOqcH” and you want to add Mailgun SPF record: TXT example.com.=”v=spf1 include:mailgun.org ~all” then you need to add multiple TXT record on Route53: Fot that, In “Value” text field paste the […]
Changing File Permissions
On computer file systems, different files and directories have permissions that specify who and what can read, write, modify and access them. This is important because WordPress may need access to write to files in your wp-content directory to enable certain functions. Permission Modes 7 5 5 user group world r+w+x r+x r+x 4+2+1 4+0+1 4+0+1 = 755 The […]
Apache case Insensitive Rewrite Rule for htaccess
if you would like to match the URL if visitor types http://example.com/iQPage (not the lower case).
How to use a sub folder in default controller route in CodeIgniter 3
While setting $route[‘default_controller’] without subdirectory it is working but I wanted to change it inside subdirectory and it’s not working. Here is the solution to the issue. Please create a file in the insideapplication/core directory. the file name would be MY_Router.php paste the following content inside the file “MY_Router.php”, it will work like a charm. […]