Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - supadoctor

Pages: [1] 2 3 ... 7
1
I use FO v 1.7.5 hardly and for many projects and task - it's good piece of software. But  when I opening the link to task (from email notification of from overview tab) my active workspace didn't changed. It was inconvenient for me.
There is some code hack to change it:

in \application\views\task\view_list.php at line 60 (after php part) put following script:

Code: [Select]
<script>
Ext.getCmp('workspace-panel').select(<?php echo $task_list->getProject()->getId();?>);
</script>

in \public\assets\javascript\og\WorkspacePanel.js chanege select function (string 482) as following:

Code: [Select]
select: function(id) {
if (!id) {
this.workspaces.ensureVisible();
this.workspaces.select();
} else {
var node = this.getNode(id);
if (node) {
node.ensureVisible();
this.pauseEvents = true;
node.select();
this.pauseEvents = false;
}
}
},

I think that's much better!  ;)

2
Feng Office 2 / Re: Error in 1.7.5 to 2.0 upgrade
« on: March 30, 2012, 02:16:13 am »
franponce87, I did that, however all of my tasks, notes, and documents were gone. I had a backup so I'm running on 1.7.5 until this is all sorted out.

Fully agree with skyer2000!

3
My attempts to upgrade 1.7.5 to 2.0.0.8 are failed... Fortunately I do not lost my DB! :)
To FO STUFF - you should improve upgrade script and process because many people use 1.7.x version (for me, I'm on 1.7.x more than 1,5 year) and without robust and safe upgrade procedure new version can stay unpopular and widely used  :-[

4
Strange...but my users table after upgrading still with og_prefix and now FO 2.0 can't file fo_users...  ???

5
How To's / Re: How to assign tasks to more than one single person?
« on: January 10, 2012, 08:36:57 am »
Hi,

Some tasks need to be done by two, three and more team members. How can I create task and assign it to more than a single member? My version: 1.6

It's not possible, and it's good because task should only one responsible. But you always can subscribe to task other users so they could get notifications about task's comments, changes etc...

6
How To's / Re: inline document viewer.
« on: December 20, 2011, 04:48:06 am »
Hi,

I am new to use Feng office. I have successfully installed Feng office on my desktop as i am using open-SUSE 12.1.

it has good features and nice to use, but all i wanted in this is to view document through browser itself lik google docs. .
when the file is attached in the document section, every time we have to download and then view  or edit and upload it back. .

so is there any options or is there any plugins to install it???


please let me know. . :)

Try to look thru forum. There was a hack to preview docs via http://docs.google.com/viewer. Keep in mind that hack is working only your FO instance visible from Internet.

7
How To's / Re: slowness
« on: December 20, 2011, 04:43:16 am »
my fengoffice is very very slow.i think that is because of incomplete upgrade process.how can i check everything is fine?(database indexes etc.)
thanks

Try debug mode (in config.php set define('DEBUG', true); ) and get info about time of DB operations.

8
How To's / Re: Changing of path
« on: December 13, 2011, 03:41:22 am »
Hi Francisco,

I have changed that, but all Links are still with the standard path... so if someone enters my "feng_small" and uses the link path of a document, he will be routed to the "feng" installation.
Where can I change this path entries?

Thanks in advance.

Peter



Clear the cash in new FO instance (cache\autoloader.php)

9
How To's / Re: The document repository is out
« on: November 22, 2011, 03:39:32 am »
Also in the db I cannot know the relation between the file names and the db file names.

Pls, read this thread: http://forums.fengoffice.com/index.php?topic=5383.msg19446#msg19446

10
How To's / Re: Get workspace name as prefix in email subject
« on: September 21, 2011, 07:57:37 am »
Hi Francisco.

I'm sorry, but i don't know exactly what you mean. I'm a fresh user of FengOffice and not that familiar with the codebase. Could you give me an example?

Thanks and have a nice weekend,
Daniel :-)

You can do it without hacking php code of Feng Office's modules.

11
How To's / Re: create a task in question?
« on: August 18, 2011, 02:44:09 am »
let me re-iterate:
i create a task. [somewhere somehow i "ask' a user to approve this task] [user approves] i can then complete task.

You can always communicate about task via comments to task.

12
How To's / Re: question about task IDs and helpdesk
« on: August 18, 2011, 02:41:14 am »
2) The only feature I'm currently missing is a helpdesk. A helpdesk could be set up using tasks (and a custom status) but in that case the task ID should be better visible and integrated in generated e-mail correspondence

You can always can make some hack in notifier class (Notifier.class.php) by removing comments from line //$properties['unique id'] = $uid;

13
How To's / Hours and minutes in task time fields
« on: June 23, 2011, 09:15:04 am »
Hi!

I would like to add time vaslues (hours and minutes) in task's atributes (start_datem due_date). How to get it? :)

14
How To's / 1.7.5b what's new?
« on: May 25, 2011, 08:56:04 am »
see subj.

15
How To's / Re: Tasks wont display.....
« on: May 16, 2011, 02:49:05 am »
I am using CE 1.7.4 and all was well until I logged in today. I clicked on the tab to list the tasks and get the following error under various browsers:

  • Firefox 4: Error: Syntax Error
  • Chrome 11: Unexpected token ;

Has anyone got any suggestions or insights into how I can fix this problem?

Sometimes I've got the same problems... PHP restart helps me.

Pages: [1] 2 3 ... 7