freeinn
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Error establishing a database connectionAfter the whole night (in the morning) find out that I was editing the wrong file…
Dumb us me.Now it’s all working fine and it wasn’t the problem in the first place.
Forum: Installing WordPress
In reply to: Error establishing a database connection…and of course
define(‘DB_HOST’, ‘localhost:/Applications/MAMP/tmp/mysql/mysql.sock’);didn’t also work.
Forum: Installing WordPress
In reply to: Error establishing a database connectionNone of these worked for me… Does anyone have a better solution. I still cannot connect to database: Error establishing a database connection.
My dbname, username and password are ok. But with local host I have problems
I already tried all of the above mentioned solutions and the following localhost names:
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’);
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost:8889’);
/** MySQL hostname */
define(‘DB_HOST’, ‘Localhost’);
/** MySQL hostname */
define(‘DB_HOST’, ‘Localhost:8889’);
/** MySQL hostname */
define(‘DB_HOST’, ‘/tmp/mysql.sock’);
/** MySQL hostname */
define(‘DB_HOST’, ‘/Applications/MAMP/tmp/mysql/mysql.sock’);
/** MySQL hostname */
define(‘DB_HOST’, ‘Localhost:8889’);I’m really puzzled 🙁
Forum: Fixing WordPress
In reply to: How to Remove “Comments are Closed” in my site?In the latest version of Atahualpa you can remove the text ‘text_comments_are_closed’ by removing the following text in line 73 (at least that was the case in my installation):
71 <?php else : // If comments are closed: ?>
72
73 <?php echo $bfa_ata[‘text_comments_are_closed’]; ?>
74
75 <?php endif; ?>so the line 73 should look like this afterwards:
73 <?php echo $bfa_ata[”]; ?>