Blenyo11's Posts
Nairaland Forum › Blenyo11's Profile › Blenyo11's Posts
1 2 3 4 5 6 7 8 9 (of 9 pages)
Own a bulk SMS site. Get our our bulk SMS portal creator for just #3000 check https://www.nairaland.com/2252859/bulk-sms-portal-creator-pure for more detail and http://www.openbulksms.com/ or http://shallomsms.com/ for the demo |
Own a bulk SMS site. Get our our bulk SMS portal creator for just #3000 check https://www.nairaland.com/2252859/bulk-sms-portal-creator-pure for more detail and http://www.openbulksms.com/ or http://shallomsms.com/ for the demo |
Let the payment be on a pay-as-u-go basis. After that initial payment you can impose an annual renewal or a pay per patient enrollment |
I am happy to announce to the house today that i have successfully developed the first pure php bulk SMS portal creator which is fully plug and play, plug-able, theme-able, extendable and comes in modules and also gives you the ability to create your own module, overwrite existing modules, create your own theme, modify or overwrite some part of the default theme and lots more. With this bulk sms portal creator, plugging payment methods is made even easier than ever You can see it in action at http://www.openbulksms.com/ YOU WILL LIKE IT ![]() Do you want a copy? Its free ![]() Call 08035146243
|
I am happy to announce to the house today that i have successfully developed the first pure php bulk SMS portal creator which is fully plug and play, plug-able, theme-able, extendable and comes in modules and also gives you the ability to create your own module, overwrite existing modules, create your own theme, modify or overwrite some part of the default theme and lots more. With this portal creator, plugging payment methods is made even easier than ever You can see it in action at http://www.openbulksms.com/ YOU WILL LIKE IT ![]() Do you want a copy. It goes for free ![]() Call 08035146243
|
Olaztan:I think you should modify your topic and specify that you need help and not like you want to offer maybe a job |
Kofacts:Don't you think that will be like using machine gun to kill a rat? |
okotv:I have had of women trouser but not of men Skirt pppp ![]() |
shaddi:Yes it may be seen as true. By voting APC this guy will be condemned to death and all other student will have to leave in fear and die in silence but voting PDP he will be corrected and changed I will rather vote for correction and not condemnation |
You can't have more than one computer here ooooh ![]() |
ChinenyeN:Hummmm It's true! This is where applications like flower 5.9.7 should always come in |
na waooo |
Craigston:I think you should install ignore 3.5.1 |
homerevival:Check https://www.radionomy.com/en/static/produce |
Craigston:The vendor has already given some tips blenyo11: To get the most out of it, consider buying |
Formatting can be a big problem if child processing is on Enegod: |
This is interesting A little humour Marriage Software This is what a guy wrote to our systems analyst (Marriage Software Division): Dear Systems Analyst, I am desperate for some help! I recently upgraded my program from Girlfriend 7.0 to Wife 1.0 and found that the new program began unexpected Child Processing and also took up a lot of space and valuable resources. This wasn't mentioned in the product brochure. In addition Wife 1.0 installs itself into all other programs and launches during systems initialization and then it monitors all other system activities. Applications such as "Boys' Night out 2.5" and "Golf 5.3" no longer run, and crashes the system whenever selected. Attempting to operate selected "Soccer 6.3" always fails and "Shopping 7.1" runs instead. I cannot seem to keep Wife 1.0 in the background whilst attempting to run any of my favorite applications. Be it online or offline. I am thinking of going back to "Girlfriend 7.0", but uninstall doesn't work on this program. Can you please help? .... AND THIS IS WHAT OUR ANALYST SAID: Dear Customer, This is a very common problem resulting from a basic misunderstanding of the functions of the Wife 1.0 program. Many customers upgrade from Girlfriend 7.0 to Wife 1.0 thinking that Wife 1.0 is merely a UTILITY AND ENTERTAINMENT PROGRAM. Actually, Wife 1.0 is an OPERATING SYSTEM designed by its Creator to run everything on your current platform. You are unlikely to be able to purge Wife 1.0 and still convert back to Girlfriend 7.0, as Wife 1.0 was not designed to do this and it is impossible to uninstall, delete or purge the program files from the System once it is installed. Some people have tried to install Girlfriend 8.0 or Wife 2.0 but have ended up with even more problems. (See manual under Alimony/Child Support and Solicitors' Fees). Having Wife 1.0 installed, I recommend you keep it Installed and deal with the difficulties as best as you can. When any faults or problems occur, whatever you think has caused them, you must run the......... C:\ APOLOGIZE\ FORGIVE ME.EXE Program and avoid attempting to use the *Esc-Key for it will freeze the entire system. It may be necessary to run C:\ APOLOGIZE\ FORGIVE ME.EXE a number of times, and eventually hope that the operating system will return to normal. Wife 1.0, although a very high maintenance programme, can be very rewarding. To get the most out of it, consider buying additional Software such as "Flowers 2.0" and "Chocolates 5.0" or "HUGS\ KISSES 600.0" or "TENDERNESS\ UNDERSTANDING 1000.0" or even Eating Out Without the Kids 7.2.1" (if Child processing has already started). DO NOT under any circumstances install "Secretary 2.1" (Short Skirt Version) or "One Nightstand 3.2" (Any Mood Version), as this is not a supported Application for Wife 1.0 and the system will almost certainly CRASH. BEST WISHES! Yours, Systems Analyst. |
drumma:I am interested Call me on 08035146243 |
I am following ![]() |
Next time try to specify the language in which you need help I didn't test this but it should be pointer to the right direction for you using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Web; using System.Web.Script.Serialization; using System.Web.UI; using System.Web.UI.WebControls; namespace WebApplication1 { public partial class Notification : Page { protected void Page_Load(object sender, EventArgs e) { var url = "https://voguepay.com/?v_transaction_id=" + Request.Form["transaction_id"] + "&type=json"; var httpWebRequest = (HttpWebRequest)WebRequest.Create(url); httpWebRequest.Method = "GET"; httpWebRequest.ContentType = "application/json"; //getting the respounce from the request var httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse(); var responseStream = httpWebResponse.GetResponseStream(); var streamReader = new StreamReader(responseStream); var response = streamReader.ReadToEnd(); var tran = (Transaction)Newtonsoft.Json.JsonConvert.DeserializeObject(response, typeof(Transaction)); var tran_ref = "some id from database";//This should be gotten from a db or so if (tran.merchant_ref != tran_ref) { //invalid transaction //this may have come from a man in the middle attacker } if (tran.total == 0) { //invalid amount return; } if (tran.status == "Aproved" ) { //transaction succeded //perform action } } class Transaction { public string status { get; set; } public double total { get; set; } public string merchant_ref { get; set; } } } } |
Using which language Voguepay sends you a POST request to your supplied notification URL. You can use the transaction_id in the POST variable the get the translation details from https://voguepay.com/ and take what ever action you want based on the returned value. The function below is a notification action of my controller function notification(){ $activePage = 'transactions'; $this->loadModel('transaction'); $this->loadModel('user'); if(isset($_POST['transaction_id'])){ //get the full transaction details as an json from voguepay $json = file_get_contents('https://voguepay.com/?v_transaction_id='.$_POST['transaction_id'].'&type=json'); //create new array to store our transaction detail $transaction = json_decode($json, true); $tran = new Transaction($transaction['merchant_ref']); if($transaction['total'] == 0) { $tran->Status = 'Invalid total'; $tran->Save(); die('Invalid total'); } if($transaction['status'] != 'Approved'){ $tran->Status = 'Failed transaction'; $tran->Save(); die('Failed transaction'); } if($tran->Amount != $transaction['total']){ $tran->Status = 'Invalid total'; $tran->Save(); die('Invalid total'); } $credit = $tran->Unit; $success = $this->deductAccount($credit); if($success == '1'){ $user = new User($tran->LoginId); $user->Balance += $credit; $user->Save(); $tran->Status = 'Completed'; $tran->Save(); }else{ $tran->Status = 'Payment made. Insufficient master balance'; $tran->Save(); } } } You should copy to a good editor to have a better formatting for readability |
oggy89:I have sent you a mail I am in Abuja |
9japipper:May God deliver them from your hand |
toshodei:Call 07053332881 so I can fix it for you Refer to https://www.nairaland.com/1527674/already-completed-school-management-application for what I did before 2013 |
codeaddict:Hmmmm. 2ru talk. Project closed |
Good one there. It can be done Let's start |
Na waoooo! Even a programmer trying to employ a GOOD PROGRAMMER is offering 40k? Kai, 9ja. Hmmm! Let me not talk ![]() |
cmdimkpa:So how do you know the advertised one is not professionally developed ![]() |
Good one Sir. I entirely forgot about this. I actually needs it for a current project. I don open the link for new tap. ![]() I don the jack again. ![]() |


?after all women were trouser.





