Login or Register

RSS IconRecent posts in this topic

avatar Pro
Davor on May 6. 2008. 6:07 am
Is the charts module updated for version 1.1?
www.synergetics.be | www.davor.be
avatar Pro
projeto on Jun 8. 2008. 2:18 pm
anyone know if this does work with 1.1?
avatar Pro
shrike on Jun 9. 2008. 2:40 pm
Did not work on my installation.
avatar Pro
WhiskI on Jun 10. 2008. 3:45 pm
Did not work even on 1.1.2
avatar
Alexs Zou on Jul 8. 2008. 4:05 am
I installed the v0.3,but when I go to charts,it's show the error message like the att.picture
Sombody can tell why?
avatar
Alexs Zou on Jul 8. 2008. 9:36 pm
I try to install it,and when i went to charts tabs,Now I got one new error message
''
Fatal error: Call to a member function getProjectPermission() on a non-object in D:\WWWROOT\activecollab\application\modules\milestones\models\Milestones.class.php on line 48
''

Somebody can help me?
avatar
tblakemore on Jul 30. 2008. 1:33 pm
I'm getting a similar error but and would be interested in seeing an update to this module as well, I've done some preliminary digging in the code, but I don't' have the experience with AC to know how things are put together yet.

Thanks in advance.

-Todd
avatar
vlados on Jul 31. 2008. 3:29 am
Fatal error: Call to a member function getProjectPermission() on a non-object in /var/www/vhosts/demo/subdomains/projects/httpdocs/activecollab/application/modules/milestones/models/Milestones.class.php on line 48
avatar
Adam Michel on Aug 9. 2008. 7:17 pm
Is this module still under development? My management would love to see Gantt chart functionality.
Adam Michel
Unix Systems Programmer
University of Arizona
avatar
Alexs Zou on Aug 16. 2008. 2:10 am
I already find the problem point
please compare the follow lines in file on_project_tab.php :
General or Other Version:

function charts_handle_on_project_tabs(&$tabs, &$project) {
    $tabs->add('charts', array(
      'text' => lang('Charts'),
      'url' => charts_module_url($project),
    ));
  } // files_handle_on_project_tabs


Changed:

function charts_handle_on_project_tabs(&$tabs,&$logged_user,&$project) {
    if($logged_user->getProjectPermission('charts',$project) >= PROJECT_PERMISSION_ACCESS) {
      $tabs->add('charts', array(
      'text' => lang('GanttCharts'),
      'url' => charts_module_url($project),
    ));
   }
  } // files_handle_on_project_tabs


So You can see the function charts_handle_on_project_tabs's pramaters difference,the working pramaters includes three "$tabs,$logged_user,$project"

Enjoy it!

RSS IconRecent posts in this topic