Skip to main content

Posts

Showing posts from January, 2017

How to create WordPress MySQL database backup using command line

WordPress site backup is quite important, if you run into any situation where you only see error like establishing databases connection for WordPress site or your site breaks, then the first thing that usually comes in mind is Backup, here are some home made tips for you. Complete WordPress site backup For complete backup of WordPress site you need to have complete folder of WordPress installation directory that includes wp-content, wp-admin, wp-includes, index.php, wp-settings.php, wp-comments.php, wp-cron,php etc....these all directories, files and subdirectories. he most important thing is your wp-config.php file that connects your wordPress installation with your MySQL WordPress database. Other then that you the most important thing is your wordpress database, you must have its backup for complete Wordpress restoration. In this post i am sharing my personal experience that explains how to create WordPress MySQL database backup. Wordpress Database backup Plugins I have used two...

Sublime text editor most useful command List Download

Sublime text editor: Sublime text editor is one of the best text editor for windows and Linux . It is a cross source code editor with Python application programming interface (API). It supports number of programming languages and markup languages. I work everyday with Sublime text editor i love it and here are list of shortcuts that you can find useful for your passion of code writing. Select a single Line: Ctrl + L Delete a Line: Ctrl + Shift + K Duplicate a line: Ctrl + Shift + D Find and Replace: Ctrl + F and Ctrl + H Move a Line Up or Down: Ctrl + Alt with up/down arrow Keys Open a new file: Ctrl + N Move along the tabs: Ctrl + Tab and Ctrl + Pageup and Pagedown Comment a Line: Ctrl + ? Divide in 1, 2, 3, 4 Grids: Alt + Shift + 1 and Alt+ Shift + 2, Alt + Shift + 3, Alt + Shift + 4 and Alt + Shift +5 Upper Case : Ctrl + KU Lower Case: Ctrl + KL Exit Sublime: Ctrl + Shift + W Select Line/Lines Shift + up Arrow Key ( press arrow key again to select upper lines) ...