First important point is that Module_Rewrite is enabled on your server(LAMP,WAMP,XAMP..etc) For do URL rewiring in yii2 framework Create one .htaccess file and put in /web folder RewriteEngine on # If a directory or a file exists, use it directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Otherwise forward it to index.php RewriteRule . index.php…
Author: smarttips
upgrade php 5.3 to 5.4 ubuntu
Installing PHP 5.4. or higer on Ubuntu 12.04 1. Add the PPA repository sudo add-apt-repository ppa:ondrej/php5-oldstable And run the following command in terminal 2. sudo apt-get update 3. sudo apt-get install php5
Indian cricketer suresh raina wedding photos
Famous indian cricketer Suresh Raina got married with childhood friend Priyanka Chaudhary at Delhi. Indian cricket team captain Mahindra Singh Dhoni reached with his wife Sakshi singh and other famous personalities like International Cricket Council Chairman N. Srinivasan, Virender Sehwag, Suresh Raina’s teammate Dwayne Bravo and coach Stephen Fleming were also present. Raina reached hours…
How to get a click event inside of google maps infowindow
Jquery events foroogle maps infowindow elements are not work inside $(document).ready(function(){}) or script> tag because the elements not added to the dom when browser execute the jQuery. Solution for this problem is need to add one click listener for google maps infowindow. google.maps.event.addListener(infowindow, ‘domready’, function(e){ //Put your jQuery code here }); //example of infowindow jquery…
Codeigniter utf-8 character input data save issue
Codeigniter have utf-8 character input data save issue in some hosting servers like Etisalat. system/core/Utf8.php have function to detect illegal char in input data(post/get). In some cases utf-8 char is consider as illegal and save function will fail. For avoid data saving issue do the following in clean_string() function of Utf8.php at line 85. $str…