Google map embedding problem in website


Have you ever face an error like “ Refused to display document because display forbidden by X-Frame-Options.” in error console while nothing is shown after embedding google map to your website?

There is a very easy solution to that. Just add “&output=embed” in the source link.

Spring MVC configuration Tutorial


While recently initiating a project using Spring MVC, we ware trying to discover some technical know how’s. We were doing that at random but one of my friend and college Abdullah Al Hasib made a skeleton project where almost all start-up issues are solved. He also made a documentation for us which further edited by Sheikh Nabil Mohammad also a Friend and college.

I am just including all of this here.

Please Download the project from here
And the sql file from here Continue reading

How to move transparent photoshop object to illustrator


It’s been a problem to move photoshop transparent objects to illustrator. It’s because when you move the object to illustrator, it fills transparent portions with white color. So to avoid the problem just select your object to another transparent file in photoshop and save it as .psd file. Then simply just open it with illustrator. Problem is solved !

Change default username and/or password of phpMyAdmin in xampp


If you want to change  default username and/or password of your xampp for any reason like my one(Using different mySql already installed in my machine ).  You simply do the following.

1. Open phpMyAdmin’s config file. In my case I’am using xampp-1.7.4 the config file named config.inc.php in ../xampp/phpMyAdmin/.

2. Check if $cfg[‘Servers’][$i][‘auth_type’] = ‘config’ if it’s not ‘config’ but ‘cookie’ or ‘http’  then you need to create a new MySQL user account before you change those(username and password) values.

3. Now change the value of $cfg[‘Servers’][$i][‘user’]  and $cfg[‘Servers’][$i][‘password’].

Good luck with that.