Jump to content

bitboxes

Retired Forum Member
  • Posts

    13
  • Joined

  • Last visited

Everything posted by bitboxes

  1. Fixed my end.... a upload of the full install download fixed the ticket system and all is now working correctly Tom Also PS befor i couldn't open any tickets with or without attachments.
  2. just updated to 12 useing the increments of .11 and .12 and now i can no longer open any tickets. just left with a blank page. when i turn on php debuging i get the following error Fatal error: Call to undefined function autoHyperLink() in /includes/ticketfunctions.php on line 0 going to do a full reinstall so see if that clears the problem just posting this now as a FYI incase i'm not the only one. Tom
  3. Fyi we scraped this project about a week or two ago when we learned that the 2.0 had its own api, wheres before we had to make our own and now theres just no point continuing to make our own module for our own api now that v2.0 is out
  4. hmm a demo could be setup, i have unused dedi servers i'll see if one of them has proxmox on it or get it installed on it
  5. well at best its only going to be a alpha/beta thing at this time. i don't see any point charging for some thing thats not finished yet. Things that WHMCS cant get it to do so far is the create and Terminate functions (i kinda left them out as i didnt need them at this time). Things it can do (once WHMCS knows what the VZ ID number is)(for OpenVZ containers): Start Stop Restart Change root password Get VPS settings Send VPS settings the first 4 kinda self explain what they do, the last 2 when you press the Get it connects to the host server and gets settings like RAM, SWAP, HHD SIZE, HOSTNAME, IP ADRESSES (the first returned ip is used for the "dedicated ip field), the Send button does the opposite and takes all the values stored in WHMCS and updates the vps container to them settings. on the clients area they can also preform the first 3 options at this time. As you can see its only doing some basic things at this time, when i started making it i only needed the first 3 options in the clients area though as time moved on i added in the settings changing parts to the admin area. But that all said the more i add the better its just a time thing. Tom
  6. i've been working on a module for Proxmox on whmcs and for the part that i have writen so far its been working nicely for the better part of a year now (for what i need it to do any way) but i has crossed my mind that A) i would like to finish and fine tune it and B) others would probably maybe want a module like it too. But at the same time i'm not going to put my time into some thing that no one wants so.... would any one want it? would you pay to "own life time use of it" it? (to support its development). your thoughts please ppl Tom
  7. in some of my products i have some customs fields (nothing strange there i know), how ever i've noticed wille developing my server module for whmcs that if i delete the product from the customers account the custom field data in the mysql table "tblcustomfieldsvalues" for that customers product is still there, even though the customer product it relates to nolonger is. it isnt a problem for me as i dont tend to delete the product from the customer once its there its just some thing i thought was odd. Tom Bitboxes
  8. I also would like to be able to do this. though the API and/or in my custom server module if possible, how ever the only way I can see to do this at the moment is to modify the mysql tables directly but this could be a risky process (I only say that because I don’t like going behind a programs back it can make things messy) Tom
  9. i'm probly way tooo late to answer the first qwestion but i mite as well in case some one else is looking for that answer. at the moment you are runing thecommand (if it works) but not returning an answer to the script i've been working on afew scripts of my own and found that if you dont return an answer the script assumes it failed. try this ...... you need to add some thing to make "$successful" ture like this function vmware_SuspendAccount($params) { # Code to perform action goes here... echo exec('./vmware-vsphere-cli-distrib/apps/vm/vmcontrol.pl --username root --password serverdude1 --operation poweroff --vmname Garland_PC --url https://192.168.1.44:443/sdk/webService'); $successful = "ture"; // you need to add your own checking system to check if the comand worked or not if ($successful) { $result = "success"; } else { $result = "Error message goes here..."; } return $result; } any one feel free to corect me if i'm wrong Tom
  10. i would also like to say that the call back is not working. its not showing up in the gate way log even though on the test mode the payoffline site shows 200 as a reply. any help on this would be much welcomed Thanks Thomas
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated