osticket error: IMAP doesn’t exist. PHP must be compiled with IMAP enabled.
On Ubuntu 14.04 LTS: apt-get install php5-imap php5enmod imap service apache2 reload
I was born a nerd! As a child I was fond of fiddling with all kind of thechnical stuff, discovering how things work and often fixing them. As a 6 year old I fixed my grandmothers 220 volts wiring.
The interest in technical stuff grown even bigger in the teenage years where I got my amateur radio license and developed a keen interest in computers.
Today I am proud to be a nerd. It is a part of my profession.
To all of you nerds and geeks out there - remember that nerd is the new sexy! :)
On Ubuntu 14.04 LTS: apt-get install php5-imap php5enmod imap service apache2 reload
The NEXA PER-1500 remote controlled switch works fine with Telldus net. This unit does not have a learn button. Instead it goes into learn mode for about 5 seconds when power is applied and that is indicated by the LED blinking. To add the NEXA to to Telldus Live: The NEXA PER-1500 should be disconnected […]
After a site move (from one webhosting to another) the site reported error 500 internal server error. When checking the logfile the file libraries/joomla/error/exception.php reported that allowed memor size was exhausted. I tried increasing it by adjusting the php.ini settings all the way up to 2 GB without resolving the problem. This is way more than […]
Adding a form to your WordPress website is normally done by using a plugin for it, like Contact Form 7 for example. At some hosting providers, there can be a problem for the plugin to send emails to you when someone is posting through the form. To prevent spam through forms, many hosting providers disable […]
Check that you have spaces around curly braces, i.e. for example don’t use <?php}?> but instead use <?php } ?> If your script has been running without problems on earlier versions of PHP but you are now running PHP 5.4 or later, replace all occurrences of <? with <?php
On a Joomla site currently in offline mode the front page gave us “too many redirects” error. It turned out the reason was the article connected to the home page menu item had been unpublished. By publishing the article the problem wsa solved.
One way of getting the video from Vivotek PT7137 to a webpage is by using the VLC plugin and connect the rtsp stream. However, in current version of Chrome the VLC plugin is no longer supported. Instead it is suggested to use HTML5 to embed video, but rtsp is not supported in Chrome so it […]
In order to position a background image inside a div I tried to use the CSS3: background-position: right 10px center; The goal was to position the background image to the right of a div container, 10px from the right edge and vertically centered. This worked fine in most browsers. However, in the Android devices using […]
This method aims at Windows users but similar methods are probably also useable in other environments. Right click on the SVG image file and select Open with Select Internet Explorer In Internet Explorer right click on the image and select Save image as In the File Format box switch from Scalable Vector Graphics (*.svg) to […]
If you put a script to be run by cron in cron.hourly, cron.daily, cron.weekly or cron.monthly but they won’t run, make sure that they: Are chmod +x Are owned by the correct user (like root:root) Start with #!/bin/sh or the corresponding shell used to execute them The filename doesn’t contain any dots, like a script […]