Jump to content

sharath

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

sharath's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. ok.. Is that possible to develop the whole system, by taking help from local banks.
  2. without using any third party merchantiser, is it possible to have a direct trasanction? If it is not possible which is the cheapest third party merchantizer or gateways?
  3. can you give me details about the payment gateways & its types?
  4. Thanks for your reply. Yeah, after recieving details, how to make transaction?
  5. Is there any way to accept the credit card from my own website directly?
  6. I want to know how trasactions are processed? How can I develop?
  7. Hai, I want to develop a billing system for credit card. Can anybody tell me the basic requirements that I need to develop this system. I want to do from scratch. Any idea, pls share with me. Regards, sharath.
  8. can u tell me is there any syntax error in above pgm.... ? Thanks...
  9. Hi, Sorry, but i tried without leading space but still same error!! VB script: Set objVS = CreateObject("VirtualServer.Application") Set objVM = objVS.FindVirtualMachine("VM Name") objVM.Startup(); It Worked fine _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ___________ _ _ _ _ _ PHP Script: $objVS = new COM("VirtualServer.Application"); $objVM = $objVS->FindVirtualMachine("Scorpio"); $objVM->Startup(); it throuhgs Error at FindVirtualMachine function saying ERROR: Fatal error: Uncaught exception 'com_exception' with message 'Source: Unknown Thanks....
  10. Hi ALL, I am trying a PHP script which will automatic startup for virtual machines under Microsoft Virtual Server 2005 r2 but it failed due to COM object saying Source unknown But the same thing when i tried through VB script it works fine. VB script: Set objVS = CreateObject("VirtualServer.Application") Set objVM = objVS.FindVirtualMachine("VM Name") objVM.Startup(); It Worked fine _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ___________ _ _ _ _ _ PHP Script: $objVS = new COM(" VirtualServer.Application"); $objVM = $objVS->FindVirtualMachine("Scorpio"); $objVM->Startup(); it throuhgs Error at FindVirtualMachine function saying ERROR: Fatal error: Uncaught exception 'com_exception' with message 'Source: Unknown Please Help me it's urgent !! Thanks in advance
  11. Hai, I'm trying to add a new user. But i'm getting fatal error. This is my program.... PHP Code: <?php Adduser() ; function Adduser() { print("creating user \n"); $obj = new COM("WinNT://."); try { $user = $obj->create("user", "test"); $user->Description = "New User" ; $user->setinfo(); } catch( exception $e ) { print("error ........ \n"); $user = new COM ( "WinNT://./test"); } Below are the error message that I got from this program . error... exception 'com_exception' with message 'Source: Unknown Fatal error: Uncaught exception 'com_exception' with message 'Failed to create COM object `WinNT://./test': The group name could not be found. Stack trace: #0 C:\Program Files\php\adduser.php(14): com->com('WinNT://. /test') #1 C:\Program Files\php\adduser.php(2): Adduser() #2 {main} thrown in C:\Program Files\php\adduser.php on line 14 Can you solve my probelm........? Thanks in advance.. Regards, sharath.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.