April 25, 2020 in Laravel, Php, Tips and Tricks
There are two ways available to find the version of the Laravel application. You can either find it by running a command or you can check the Laravel version in files. Command to find Laravel Version Open the terminal on your system. Navigate to the webroot directory of the Laravel application. Now execute the following […]
April 4, 2020 in Php, Tips and Tricks
The search bots will search for necessary information for users based on the meta tags’ and the article’s content. The page or post will rank higher in search result pages if its meta tags contain important keywords. Therefore, it should be concise and contain important keywords. It will be better for SEO if you can […]
January 11, 2020 in Php, Tips and Tricks
For some specific purposes you may want to know the current key of your array without going on a loop. In this case you could do the following: The following functions are not very well known but can be pretty useful in very specific cases: OTHER EXAMPLE :
December 11, 2019 in Php, Tips and Tricks, Ubuntu
Useful Tips to Secure PhpMyAdmin Login Interface Change Default PhpMyAdmin Login URL Enable HTTPS on PhpMyAdmin Password Protect on PhpMyAdmin Disable root Login to PhpMyAdmin Prevent remote usage of phpmyadmin Change password frequently Check configuration /etc/phpmyadmin
October 15, 2019 in Php, Tips and Tricks
By default, PHP errors and warnings generated by your websites are logged in error_log files in the directory where your PHP files are located. The PHP error_log files can grow to a large size. If you do not need the error_log file you can disable PHP error logging using one of the three ways listed below: PHP Selector in […]