wwebby
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: database error: “unknown column in order clause”I got exactly the same error but when I go to my theme’s sidebar.php, there is no wp_list_pages() or sort_column=time_modified.
Help?
Forum: Installing WordPress
In reply to: no database connection / godaddy / config.phpOh, and I also looked for the wordpress 1-click install link that someone suggested but there is not “value application” link available. The only choices under “content” are:
Optional Enhancements
Form Mail
Hosting Metropolis
FTP Client
Forum: Installing WordPress
In reply to: no database connection / godaddy / config.phpI am so frustrated as well. I have spent 2 hours pouring over these threads and still can’t get wordpress to install on godaddy. I have the linux economy plan. I have created the database, accurately recorded the db name, username and password, updated my config.php file and I still get a page that says Error establishing a database connection. Here is my config.php file:
______________________________________________________
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘newbrainwp’); // The name of the database
define(‘DB_USER’, ‘newbrainwp’); // Your MySQL username
define(‘DB_PASSWORD’, ‘hormones’); // …and password
define(‘DB_HOST’, ‘mysql279.secureserver.net’); // 99% chance you won’t need to change this value// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = ‘wp_’; // Only numbers, letters, and underscores please!// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to ‘de’
// to enable German language support.
define (‘WPLANG’, ”);/* That’s all, stop editing! Happy blogging. */
define(‘ABSPATH’, dirname(__FILE__).’/’);
require_once(ABSPATH.’wp-settings.php’);
?>