Web Hosting Talk







View Full Version : Control Panel Software ?


DR4296
10-15-2000, 05:34 PM
So, can anybody tell me what sort of programming/technology most control panels work off of ?

Perl ? Java ?

I was thinking of improving upon the control panel that my provider offers... by basically putting in a page "in front" of it... and on that "front page", putting some links to some Perl scripts that perform some missing/much needed functions. And then I could simply FTP/install that on my client's sites (I'm a reseller) in order to improve the product functionality for them.

Whaddaya think ?

Thanks !

BC
10-15-2000, 05:47 PM
Most of them will be either Perl, or Java, or more likely C/C++.

Travis
10-15-2000, 06:44 PM
What, no PHP?

That's what ours is developed in, anyway.

BC
10-15-2000, 09:06 PM
LOL I knew I forgot something ;) Yeah, PHP's also a useful language for building CPs.

DanielP
10-16-2000, 05:39 AM
"then I could simply FTP/install that on my client's sites (I'm a reseller) in order to improve the product functionality for them"


A lot of the cpanel stuff is not just a perl script/c programming.

Remember these scripts must have the access/ability to preform system tasks under the root uid/gid to add users add pops, restart services etc.

Just to add a reminder :).

Travis
10-16-2000, 05:49 AM
If the control panel runs on the same box as the sites it's managing, a cron running as root can take care of that. (The control panel can just drop jobs somewhere for the cron to pick up.)

For managing things on a remote server, SSH works like a champ. Just don't let anybody break into the box containing the keys. ;)