Anwar

Posts

Share Your Screen to Your PC or Mac via USB

Start Vysor from the Chrome App Launcher. Click Find Devices and select your phone. Vysor will start up, and you will see your Android screen...

Backup mysql database and restore

First make a backup of the data in your existing database: mysqldump –lock-all-tables -u root -p –all-databases > dump.sql Then after installing the newer version,...

Apt get upgrade getting stuck

You have apt-listchanges installed so APT shows you the changes when upgrading packages using default pager (less). Press q to quit less to continue. http://askubuntu.com/questions/436284/apt-get-upgrade-getting-stuck

Change Directory Permission recursively

Change Directory Permission recursively. $ find . /var/www/html/ -type d -exec chmod 755 {} \; Change File Permission recursively. $ find . /var/www/html/ -type f...

Crawler

https://www.import.io/post/everything-you-ever-wanted-to-know-about-crawlers-in-one-webinar/

Wpengine CREATE ALGORITHM=UNDEFINED DEFINER access denied

wpengine CREATE ALGORITHM=UNDEFINED DEFINER  access denied   http://stackoverflow.com/questions/13492857/create-view-without-super-privileges-in-phpmyadmin

Database migration from MySQL 5.1 to MariaDB 10 on OpenBSD

Database migration from MySQL 5.1 to MariaDB 10 on OpenBSD https://frozen-geek.net/database-migration-mysql-5-1-to-mariadb-10/

Directadmin directory folder zip

Directadmin:  directory / folder zip   how to compress folder from file manager?   http://forum.directadmin.com/showthread.php?t=24285   Yes, this is possible. You first need to select...

Directory file permission

sudo find foldername -type d -exec chmod 755 {} “;” sudo find foldername -type f -exec chmod 644 {} “;”     sudo chown -R...