TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   Show Off (http://www.talkphp.com/show-off/)
-   -   Project Manager (http://www.talkphp.com/show-off/1755-project-manager.html)

Nor 12-17-2007 03:37 PM

Project Manager
 
1 Attachment(s)
I was working on this on weekend while I was sick.

Basically this is a basic script that allows you to manage your projects.

Some simple features:
Ajax update project version
Add bugs( update status's )
Add features( this is a feature that say features you would like your project to have ).

Download attachment and view for your self the other features. read the "readme" file, pretty self explanatory.

I got this under the GPL 3 so its open source. Have fun...

I also commented almost everything so its probably easy to implement junk that you need.


To be honest I got to love this script, one of my favorite's that I've made. Helps me organize my stuff also.

I just got a name for it :)
Progect Miracle



Oh yeah theres one feature I forgot to mension :).

When you delete a project,bug,feature it will save everything into the saved folder sorted by what ever you deleted first.

project deletes all bugs,features and project it self into a file for a backup just incase you need that.

You must chmod these folders to 0777:
./saved/
./saved/features/
./saved/projects/
./saved/bugs

Haris 12-17-2007 03:43 PM

Screenshots? :-P

Nor 12-17-2007 03:49 PM

I'm at school so I'll have to get some 2morrow else you just have to try it out :P . I'm also gonna put it on sourceforge so thats gonna be cool.

Note( there is no graphics... its lightweight and loads quick, you can add your own touches to it ).

sjaq 12-17-2007 05:25 PM

Screenshots:

Got some errors:

Then added "error_reporting(false);" at the top of index.php to solve that..

Add Project:


Project Overview:


Project Details:


And the bug manager:


There are more pages but those you'll have to look at yourself

But it looks like a decent project manager, if you're looking for some basic features. I'm sticking with Trac :-P

Nor 12-17-2007 06:00 PM

I'll check out that bug. Thanks, What server your running also?(server details please, also works well with PHP 5.2.4).


Oh yeah theres one feature I forgot to mension :).

When you delete a project,bug,feature it will save everything into the saved folder sorted by what ever you deleted first.

project deletes all bugs,features and project it self into a file for a backup just incase you need that.

You must chmod these folders to 0777:
./saved/
./saved/features/
./saved/projects/
./saved/bugs

sjaq 12-17-2007 06:33 PM

It's not an error, my setting show warnings when I use depreciated code, so you probably used something that is depreciated.

And I'm using: PHP 5.2.4 & Apache/2.2.6 (Unix)

Nor 12-17-2007 06:35 PM

its probably the "&" reference symbol. I,e:

Code:

clean(& $contents );
and other functions...

sketchMedia 12-17-2007 08:51 PM

the cause is that he has tried to pass by reference at 'call-time' i.e. when he calls a function he has already defined. To solve it you need to tell PHP that you will be passing by reference in the function declaration and not in the call:

PHP Code:

function test(&$arg1, &$arg2

also the refernece operator (&) has been depreciated for the 'new' keyword, and i believe that PHP now automatically passes objects around by reference.


All times are GMT. The time now is 09:52 PM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0