Browse Tag: developers

HostBill – Multiple possibilities for developers

Want to build a 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!

Whats possible?
– Hosting/App/Provisioning modules
– Connecting forms with provisioning modules
– Payment Gateways
– Plugins
– Using API
– Domain Registrars
– Custom Product Types (work in progress)

Stay tuned for next updates – I’m off  trying to hook up coffee machine API with HostBill 😉

Kris

Ubuntu + ionCube + HostBill problems – now fixed!

Hello,

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 prevent 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

Webdeveloper musthave – Zen Coding

This post will not be directly related to HostBill itself – but hey – it’s 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 example:

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: