stable VCore 2.0 is the latest stable release. It is recommended for production environments. beta RapidCP 3.0 is the latest Alpha release. It is intended for testing purposes only.

Current time: 03-10-2010, 05:27 AM Hello There, Guest! (LoginRegister).

After a long wait we have decided to release an alpha version of RapidCP 3.0. Since this is a development version we do not recommend installing it in a production environment. This product is in its testing phase so use it at your own risk. Support will be provided in our forums located at http://www.rapidcp.org/forums/. If you guys find any bugs please post them at our bug tracker located at http://bugs.rapidcp.org/.

This version is in no way complete. The admin panel is missing a few modules that are required to run this software and we have not been able to create an installer. The client side, however, is 99% complete. Installation instructions have been outlined below:


Installation instructions
You will need to have the following software installed on your server:

Webserver - We recommend installing Apache as thats what RapidCP was developed for. Other http servers should work with a little modification.
Cherokee Server - For running RapidCP on. You will need to compile PHP as CGI for Cherokee.
MySQL - v5.0.27 is recommended.

Create a file named zpanel.conf in the conf folder and add the following to it:

 
Quote:
;; Database Details
zp_host=localhost
zp_user=root
zp_pass=[mysql root password]
zp_db=[database name]
zp_dbtype=mysqli

;; Environment Variables
path=
[path to rapidcp]


Create the MySQL database that you are going to use and run this sql file through.

You will need to manualy add user accounts through phpMyAdmin for now. I hope to have finished the user module completely done within 2 weeks. The default admin user is admin with the password admin.

Your directory structure should look like this:

/conf/
+ bind.zones
+ httpd.conf
+ httpd-custom.conf
+ httpd-vhosts.conf
+ zpanel.conf
All Files except for zpanel.conf can be left blank.

/bin/
+ cron.php
+ diruse.exe
These two files can be downloaded from http://www.rapidcp.org/bin.zip

/public_html/
+ Files downloaded from svn

If you guys find any bugs please report them to our bug tracker located at http://bugs.rapidcp.org/. In the future versions we will have the ability to report them from within RapidCP.

Subversion Access

RapidCP's SourceForge.net Subversion repository can be checked out through SVN with the following instruction set:

Code:
 
svn co https://rapidcp.svn.sourceforge.net/svnroot/rapidcp rapidcp


About Subversion

SVN (Subversion) is a tool used by many software developers to manage changes within their source code tree. SVN provides the means to store not only the current version of a piece of source code, but a record of all changes (and who made those changes) that have occurred to that source code. Use of SVN is particularly common on projects with multiple developers, since SVN ensures changes made by one developer are not accidentally removed when another developer posts their changes to the source tree.

In order to access a Subversion repository, you must install a special piece of software called a Subversion client. Subversion clients are available for most any operating system.