The surebert framework is an MVC based framework for PHP 5 and the surebert javascript toolkit. It was developed by Paul Visco and is used by Roswell Park Cancer Institute for internal and external development.
svn export http://surebert.com/svn/framework/trunk YOUR_PROJECT
sudo nano /etc/httpd/conf/httpd-vhosts.conf
//and add a virtual host for your site
<VirtualHost *:80>
ServerName YOURAPP.roswellpark.org
#this is an additional header alias
ServerAlias YOURAPP
DocumentRoot /PATH/TO/YOUR_PROJECT/public
CustomLog /PATH/TO//YOUR_PROJECT_access.log combined
ErrorLog /PATH/TO//YOUR_PROJECT_error.log
</VirtualHost>
//on CENTOS RHEL sudo /sbin/service httpd restart //on mac sudo apachectl restart
//ON UNIX /etc/hosts //ON WINDOWS /windows/system32/drivers/etc/hosts //add your host #SERVER_IP YOURAPP 127.0.0.1 myapp
Need help using the javascript part of the surebert framework? Visit the doc!!
cd YOUR_WEB_APP/private/framework
svn list http://surebert.com/svn/sb_classes/trunk
svn export http://surebert.com/svn/sb_classes/trunk/sb_Strings.php