Categories
lifehack php

Zend Server 6 and phpMyAdmin on OSX

I would never imagined to write a post on OSX, moreover in english, but time changes everything.

After I installed the new version of Zend Server 6 I had some issue with phpMyAdmin. A laconic

#2002 - Connection refused
The server is not responding (or the local server's socket is not correctly configured).

is shown up on chrome with no mercy.

The fix is quite easy as it subtle, open

/usr/local/zend/var/apps/http/__default__/0/phpmyadmin/3.5.6.0/config.inc.php

and change

$cfg['Servers'][$i]['host'] = '127.0.0.1';

with

$cfg['Servers'][$i]['host'] = 'localhost';

that’s it.

Categories
php

bbPress e Dreamhost

Se avete provato ad installare bbPress su Dreamhost e per qualche assurdo motivo i temi e gli stylesheet non vengono caricati come si deve allora create una directory chiamata my-plugins ed all’interno di questa create un file chiamato patch-to-URL.php contenente il seguente codice:

[php][/php]

A questo punto tutto dovrebbe di nuovo funzionare come si deve. Vi ricordo inoltre che se state lavorando ad un vostro tema quest’ultimo va spostato nella directory my-templates (che dovrete creare sempre voi).

via bbPress forum

caiuz