31 03 2015
Lebensretter numero 1 in Magento: http://kimberelyt.com/blog/magento-debugging-how-to-debug-template-paths-logging-and-display-errors
baumi's personal blog … Linux, OS X, Windows, Random things, …
31 03 2015
Lebensretter numero 1 in Magento: http://kimberelyt.com/blog/magento-debugging-how-to-debug-template-paths-logging-and-display-errors
19 03 2015
in nginx/conf/gitlab-http.conf listen *:443 ssl; server_name git.b-nm.at; ssl_certificate /var/opt/gitlab/nginx/ssl/git.b-nm.at.crt.ca.pem; ssl_certificate_key /var/opt/gitlab/nginx/ssl/git.b-nm.at.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ssl_ciphers HIGH:!aNULL:!MD5; wobei git.b-nm.at.crt.ca.pem eine zuammenkopierte datei ist aus: a) dem git.b-nm.at.crt (wie von InterSSL geliefert) b) dem https://www.interssl.at/ca_interssl_rapidssl_osx.pem
14 03 2015
http://incident57.com/codekit/
4 03 2015
< ? php /* connect to IMAP */ $hostname = '{my.b-nm.at:993/imap/novalidate-cert/ssl}INBOX'; $username = 'mailuser'; $password = 'kennwort'; /* try to connect */ $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to B-NM: ' . imap_last_error()); /* grab emails */ $emails = imap_search($inbox,'ALL'); /* if emails are returned, cycle through each... */ if($emails) { /* begin output var […]