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 - j_strackbein

Pages: [1]
1
Feng Office 2 / Re: Calendar - Month view Bug
« on: January 13, 2013, 10:55:23 am »
Not the same error, but also a calendar view problem.

I could see the calender correctly only once, just after the first run after setup. When I change some settings in the admin panel (e.g. chose the tabs to display, set language), the calender is showing the weekly view only, all the buttons in the menu bar are gone (month, week, 5days...) and I get a message "Info: str is not defined". I have done 3 fresh installations (v2.2.2) now and the error is allways the same.

In the log.file are these two errors:

#1 ERROR: Missing argument 2 for evt_add(), called in /is/htdocs/wp11118109_M0AX5BLMSK/www/intranet/application/controllers/ContactController.class.php on line 2868 and defined in '/is/htdocs/wp11118109_M0AX5BLMSK/www/intranet/environment/classes/event/event.php' on line 9 (error code: 2)

#2 ERROR: Error: Undefined variable: data in '/is/htdocs/wp11118109_M0AX5BLMSK/www/intranet/environment/classes/event/event.php' on line 14 (error code: 8)

Any ideas? Thanx and cheers
Joerg

2
Older versions / Re: Not useable after update to 1.4.2
« on: July 03, 2009, 05:52:15 am »
thanks Pet, but this was not the problem. There are no tags selected and I can not see a thing. It looks more like that the view is not correctly updated (how ever..) when you click on something.

I have done the update on a local test server but I can not get it running on the live machine. Next thing I will try is just to copy the updated local system over to the Webserver.

My problem is that I have 180 users now on the system so I can test that only at the weekends (or nights), it would be such an improvement if the updates run more smootly without thinking, trying, playing around.. but I am sure that it will get better soon, the developers are doing a great+fine job

3
Older versions / Not useable after update to 1.4.2
« on: June 27, 2009, 07:56:07 am »
Hi there

I did the update from 1.3.1 to 1.4.2 this morning.

The automatic update process was running with out any problems.

But now system is not useable anymore:

- Documents: only show up in the overview, when clicking on the document tab the main window stays empty, only when there are definitely no documents in a workspace the message appears "no documents in..", in all other cases you can see nothing..

- Contacts: more or less the same like the documents, if there are no contacts in a workspace you can see the message "no contacts in...", clicking on "all" and the main window stays empty..

- Calendar: normal user get error "ogCalendarTopToolbar is not a constructor", admins not

-Tags: once you have chosen a tag you can not reset it to "all", what ever you click it says "There are no Documents tagged as.. in worspace..", seems like it is not reacting on the change

- Task: admins still get "error 500", no tasks to see or to add..

Debug= true does not display any errors

Tested in Firefox 3.0.11 Mac/Win, Safari 4 Mac
Server: PHP 5.2.6, MySQL 5.0.32 on Linux 2.6.18

I am going back to 1.3.1 now  :'(

Greetings
Joerg


4
Installation problems / Re: How can i install it??
« on: February 25, 2009, 04:04:05 pm »
Hi Miccighel

guessing you try to install it on an Unix system, you have to set the user rights for these folders ether with the Unix command "chmod" or with your FTP program, most of them can set the user right for files and folders on the remote system (e.g. in my program it is just a right click on the remote folder/file)

You should look here for details http://en.wikipedia.org/wiki/Chmod about Unix user rights /chmod and the syntax, but for the folders you need something like "chmod 755 /tmp", 755 means 7 : the owner can read, write, execute, 5: the group can read+execute 5: all can read+execute. Important: on a Unix machine you always need the execute right to  go into a folder

Good luck  ;)
Joerg



5
Ideas / Re: OpenGoo 1.3-beta is out!
« on: February 25, 2009, 11:56:07 am »
Some ideas what could be improved:

contacts: a normaler user still needs systemrights "can manage contacts" otherwise he will not see any contact at all.

adding a new user to contact list: first+lastname, both are written to the db field firstname in table og_contacts. why not add the avatar at the same time?

contact list:
would be nice for the admin to preset the colums which are displayed (and to remember them!) and the posiblity to sort not only the names, a filter would be very nice eg. show all members of department xyz..
(where are the preset for that in the code..?  I was not able to find them yet..)

atb
Joerg

6
Announcements / Re: OpenGoo 1.3-beta is out!
« on: February 25, 2009, 07:49:13 am »
wou..you guys are fast+good, thanks for all the excelent work you are doing!

We are starting to use opengoo for a large research project, more then 120users, 60 workspaces,..I will try to report about some of our experiences here.

It was asked in the forum before, but is there any posibilty to subscribe users to (emtpy) workspaces now to get information about anything which is happening in there? if not, is it in the pipeline for the next version? Otherwise we have to find a solution ourselfs.

Greeting from Vienna
Joerg

7
How To's / Re: Uploadign of files error
« on: November 28, 2008, 06:19:56 am »
great, even better! thanks a lot

8
How To's / Re: Uploadign of files error
« on: November 23, 2008, 01:50:28 pm »
First @developers: you have done a wounderful job!!! Thanks, it is a great looking product and if we are going to use it in our large research project, we will make a lot of advertising for opengoo :-)

This force_mkdir function could be changed even more, or? As I mention before I am not a PHP guru at all, maybe someone else out there could be so nice :-) I have 2 questions:

Replaceing the backslashes is only needed on Windows-System (right?) and I would guess that 90% of the webservers are Unix.. select case Unix/Win?

Why is the loop spliting the path into pieces and then starts trying all this pieces? is the upload folder not always in "/opengoo_install_dir/upload" ? Why not start just below that?


Here is the complete function including my addtion which works with my Hoster:

/**
  * Force creation of all dirs
  *
  * @access public
  * @param void
  * @return null
  */
  function force_mkdir($path, $chmod = null) {
    if(is_dir($path)) return true;
    $real_path = str_replace('\\', '/', $path);
    $parts = explode('/', $real_path);
    $forced_path = '';
    foreach($parts as $part) {
        if($part !='')
        {
              // Skip first on windows
              if($forced_path == '') {
                $start = substr(__FILE__, 0, 1) == '/' ? '/' : '';
                $forced_path = $start . $part;
              } else {
                $forced_path .= '/' . $part;
              } // if
              if(!is_dir($forced_path) && strstr($forced_path, "/is/htdocs/my_custumer_number/www")) {
                if(!is_null($chmod)) {
                  if(!mkdir($forced_path)) return false;
                } else {
                  if(!mkdir($forced_path, $chmod)) return false;
                } // if
              } // if
        } // if
    } // foreach
    return true;
  } // force_mkdir

9
How To's / Re: Uploadign of files error
« on: November 21, 2008, 05:44:43 pm »
I am not a php genius at all, but with a help of a friend we have maybe found what causes the problem, can someone (the developers) please check this:

We think it is NOT the openbase_dir setting, this seems to be correct for us.

The error ocurs in the "function force_mkdir" in line 241 ff. in /enviroment/functions/files.php when the path is read and opengoo is trying to creat a new folder.

In my case the path to webdir is "/is/htdocs/my_customer_number/www/" .

in line 242  of files.php

"if(!mkdir($forced_path)) return false;"

causes the error because $force_path is "/is" in the first loop of foreach and it is not allowed there to create a folder or to doing anything else.

So I think mkdir starts much to high in the path, it must start below /is/htdocs/my_customer_number//www/ in my case but I do not completly understand why you this function like the way it works. At the moment the loop reaches the part of the path which is writable for me it works, so when I add a 

&& strstr($forced_path, "/is/htdocs/my_customer_number/www" in line 240

it works fine and I can add any file I want. But does this cause any trouble with other functions?



10
How To's / Re: Uploadign of files error
« on: November 21, 2008, 11:33:06 am »
I have the same problems like lots of others here, I can not upload any files, the log.php shows the problem with the open_basedir settings. I have tried to follow all the recipes in the forum but noting works..
Database storage is no option because of the large amount of files.

All other PHP-packages I use on the same host can write, upload files, can create subfolders etc. without any problems.. eg. Mambo, Joomla, Propel, Quixplorer... some of them using a repository like opengoo too.

What I do not understand is the error message itself, if I understand the open_basedir setting of the server correct it is restricting scripts to my path only or? this look correct to me...

The Hoster is linking  "www.my_domain.eu" to "/is/htdocs/my_custom_number/www/", opengoo is runing in "www.my_domain.eu/intranet/",
open_basedir settings of the server are "/is/htdocs/my_custom_number", which should  include all subfolder , or?

But when opengoo is trying to create a new subfolder the error_log says it is OUTSIDE of the allowed path..??

Is there maybe someting wrong with relative/absolute path settings somewhere..?


#1 ERROR: Error: is_dir() [<a href='function.is-dir'>function.is-dir</a>]:
open_basedir restriction in effect.
File(/is) is not within the allowed path(s): (/is/htdocs/user_tmp/my_custom_number:/tmp:/dev/null:/bin:/usr:/is/default.errors:/is/htdocs/my_custom_number) in '/is/htdocs/my_custom_number/www/intranet/environment/functions/files.php' on line 241 (error code: 2)

#2 ERROR: mkdir() [<a href='function.mkdir'>function.mkdir</a>]:
open_basedir restriction in effect.
File(/is) is not within the allowed path(s): (/is/htdocs/user_tmp/my_custom_number:/tmp:/dev/null:/bin:/usr:/is/default.errors:/is/htdocs/my_custom_number) in '/is/htdocs/my_custom_number/www/intranet/environment/functions/files.php' on line 243 (error code: 2)

The first impression of opengoo was soo good, we would like to use it in a large scientifc project, but therefore it should run without any trouble.. are there some examples of a large installations somewhere, someone who has experience with 50-100users?

thanks and greetings from vienna

Pages: [1]