PayPal Test payments in WooCommerce Plugin
The PayPal Sandbox is a place where you can test your shopping cart and other PayPal integrations in a realistic way, except that no money changes hands. This means you can test your PayPal processes in the Sandbox and know they will behave the same on the when you go live. You need to follwo these steps 1. Login to the PayPal developer website Login to the PayPal developer website: http://developer.paypal.com. Use your PayPal username and password to login and navigate to Applications → Sandbox accounts. 2. Create Your Sandbox test accounts Now You need to create 2 test accounts – 1 for the merchant (representing your shop’s PayPal account) and 1 for a buyer (representing a customer/buyer). Click the Create Account button to create an account. 3. Configure WooCommerce PayPal settings Now login to…
How to start LAMPP automatically in Ubuntu?
For a web developer LAMPP is the primary application for web development, so to start it every time whenever you login. You can make a script which will automatically start LAMPP on login. Open terminal and run following command. [code]sudo gedit /etc/init.d/lampp[/code] Use following code in file & save and close the file. [code] #!/bin/bash /opt/lampp/lampp start [/code] Now run following command to make this script executable. [code] sudo chmod +x /etc/init.d/lampp [/code] In Last run following command to install init scripts to all runlevel. [code] sudo update-rc.d lampp defaults [/code] Restart the system for confirmation, lampp would be start automatically & you can check it by running http://localhost in your browser.
Voting Rights Bill For NRI (Non Resident Indian)
Parliament has approved voting rights for non-resident Indians in elections with the Lok Sabha adopting the Representation of the People (Amendment) Bill, 2010, However, the person will be able to exercise the franchise only if he or she is present in the constituency on the polling day. The new law will allow an Indian citizen residing abroad to enrol in voter’s list and exercise his franchise even if he or she remained away from place of residence in India for more than six months owing to employment, education or otherwise. But there are more then 20 million Indians living abroad and it is practically impossible to have 20 million people travel to India at the same time. So a combination of Internet and Postal Ballot is more practical, reasonable and…
How to Setup WordPress Multisite
WordPress released version 3.0 among the many improvements included in the release, now the WordPress community combined WordPress MU into the main WordPress configuration. This process also know as WPMU. WordPress has made it easier to create multiple WordPress sites on one server with single installtion, Now WordPress website can be installed once, and other blogs can be set up from within the single WordPress dashboard. To change WordPress from the single install to a WordPress multi-site you need to follow these simple instructions: Update the wp-config.php file You will need to add this line of code to your wp-config.php [code]define('WP_ALLOW_MULTISITE', true);[/code] Choose the way of multi-site whether you want to use sub-domains or sub-directories Create your blogs.dir directory. (If using WordPress 3.5+ ignore this as this has been deprecated…
iPhone and iPad with CSS3 Media Queries
I've posted media queries to help designers & developers for their responsive designes. Many times We've had to design responsive websites targeting specific devices with CSS media queries. [code]iPad in portrait & landscape @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { /* Your Styles */ }iPad in landscape@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { /* Your Styles */ } iPad in portrait @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { /* Your Styles */ } iPhone 5 in portrait & landscape @media only screen and (min-device-width : 320px) and (max-device-width : 568px) { /* Your Styles */ } iPhone 5 in landscape @media only screen and (min-device-width : 320px)…
Select friends on Facebook (Facebook Custom Friends Selector)
This class might be utilized create a requisition that could be utilized to select companions on Facebook. It creates the essential Html, Css and Javascript to presentation a record of companions of the present Facebook client. The client can pick which companions he needs to select then afterward the companions record is submitted to a given Url utilizing Ajax to abstain from reloading the entire page. Download Files Here