<html> <head></head> <body> <style> .AP_CONTNT{width: 1000px;} .AP_HEAD{border: 1px solid;padding: 7px;background: bisque;} .AP_CONTNT1{border: 1px solid;padding: 7px;margin-top: 5px;background-color: cadetblue;} .AP_CONTNT2{border: 1px solid;padding: 7px;margin-top: 5px;background-color: cadetblue;} .AP_CONTNT2_B1{border: 1px …
Read MoreCodeIgniter
Not showing website logo in ebs payment gateway mobile view
Now for EBS VERSION 3.0 Payment Gateway Integration Mobile view is added for EBS page. In the Computer Website/Company logo will display with company name …
Read MoreHow to restrict input box to take only numbers
<input type=”text” name=”card_num” size=”4″ maxlength=”4″ onkeyup=”return isNumberKey(this);”> <script> function isNumberKey(e) { var numberRegex = /^[0-9]+$/; if(!numberRegex.test(e.value)) { e.value = e.value.replace(/\D/g, ”); } } </script>
Read MoreInvalid secure hash in ebs kit version 3.0
Currently Ebs Payment gateway not user/developer allows to test EBS in TEST mode with the version 3.0 .They offer to test ebs Directly by LIVE …
Read Morehow to make secure hash to send in ebs payment gateway
//Pass your Registered Secret Key $hashData = “Your Secret Key“; $hash = “ebskey”.”|”.urlencode($_POST[‘account_id’]).”|”.urlencode($_POST[‘amount’]).”|”.urlencode($_POST[‘reference_no’]).”|”.$_POST[‘return_url’].”|”.urlencode($_POST[‘mode’]); $secure_hash = md5($hash); // now pass $secure_hash secure hash to ebs .
Read Morehow to integrate ebs payment gateway
Ebs modified their ebs data. now ebs page is responsive. New Action URL : https://secure.ebs.in/pg/ma/payment/request DEMO IS HERE:: Transaction Details * Channel Standard * Account …
Read MoreWhat is the test card credentials for verifying the ebs payment option in TEST mode?
What is the test card credentials for verifying the ebs payment option in TEST mode? Card No: 4111 -1111 – 1111 – 1111 Exp Date: …
Read Morehow to integrate EBS payment in php
here the demo files are attached. below link contains the full demo file for ebs payment gatway integration in php Click here to download Demo …
Read MoreHow to redirect with www. in php
#redirects with www.website name from website.com Add this code in your .htaccess file in public html folder. RewriteCond %{HTTP_HOST} ^website.com RewriteRule (.*) http://www.website.com/$1 [R=301,L]
Read MoreHow to remove index.php from url
#Used To Remove index.php Add the below codes in .htaccess file RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^(.*)$ index.php/$1 …
Read More