To create a MySQL database and user, go through following steps: Step 1: Through the command line, log in to MySQL as the root user. mysql -u root -p Step 2: Enter MySQL root user’s password and press enter. Step 3: In...
Blog
Hi Folks, Quick tip of the day: If you are running Ubuntu 16.04 and ever face issue; Ubuntu camplaining Network service is not compatible? Reason could be: Either improper shutdown or if you interrupted updates, or may be some...
Looking forward to migrate Symfony 3.4 to 4 with Flex, here I found really well explained process. [Part 1/2] Migrating to Symfony 4.0 with Flex [Part 2/2] Migrating to Symfony 4.0 with Flex
If you are running Symfony 3.3 and want to migrate to Symfony 4 here I found really good tutorial, just follow the link.
Use case: Suppose you need to store endless parent child objects in single table. Example: Categories Comments Users In my case, I would like to store users with relation of (Administrator & Manager) in single table. ...
Laravel provides fully covered online documentation. But if you are still wondering, how to run PHPUnit tests in Laravel 5.5 with testing environment config. It’s quite simple: The proper way is to create testing...
Problem: If you want to mount new NTFS partition or have a partition is not accessible any more, run following steps. Note: In case you are trying to mount external drive, and can’t list it using df -h try lsblk it will...
If you are runing drupal7 site on shared hosting with apache2, you definitely don’t have access to the apache2 config files. And that will cause problem activating Clean URLs, but this can be solved by adding rewrite in...
Quick tips, how to work with basic filesystem in PHP. Create a File (implicitly creates file): $my_file = 'file.txt'; $handle = fopen($my_file, 'w') or die('Cannot open file: '.$my_file); Open a File (open file for writing...
Hi Fellows, Right after installing dual boot windows+ubuntu on Lenovo Y520, I found wifi was disabled & was not listing any available wifi. Did some research and figured out that wifi is being blocked, if you are having same...