Saturday, April 26, 2014

php laravel 4 "You need to specify a file path to store the seed.

This Error happened because your php version is not loading the openssl extension , check the php.ini file and un-comment  this line :

;extension=php_openssl.dll


to be like this :

extension=php_openssl.dll

Friday, April 25, 2014

phpPgAdmin - postgres - error "Login disallowed for security reasons"

PhpPgAdmin  by default deny access for certain usernames (pgsql, postgres, root, administrator) , Also it will block any attempt to login using no password .

The line controlling this is in the  config.inc.php file

$conf['extra_login_security'] = true;

If you are developing a website locally you can change this option in config.inc.php file to false but keep in mind that this option is a very good security helper if you are in production phase.