From 27938a63bde9ff4294a1e885d0baffd7539b267b Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Mon, 8 Sep 2014 09:13:14 -0400 Subject: [PATCH] Correction on the setup Won't work with the index.php setting. --- wp-config.php | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/wp-config.php b/wp-config.php index 281c4e6..e4f8dd2 100644 --- a/wp-config.php +++ b/wp-config.php @@ -14,10 +14,10 @@ * @package WordPress */ define('WP_SITEURL', 'http://' . $_SERVER['SERVER_NAME'] . '/www.petoskeyrobotics.org/wordpress'); -define('WP_HOME', 'http://' . $_SERVER['SERVER_NAME'].'/www.petoskeyrobotics.org/index.php'); +define('WP_HOME', 'http://' . $_SERVER['SERVER_NAME'].'/www.petoskeyrobotics.org'); define('WP_CONTENT_DIR', $_SERVER['DOCUMENT_ROOT'] . '/www.petoskeyrobotics.org/wp-content'); define('WP_CONTENT_URL', 'http://' . $_SERVER['SERVER_NAME'] . '/www.petoskeyrobotics.org/wp-content'); - +//define('HEADWAY_ALLOW_RESET', true); // ** MySQL settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define('DB_NAME', 'petoskeyrobotics'); @@ -72,7 +72,14 @@ $table_prefix = 'wp_'; * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. */ +//@ini_set('log_errors', 'On'); +//@ini_set('display_errors', 'Off'); +//@ini_set('error_reporting', 'E_ALL ^ E_NOTICE'); +//@ini_set('error_log', '/var/www/server/www.petoskeyrobotics.org/php.error'); define('WP_DEBUG', false); +//define('WP_DEBUG_LOG', true); +//define('WP_DEBUG_DISPLAY', false); + /* That's all, stop editing! Happy blogging. */ -- 2.17.1