-
Recent Posts
Recent Comments
Archives
- December 2021
- July 2021
- June 2021
- April 2021
- March 2021
- February 2021
- December 2020
- November 2020
- October 2020
- June 2020
- August 2019
- July 2018
- February 2018
- December 2017
- July 2017
- March 2017
- February 2017
- January 2017
- November 2016
- October 2016
- September 2016
- May 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- April 2015
- December 2014
- November 2014
- October 2014
Categories
Meta
Monthly Archives: October 2015
Disable Bluetooth at start – Linux Debian Mint
Should work with most decent Linux distro (I love that expression, I know exactly what I mean here). Why, oh why, enabling a networking connection channel by default… Definitely some decisions are not in the hands of the right people… … Continue reading
Posted in Uncategorized
Leave a comment
Roundcube – No default folders: Sent Drafts Junk Trash
Edit the file /etc/roundcube/main.inc.php change FALSE -> TRUE $rcmail_config[‘create_default_folders’] = TRUE;
Posted in Uncategorized
Leave a comment
Page redirection javascript – keep session values
header(“Location:./comehere.php?”.session_name().”=”.session_id()); Use along with session_write_close();
Posted in Uncategorized
Leave a comment
Joomla – Content Encoding Error
After updating php, I got: “Content Encoding Error” for some Joomla site. configuration.php: public $gzip = ‘0’;
Posted in Uncategorized
Leave a comment
removing files starting with hyphen “-” , from console
rm — —-myfile The “–” after rm prevents processing of more options, so everything after it will not be taken as option.
Posted in Uncategorized
Leave a comment
Javascript – refresh on resize
You need to refresh the browser window automatically when it is resized. You can find plenty of complex solutions for this issue, with javascript, and preferably using jquery, the bigger the library the better. Or you can also put this … Continue reading
Posted in Uncategorized
Leave a comment
Timezone – Debian
Another old one to remember for the road… simple question: How to reconfigure / set the timezone in Debian, without rebooting? dpkg-reconfigure tzdata Soooo annoying to find plenty of solutions on the net that just tell about setting up the … Continue reading
Posted in Uncategorized
Leave a comment
PHP 5.4 on Squeeze DTC GPLHost hosting server
Old stuff, update PHP for squeeze Before going into distribution upgrade for my hosting server: DTC GPLHost running on Squeeze (yeah, I know.) I will update php, using dotdeb repositories https://www.dotdeb.org/instructions/ deb http://packages.dotdeb.org squeeze all deb-src http://packages.dotdeb.org squeeze all deb … Continue reading
Posted in Uncategorized
Leave a comment