
After login into phpMyAdmin panel I get this error message[1]
Everything work fine I can manage everything, but if security is important for you, you should look at the solution. Continue reading ‘phpMyAdmin blowfish_secret’
Linux TCP/IP, GreenIT and more…

After login into phpMyAdmin panel I get this error message[1]
Everything work fine I can manage everything, but if security is important for you, you should look at the solution. Continue reading ‘phpMyAdmin blowfish_secret’
The default Nginx maximum body-size of a client request, or maximum file size is 1M. So when you try to upload something larger than 1M, you get the following error: 413: Request Entity Too Large
Create a new configuration file: Continue reading ‘Nginx – Error 413: Request Entity Too Large’
A little trick to simplify your apache virtual hosts configuration, instead of full paths you can use some predefined variables like the directory of apache logs or the configuration directory.
${APACHE_LOG_DIR} is for /var/log/apache2
1 2 | ErrorLog ${APACHE_LOG_DIR}/access.log CustomLog ${APACHE_LOG_DIR}/error.log |
$APACHE_CONFDIR is for /etc/apache2
1 | $APACHE_CONFDIR/mods-available |
A PHP-accelerator is a PHP extension designed to improve the performance of software applications written in the PHP language.
Most PHP accelerators work by caching the compiled p-code (portable code) of PHP-Scripts to avoid the overhead of reparsing and recompiling source code on each request made for example by a stupid bot.
APC is free, open source framework that optimizes PHP intermediate code and caches data and compiled code from the PHP bytecode compiler in shared memory. APC is quickly becoming the de-facto standard PHP caching mechanism as it will be included built-in to the core of PHP starting with PHP 6 < - Great news! Continue reading ‘APC – Alternative PHP Cache’
Quick and easy – generate self-signed certificate in one line
1 | openssl req -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout server.key -out server.crt |