November 22, 2017, admin, 0
To integrate Skype in Pidgin Ubuntu, use the plugin named skypeweb. Download it from git page: https://github.com/EionRobb/skype4pidgin/tree/master/skypeweb On most Linux distributions its compilation and installation is simple as follows: sudo apt-get install libglib2.0-dev libjson-glib-dev libpurple-dev git clone git://github.com/EionRobb/skype4pidgin.git cd skype4pidgin/skypeweb make sudo make install Tested and working in Ubuntu 16.04 More
Like this:
Like Loading...
November 22, 2017, admin, 0
To install Malayalam fonts in Ubuntu, use the following command: sudo apt-get install fonts-smc fonts-samyak-mlym fonts-mlym fonts-lohit-mlym You should be good now.
Like this:
Like Loading...
July 26, 2017, admin, 0
To force your website with SSL using htaccess and mod_rewrite, use the following rule in the website’s .htaccess. RewriteEngine On RewriteCond %{HTTP_HOST} ^yourwebsite\.com [NC] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://yourwebsite.com/$1 [R=301,L] If it’s a subdomain, use this. RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_URI} sub RewriteRule ^(.*)$ https://yourwebsite.com/sub/$1 [R=301,L] Note: Replace yourwebsite.com with the More
Like this:
Like Loading...
July 24, 2017, admin, 0
Sometimes cPanel full backup fails with the following error. Storing mysql dbs…mydatabase……… /usr/bin/mysqlcheck: Got error: 1049: Unknown database ‘mydatabase’ when selecting the database (755 bytes) mydatabase_db(1031138 bytes) mydatabase_tab Check in cPanel that if you have any 0kb or empty database by the database name in error message. If you have it, delete it from More
Like this:
Like Loading...
July 21, 2017, admin, 0
To install fann extension in php, make sure that libfann (development version) is installed on your system. If it is not installed, you can install it using yum or apt-get depending on your distro. $ yum install fann-devel Or in Ubnuntu: $ sudo apt-get install libfann-dev This extension is available on PECL. The installation is More
Like this:
Like Loading...