Related Articles
Speed up PhpStorm Right away
Are you using PHPStorm IDE, then see below simple tricks to speed up the performance of PhpStorm IDE. Speed up PhpStorm 1. Turn on Power Save mode File -> Power Save Mode or using “Hector the Inspector” icon in the IDE status bar. This mode turns off on-the-fly code inspections This way you can finish […]
Get Google Maps API Address based on Address
$url = “http://maps.googleapis.com/maps/api/geocode/json?sensor=false&address=”.urlencode($resident_address); $lat_long = get_object_vars(json_decode(file_get_contents($url)));// pick out what we need (lat,lng)$lat = $lat_long[‘results’][0]->geometry->location->lat;$lng =$lat_long[‘results’][0]->geometry->location->lng; /*echo $lat;echo $lng;*/
14 Ways to Secure Joomla and prevent from Hijacking
Change the default database prefix (jos_) Use a SEF component Use the correct CHMOD for each folder and file. Password protect your administrative area. Use a .htaccess file to secure your Joomla. Passwords – Use a unique strong password. Install the jSecure Authentication plugin. Always Update all third party extensions to the latest versions. Remove […]