https://github.com/drudge/rubberduck
Simple TODO Manager using MySQL and PHP
https://github.com/drudge/rubberduck
Last synced: 4 months ago
JSON representation
Simple TODO Manager using MySQL and PHP
- Host: GitHub
- URL: https://github.com/drudge/rubberduck
- Owner: drudge
- Created: 2009-04-13T17:21:38.000Z (about 17 years ago)
- Default Branch: master
- Last Pushed: 2009-04-13T17:29:33.000Z (about 17 years ago)
- Last Synced: 2025-10-10T21:14:30.762Z (9 months ago)
- Homepage:
- Size: 85.9 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Rubberduck TODO
===============
Preface
-------
This project has not been under active development for sometime now.
Ok this is kinda beta software, although there wasnt much to test and I did not
find bugs so I guess it works :)
Introduction
------------
This piece of software is called Rubberduck! Its part of the PowerAdmin project
which can be found at . Rubberduck is licensed under the GPL
but if you rip anything off.. just be so nice to mention my name.. we all want
a bit of fame dont we?
Installation
------------
Ok what do you have to do install it? Easy, fire up your favourite editor and
open inc/config.inc.php and toy ahead with the variables. Dont touch the MySQL
(yet) because we only support, well counted, _ONE_ backend! Woah!
After that smack the rubberduck.sql into MySQL. If you dont like .sql files,
here is the syntax:
>CREATE TABLE `todolist` (
> `id` int(11) unsigned NOT NULL auto_increment,
> `level` tinyint(1) NOT NULL default '0',
> `short` varchar(255) NOT NULL default '',
> `long` text NOT NULL,
> `created` int(11) NOT NULL default '0',
> PRIMARY KEY (`id`)
>) TYPE=MyISAM;
Credits
-------
+ Roeland Nieuwenhuis - *Trancer @ IRCNet - PowerAdmin project maintainer*
+ Nicholas Penree - * drudge @ FreeNode - PowerAdmin user*