URSafe NoteCase
What is the pin number for my gold card. What is my PIN number for my silver card. Want a easy way to remember your card PIN then you are in correct place. I searched Google play for the perfect… Read More »URSafe NoteCase
What is the pin number for my gold card. What is my PIN number for my silver card. Want a easy way to remember your card PIN then you are in correct place. I searched Google play for the perfect… Read More »URSafe NoteCase
Why you have to do the non-www to www redirect? Some of the users follow the conventional method of typing the URL from www. if your website does not support this then there might be chances that your website is… Read More »non-www to www redirect
We can block a single domain or a complete range such as entire countries. deny from 99.1.0.0/255.255.0.0 To allow Range of Multiple Ip address: allow from 99.88 99.88.77 11.22.33 Place these code in .htaccess
Several sites have been harmed due to improper permissions. This interesting hack gives the site a semi-auto healing mechanism. Warning: Your mileage may vary. {code type=PHP} #Ensure CHMOD settings for specified file types # remember to never set CHMOD 777… Read More »Automatically CHMOD various file type
In PHP you can send values by encoding and decoding the URL by using this encoding and decoding method. {code type=PHP}echo base64_encode(‘I am encoded PHP’);{/code} You will get and output something like this. {code type=PHP}VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=={/code} This can be decoded by… Read More »Encode and decode URL