|
From: <su...@ea...> - 2002-07-18 08:05:51
|
Support - support - excellent news yep will try and keep top level also going as mentioned so we stay in top 1000 lol! next thing for me is to learn how to manage the cvs oh well another application to install on my machine. Also found this on freshmeat that may help in deconstruction to develop other aspects of gcdb ...who knows. quite a messy development when you try it. also the quarterly billing is driving me mad on this one and it sends out billing reminders every month even if you have zero balance so needs sorting. ------------------------ CBMS v0.1 --------------------------- URL: http://beta.voxel.net/projects/cbms Mailing list: cb...@vo... Author: Boo Van Alstyne License: Voxel Public License (see: LICENSE) --------------------------- DESCRIPTION: -------------- The CBMS is a full featured client/billing management system designed from the ground up to cater specifically to Hosting Providers. The software is a PHP script package which uses mysql. Notable features include: Automated Invoicing, client search, multiple customizable packages for clients and client viewable real time invoice ------------------------------ Keep up the good work chaps. all other systems are now charging silly money for a similar system, not to mention that they require root access for all to work and numerous add on modules etc - not all of us have dedicated servers yet or the money to rent them. easygoinnet =========================================================== 1. [gcdb - Open Discussion] RE: Gcdb status report (ce...@sf...) 2. RE: gcdb-devel digest, Vol 1 #63 - 1 msg (Van Eeden, Brandon) --__--__-- Message: 1 Date: Tue, 16 Jul 2002 21:35:27 -0800 (AKDT) From: ce...@sf... To: GCDB DEVELOP <gcd...@li...> Subject: [gcdb-devel] [gcdb - Open Discussion] RE: Gcdb status report Coders, bug hunters and testers wanted. This is the no-frills section of gcdb. Once the core is stable, then we look at all the nifty features in the MAIN gcdb branch to add in such a way that it can be turned on and off without major breakage. See: http://gcdb.sourceforge.net/cvs_instr.html for information on how to download via openssh/cvs anonymously. As you whack away on code, send a diff -u between your code and the code that is on the server. Gzip it and mail it off to me. I will force myself to take breaks Wednesdays and Sundays (Alaska Time). So, any patches Thursday and Monday morning will make a heck of a lot more sense. [I'll probably take more breaks than that.] Patches for the MAIN branch should go to the other developers (the patient lurkers). See ChangeLog from CVS for more details. * We gotta burn all the GIFs in this project, the first burn all GIFs day was years ago!! Easy task, but a nightmare for updating CVS. Oh well. Hey gimpy! * ACL code is in place for 'admin', 'Main_HotTicket', 'Main_SearchBar'. * Adding, edit, delete administrative users should work, you have to assign a UserID now. The ACL will allow you to give them specific access to specific gcdb subsystems (billing). More info in the UserInfo table should be used. * Table structure and sample data are in dbdump/testing_for_v1.2 --__--__-- Message: 2 From: "Van Eeden, Brandon" <bva...@nb...> To: "'gcd...@li...'" <gcd...@li...> Date: Wed, 17 Jul 2002 08:41:30 +0200 Subject: [gcdb-devel] RE: gcdb-devel digest, Vol 1 #63 - 1 msg This is AWESOME news! yay! Today's Topics: 1. branch development (ce...@sf...) -- __--__-- Message: 1 Date: Mon, 15 Jul 2002 21:48:14 -0800 (AKDT) From: ce...@sf... To: GCDB DEVELOP <gcd...@li...> Subject: [gcdb-devel] branch development Hiya, Been a long time, but development is finally on the move in the LOWEND branch. The no frills gcdb branch. This is more of a wake up call for me. Looks like the main branch is also active again. Trying to keep the project falling out of the top 1000 :) I've installed all the basic functionality working towards a version 1.2: * switch to PEAR::DB -- more unified interface to many DBs * Yanked specific settings out of UserID, Configure and will put them in UserACL. 'admin' has already been moved. ACL management code is available: man_uacl.php * New db_structure.v1.2 file is on CVS * Moved Bill Header/Footer inside the database to allow multiple bill types and assignment to customers. * Things are a bit of a mess, hopefully that will get straightened out in the future. To view CVS via the web: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/gcdb/gcdb/?only_with_tag=LOWE ND Don't let that Attic directory scare you, things still work on checkout. Below is posted as CVS Docs on the homepage. How to checkout code anonymously: 0. Make sure openssh and cvs are installed 1. setup your environment export CVSROOT=:pserver:ano...@cv...:/cvsroot/gcdb export CVS_RSH=ssh 2. login cvs login It will ask for a password, just press ENTER. 3. download the tree cvs -z3 co -rLOWEND gcdb If you leave out "-rLOWEND", you will download the super duper development branch. 4. Coding days off: Wednesday and Sunday (Alaska time) [IE: this will be the best time to diff] If you hack on some code, get something to work or fix a bug, send a patch diff to me via attachment. If its big gzip it... cvs diff -u > patch Should look something like: Index: gcdb/enteruser.php =================================================================== RCS file: /cvsroot/gcdb/gcdb/enteruser.php,v retrieving revision 1.7.2.1 diff -u -r1.7.2.1 enteruser.php --- gcdb/enteruser.php 22 Nov 2001 18:22:36 -0000 1.7.2.1 +++ gcdb/enteruser.php 16 Jul 2002 05:15:55 -0000 @@ -1,6 +1,7 @@ <? # Enter user displays a form for the entry of a user, and handles the # submission. +# VERY FUNNY session_start(); require("gcdb.php"); Thanks, Happy Hacking! Rob - |