sushil37
Forum Replies Created
-
Forum: Reviews
In reply to: [Inline Google Spreadsheet Viewer] how do i make charts using queries.you r a maniac, psychopath, lunatic
hi, you guys didn’t answer my last question about the pivot tables and cross tabulation. I wanna know one more thing which i couldn’t find on your docs :-
Lets consider, i have lots of columns in my Barchart or any other Charts. i found that im able to click on the legend to hide/disable the columns which is great. What i wanna do is, while loading the Barchart or any other Charts, i want the legends get clicked/disabled automatically so that it shows few columns while the graph loads initially, but contains all the columns so that user can click on the disabled legends to view the graph. How can i do this?
Forum: Reviews
In reply to: [Inline Google Spreadsheet Viewer] how do i make charts using queries.the question was about making the pivot tables. im not able to make a pivot table and couldnt find an example. this is my issue.
can we create pivot tables and cross tabulations lik excel? if yes, are there any references or examples?
Forum: Plugins
In reply to: [2C2P Redirect API for WooCommerce] integration problememail me “[email protected]” if u still got any problems! I’ve sucessfull integrated it few months back and its running smoothly without any errors.
Forum: Plugins
In reply to: [2C2P Redirect API for WooCommerce] integration problemdocumentation provided by the bank are as follows:-
Preparing and sending payment request message using HTTP
form post<Form method=”post” action=https://hblpgw.2c2p.com/HBLPGW/Payment/Payment/Payment>
<input type=”text” id=”paymentGatewayID” name=”paymentGatewayID” value=”234”/>
<input type=”text” id=”invoiceNo” name=”invoiceNo” value=”00000001234567890333”/>
<input type=”text” id=”productDesc” name=”productDesc” value=”Test Product”/>
<input type=”text” id=”amount” name=”amount” value=”000000010000”/>
<input type=”text” id=”currencyCode” name=”currencyCode” value=”764”/>
<input type=”text” id=”userDefined1” name=”userDefined1” value=”custom data”/>
<input type=”text” id=”nonSecure” name=”nonSecure” value=”Y”/>
<input type=”text” id=”hashValue” name=”hashValue”
value=”94E8E91C29E73B9648011FADBAE19849B520B24B”/>
</Form>5. Hashing
In order to have data integrity and to identify the correct source of the request and
response, merchant needs to send hash value together in the request and HBL
PGW returns the hash value in the response.Hash value is computed using HMACSHA256 algorithm with merchant secret key
(provided by HBL to merchant).
HashValue = merchantID + invoiceNumber
+ amount + currencyCode + nonSecureSample code:
Hashing function in PHP
<?php
$signData = hash_hmac(‘SHA256′, “signatureString”,’SecretKey’, false);
$signData = strtoupper($signData);
echo urlencode($signData);
?>