7-Views - Page 3 of 8 - Developers Blog

Add multiple TXT record on Route53

Posted by
July 23, 2019

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 […]

read more

Changing File Permissions

Posted by
July 23, 2019

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 […]

read more

How to use a sub folder in default controller route in CodeIgniter 3

Posted by
January 22, 2019

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.   […]

read more