How secure is a wp-config file?

This is really more of a server configuration question. By necessity, wp-config.php must be readable by WordPress itself, but file access/security beyond that is really a matter of how your server is configured. Refer to the Codex for recommended file permissions for WordPress. Refer to the Codex for recommended ways to secure wp-config.php Refer to … Read more

Multisite Sub domains not working

Do I have to create sub domain all the time in my cpanel before creating new website (sub domain) in WordPress? You need to make sure that the subdomains are created somewhere. WordPress doesn’t have the capability to create DNS entries for you. If you’ve got WordPress set up on example.com and you want to … Read more

Redirecting connection from IP to localhost

Trying to change edit the wp-config.php file was a good idea, let’s try some extra things to see if they solve the problem. Let’s add these lines to the bottom of your functions.php: update_option( ‘siteurl’, ‘http://LOCAL_HOST_IP/wordpress’ ); update_option( ‘home’, ‘http://LOCAL_HOST_IP/wordpress’ ); Using Relocate method Edit your wp-config.php file inserting: define(‘RELOCATE’,true); After that, from your browser … Read more