error messages in dashboard login

See WordPress Administration over SSL page. In there, it says : The constant FORCE_SSL_LOGIN can be set to true to force all logins to happen over SSL. This (and all other such definitions) must be placed before /* That’s all, stop editing! Happy blogging. */ in the file, otherwise they will not take effect. I … Read more

Config file with no Keys..?

It is indeed a security issue to have those left as the defaults, but it is not an extremely serious issue. To mitigate the problem of known default salts, WordPress intentionally recognizes when those values are left as “put your unique phrase here” and will not use that phrase as a key/salt. Instead, it generates … Read more

Redirect to another page using contact form 7? [closed]

Redirect to another page using contact form 7? [closed]

Alternatives to DISALLOW_FILE_EDIT wp-config Constant? It Breaks Some Plugins

I guess this would be of better use as a mu-plugin. EDIT: Now available as drop & play MU-Plugin. Also disables the »Theme« editor. <?php ! defined( ‘ABSPATH’ ) AND exit; /** Plugin Name: Disable »Theme/Plugin Editor« */ if ( ! class_exists( ‘disable_admin_editor’ ) ) { add_action( ‘plugins_loaded’, array( ‘disable_admin_editor’, ‘init’ ) ); class disable_admin_editor … Read more

Conflict with wp_homeurl, wp_siteurl and admin interface settings

The constants you need to define are WP_HOME, not WP_HOMEURL, and WP_SITEURL, and you need to complete address. Your addresses are missing the scheme— http:// define( ‘WP_SITEURL’, ‘http://local.192.168.3.101.xip.io’); define( ‘WP_HOME’, ‘http://local.192.168.3.101.xip.io’ ); Without the scheme, WordPress treats those URIs like relative addresses. You can see that in the address bar if you watch what is … Read more

blog url redirecting

Based on the code that you posted I can see you have created a Multisite installation. I’m assuming that is a mistake. I would suggest you delete you new installation, upload your old site backup and import your old database backup. Updating the Database Ok, now that things are back in place you need to … Read more