Search

Change Language

Sunday, July 17, 2011

Implementing Moneybookers Payment Gateway with PHP

Today we will integrate a Payment gateway in our website. We are going to implement Moneybookers Payment Gateway. Moneybookers provide an easily customizable payment gateway that can be implemented without much headache. You just need to create two accounts on Moneybookers, one for the Merchant and other for the Buyer. Then send a request to Moneybookers to convert these accounts into test accounts...

Wednesday, June 8, 2011

IPv6 Day: Kicking the tires of a next-gen Net today

The computing industry has begun a major 24-hour test today to work the kinks out of IPv6, a disruptive but necessary overhaul of the Internet's inner workings. Starting at midnight, Universal Coordinated Time on June 8--or 5 p.m. PT today--dozens of companies lit up servers, Web sites, and network infrastructure that communicate using Internet Protocol version 6. The test, called World IPv6 Day,...

Friday, May 13, 2011

Which Image Format is Best

This was originally posted on YourTotalSite on June 10, 2005When developing a web site you may not think much about what image format you use but you could end up saving yourself or your organization a chunk of change in bandwidth costs by making your choice more wisely. On the web today there are three main image format types to choose from and all have their advantages and disadvantages. You...

Amazon launches Simple Email Service

Amazon has launched a new API for sending email "in the cloud" called Simple Email Service. Like other Amazon services, one of the biggest draws—besides using the solid infrastructure—is the pricing. You can send up to 2,000 emails a day absolutely free. After that, you're looking at 10 cents per thousand emails and 15 cents per GB of data transfer. Some basic list management functionalities such...

Friday, April 8, 2011

Showing Product Image on Virtuemart Cart Page

Edit 4 files to show product thumbnails in shopping cart and the checkout process: 1. basket_b2c.html.php 2. ro_basket_b2c.html.php 3. basket.php 4. ro_basket.php Files 1 & 2 are in:  /components/com_virtuemart/theme/templates/basket Files 3 & 4 are in: /administrator/components/com_virtuemart/html basket_b2c.html.php and ro_basket_b2c.html.php are themplates files used to display...

Getting Virtuemart Product Attributes Use Radio Buttons

Replace the complete code of the file:components/com_virtuemart/themes/default/templates/product_details/includes/addtocart_advanced_attribute.tpl.phpwith the following:  <?php if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); foreach($attributes as $attribute) {          ...

Showing Attributes in Product Browse page (Virtue Mart)

in home/administrator/components/com_virtuemart/html/shop.browse.php // Add-to-Cart Button       if (USE_AS_CATALOGUE != '1' && $product_price != ""          && !stristr( $product_price, $VM_LANG->_('PHPSHOP_PRODUCT_CALL') )          && !ps_product::product_has_attributes(...

Showing Addtocart in Browsepage (Virtuemart)

In administrator/components/com_virtuemart/html/shop.browse.php, look for these lines (400-404): // Add-to-Cart Button if (USE_AS_CATALOGUE != '1' && $product_price != "" && !stristr( $product_price, $VM_LANG->_('PHPSHOP_PRODUCT_CALL') ) && !ps_product::product_has_attributes( $db_browse->f('product_id'), true ) && $tpl->get_cfg( 'showAddtocartButtonOnProductList'...

Thursday, March 24, 2011

Distance Finder ( Google Maps API )

Google maps is a free web mapping service application provided by Google. It offers lots of cool features (showing various map types, plotting points, showing routes, geocoding addresses). You can also add all these features to your website using the Google Maps APIs provided by Google. In this tutorial I will show you how to add some of these features to your site. Demo Download Script Creating...

FireBug in Internet Explorer

Firebug In Internet Explorer Working : Copy this Script  to the URL .. javascript:var%20firebug= document.createElement('script');firebug.setAttribute('src','http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js');document.body.appendChild(firebug);(function(){if(window.firebug.version){firebug.init();}else{setTimeout(arguments.callee);}})();void(firebug);...

Friday, March 18, 2011

Php Pagination Script

<!--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1. Code to connect to your DB - place or include your code to connect to database.                                      ...

Sunday, March 13, 2011

CSS transforms

Rotation <style type="text/css"> .rotation {     -moz-transform: rotate(-20deg);     background-color:#000;     width:500px;     height:500px;    -webkit-transform: rotate(-20deg);    -o-transform: rotate(-20deg);    margin:100px; } .skew {     -moz-transform: skewx(10deg) translatex(150px);   ...

Thursday, March 10, 2011

CSS Text Shadow

Regular text shadow: p { text-shadow: 1px 1px 1px #000; } Multiple shadows: p { text-shadow: 1px 1px 1px #000, 3px 3px 5px blue; } The first two values specify the length of the shadow offset. The first value specifies the horizontal distance and the second specifies the vertical distance of the shadow. The third value specifies the blur radius and the last value describes the color of the...

Pages 91234 »