Want to build module for HostBill? Not a problem!
We’ve been working recently on DevKits, documentation and examples so you can integrate virtually anything with HostBill now!
Stay tuned for next updates – I’m off trying to hook up coffee machine API with HostBill
Kris
Tags: api, developers, devguide, devkit, hostbillHello,
If youʼre a user of a server running Ubuntu and PHP 5.2.x, and you suffer from segmentation faults caused by ionCube – which effectively prevents you from using HostBill – weʼve got good news for you. The ionCube team was able to figure out what was wrong with their loaders on such servers, and recently issued new loaders that fix this issue – so, go ahead and grab the updated loaders for your server from http://www.ioncube.com/loaders.php
Tags: developers, installation, ioncube, serverVisit http://wiki.hostbillapp.com/index.php?title=Custom_Modules if you havent already – we’ve finally updated this page with working examples, so it will be easier to understand. Now you’ll be able to see for yourself how powerful HostBill modules can be. Let us know if you need more examples.
And here is little bonus from Geek&Poke – how we love to write documentation here in HostBill:
Tags: developers, tutorialThis post will not be directly related to HostBill itself – but hey – its developers blog!
I’ve recently stumbled upon great tool called Zen Coding – if you’re using HTML in your everyday work – this little fellow can save you a LOT of time – just requires some practice, for ex:
div#page>div.logo+ul#navigation>li*3>a
will be expanded into:
<div id="page"> <div class="logo"></div> <ul id="navigation"> <li><a href=""></a></li> <li><a href=""></a></li> <li><a href=""></a></li> </ul> </div>
Make sure to see it in action:
Tags: developers, help, html, tutorial