Probabilmente hai già perso la pazienza cercando come installare una stampante multifunzione hp su ubuntu. Dovrebbe essere, almeno in teoria, e nella maggior parte dei casi, un processo semplice. A volte però diventa un test di resistenza e piusttosto di installare la stampante hp su linux, verrebbe voglia di farla volare dalla finestra. Dicono di…
Category Archives: Articoli Vari
Cpanel rejecting .eml attachments
Solution: 1. cp /etc/cpanel_exim_system_filter /etc/cpanel_exim_system_filter_custom 2. edit /etc/cpanel_exim_system_filter_custom and remove the eml| from all the four noncommented lines that reference it. 3. log into WHM, click on Exim Configuration Editor, and change the system filter at the bottom from /etc/cpanel_exim_system_filter to /etc/cpanel_exim_system_filter_custom . Save the changes Now Cpanel will use /etc/cpanel_exim_system_filter_custom, which if properly edited…
phpMyAdmin 4.6.6 + php 7.2 = warning
Vi è capitata l’accoppiata vincente phpMyAdmin 4.6.6 + php 7.2? Avete questo errore? “Warning in ./libraries/sql.lib.php#613 count(): Parameter must be an array or an object that implements Countable” Dopo aver fatto quattro risate, per fortuna la soluzione è semplice. Aprire il file /usr/share/phpmyadmin/libraries/sql.lib.php e cercare la funzione PMA_isRememberSortingOrder A questo punto correggere quanto segue. Bisogna…
Redirect automatico da http ad https con .htaccess
Siamo giunti alla data in cui l’amico Google Chrome, e probabilmente anche Firefox a breve, promettono di segnalare come siti pericolosi, i siti senza https. Migliaia di sviluppatori stanno sicuramente cercando come fare il redirect automatico da http ad https tramite regola di rewrite in .htaccess (RewriteRule), e quindi come possiamo aiutarli? Per agevolare il…
Howto beautify xml and json from a bash script
Sometime may happens you need to beautify xml or json from a bash script. So here there are two methods to easily obtaing a pretty print of your data: Command to beautify XML cat filename.xml | xmllint –format – Command to beautify JSON cat filename.json | python -m json.tool In case you miss above tools…