View Full Version : cPanel Auto Account Creation And PayPal Billing Gateway
ganesh.rao
September 29th, 2006, 04:07
Hey,
Does any one know any free cPanel billing software other than Auto-Host Manager?
Something like WHMCS or Client Exec but for free.
My friend and I are going to start on but wanted to know if there was a software before making our own.
moneyballs2
September 29th, 2006, 15:15
AMFR Account Creator I Believe To Be Free.
http://www.amfrservices.net
i think there is a stable release. havn't checked in ages.
heymrdj
September 29th, 2006, 16:20
Use phpCOIN plus the WHM v1.3.4 module listed down below the download.
http://www.phpcoin.com/auxpage.php?page=download
Mole
September 29th, 2006, 17:40
phpcoin is on all fantastico
heymrdj
September 29th, 2006, 18:58
Yeah but I think Fantastico's is a little bit behind...and it definitely doesn't have the new security patch released last Friday.
.Joe.
September 29th, 2006, 19:13
I heard that PHPcoin in Fantastico is really out-dated. You mine aswell go with AMFR or code a simple billing script.
James
September 30th, 2006, 18:49
Manual client management can also work, if you know how to do it effectively.
ganesh.rao
December 28th, 2006, 01:28
Manual client management can also work, if you know how to do it effectively.
I too wanted to do something similar!
amz
December 28th, 2006, 14:33
As far as how to create new accounts from scripts on Cpanel servers,
the following is a general basic example how to do that:
<form action="setup.php" method='post'>
<table border="0" align="center" cellpadding="3" cellspacing="0">
<tr>
<td><div align="right">
<input name="domain" type="text">
</div></td>
</tr>
<tr>
<td><div align="right">
<input name="apass" type="text">
</div></td>
</tr>
<tr>
<td><div align="right">
<input name="auser" type="text">
</div></td>
</tr>
<tr>
<td><div align="right">
<input type="submit" name="Submit" value="Submit">
</div></td>
</tr>
</table></form>
<?php
require '/usr/local/cpanel/Cpanel/Accounting.php.inc';
foreach($_POST as $key => $val) {
$$key = strtolower(trim(stripslashes($val)));
}
$host = "localhost";
$user = "root";
$rkey = '(paste your remote access key here)';
$plan = "(paste your plan name here)";
@createacct("$host", "$user", "$rkey", 0, "$domain", "$auser", "$apass", "$plan");
Names of account packages should not contain any spaces or punctuation
which the sole exception being the underscore (_) character which is permitted.
Because of the "require" line calling a file outside the web path, you will need
to either disable "open_basedir" for the hosting account using the setup script
or you will need to add the /usr/local/cpanel/Cpanel path to open_basedir
in the /etc/httpd/conf/httpd.conf configuration file to allow for automatic
scripted account creations.
Naturally you can greatly expand upon this sample code and add in sanity checks
and test code to make sure the proper variables have been set but, this is
the basics of what you need to know here as to how to do it yourself.
Knowing this you could either write your own billing component or use
any of the billing applications out there and link to something like this.
James
December 28th, 2006, 18:55
There's also a free one called AutoHostManager I just remembered, try it.
ganesh.rao
December 29th, 2006, 04:02
Yeah... I know it too. But does any one know a billing & client management script too?
heymrdj
December 29th, 2006, 09:07
Yeah... I know it too. But does any one know a billing & client management script too?
Well I used minibill for a little time and its free. I really liked it. Probably the best free one FOR ME (as has been said in many posts, just cause its good for you doesn't mean its good for me). But you might wanna check it out :).
http://www.ultrize.com/minibill/
ganesh.rao
December 29th, 2006, 09:22
Well I used minibill for a little time and its free. I really liked it. Probably the best free one FOR ME (as has been said in many posts, just cause its good for you doesn't mean its good for me). But you might wanna check it out .
http://www.ultrize.com/minibill/
Its the worst, I have come accross. I have tried it before.
I like something as WHMAP, WHMCS, or HostAdmin, but sadly they arent free!
JonnyH
December 29th, 2006, 09:25
Doesn't matter
Powered by vBulletin® Version 4.1.7 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.