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

Pages: [1]
1
Development / Re: Ldap Authentication patch
« on: February 08, 2010, 10:29:43 am »
It should, but I've never tried it.

2
Development / Re: LDAP Integration
« on: November 30, 2009, 10:24:23 am »
Yup, this is great!

3
Development / Re: Ldap Authentication patch
« on: November 25, 2009, 10:33:33 am »
Hi
we are currenty looking for a project life opengoo and this software seems promising, but we will need ldap support and i am not sure how this "patch" works.
Does it import users from my LDAP Server to the opengoo Database or will i have to create / import each user? Can i map groups from the LDAP Server to groups in OpenGoo?
If this is possible i can start evaluating the whole thing.

I'm not the one who has written the patch and I'm not good enough in PHP to fully understand the code but I can explain what I've seen so far by using the software:

- You need to create a user locally in OpenGoo for each user in LDAP you will want to use with the same username as in LDAP. When you login, during the authentication phase, the patch will look for the specified username in the LDAP tree. If found, it will verify the password provided with the one in LDAP. If not found, it will check in the local OpenGoo user DB.

- As far as LDAP groups go, I don't think you can limit access to specific groups. Again, I might be wrong. The author of the patch might be able to give you better answers about this.

4
Development / Re: Ldap Authentication patch
« on: November 24, 2009, 12:49:36 pm »
Check in OPENGOOROOT/cache/log.php to see if there is any file missing or other errors.

5
Development / Re: Ldap Authentication patch
« on: November 24, 2009, 12:39:47 pm »
What is you RED error?

6
Development / Re: Ldap Authentication patch
« on: November 24, 2009, 12:28:40 pm »
If you use an LDAP browsing utility (such as LDAPBrowser), are you able to browse your LDAP tree with those settings?

7
Development / Re: Ldap Authentication patch
« on: November 24, 2009, 11:00:01 am »
Yes, I was able to get this to work.

This post was also very helpful: http://forums.opengoo.org/index.php?topic=2821.0

You will want to make sure that the LDAP2.php and LDAP2 folder are located in the OPENGOOROOT/library/PEAR/Net folder.

Hope this helps...

8
How To's / Custom reports - Templates
« on: November 19, 2009, 12:34:54 pm »
Is there a way to use custom report templates with a corporate logo in OpenGoo?

9
How To's / Re: External file storage
« on: November 18, 2009, 01:14:28 pm »
Thanks everyone but I found an easier and more stable way.

In the file OPENGOOROOT/init.php, you can set the path where you want your uploaded files to be stored:

define('FILES_DIR',        ROOT . '/upload'); // place where we will upload project files

You simply have to change the second parameter to the path where you want to store the files and voilĂ !


10
How To's / Crystal Reports Integration
« on: October 20, 2009, 12:16:22 pm »
Is it possible tu use Crystal Reports to create custom reports based on the data contained in OpenGoo?

I guess that OpenGoo was probably not designed with that functionality but it would be best if I could use our organization's reports templates made with Crystal Reports.

Has anyone tried it?

11
How To's / External file storage
« on: September 25, 2009, 06:19:22 pm »
Is it possible to change tthe location of the "upload" folder to place it on another volume? I do not want to take the chance of filling up all the space on my server's OS drive by uploading files.

Thanks.

12
Development / LDAP Integration
« on: September 24, 2009, 03:31:39 pm »
I need help.

Ineed to be able to authenticate my OpenGoo users with my (Mac OS X) LDAP Server. I followed the instructions given by a user in the post "http://forums.opengoo.org/index.php?topic=2297.0" but I can't get this to work... 

Here is what I did so far:

- Downloaded and extracted the patch in my OpenGoo Root directory.
- I placed every file in the patch into the right folders.
- Downloaded PEAR Net_LDAP2 v2.0.6.
- Extracted the content of Net_LDAP2 to the following directories:
       * LDAP2.php --> opengoo_root/library/PEAR/
       * LDAP2 folder --> opengoo_root/library/PEAR/Net
- Configured opengoo_root/config/ldap.config.php with the following settings:

 // The configuration array:
  $config_ldap = array (
      'basedn'    => 'cn=users,dc=serveur1,dc=dct,dc=com',
      'starttls'  => false,
      'port'      => 389,
      'version' => 3,
      'binddn'    => '',   
      'bindpw'    => '',
      'host'      => 'serveur1.dct.com',
      'uid'       => 'uid' //Change in according with your settings to match the userid entry
  );

I was able to connect to my LDAP tree using those settings in ldapbrowser so I think those settings are correct.

        *In OpenGoo, I created a user whose id is the thing as its uid in the LDAP tree.
        * Restarted my web server.

Now, when I login with any username (local to OpenGoo or LDAP based), I only get a blank white page. And when I try to login with a username that does not exist in OpenGoo nor in LDAP, I get the "Failed to log you in" error message.

What am I doing wrong?

I can I debug this? I don't get any errors in LDAP.

I really hope someone can help me with this... OpenGoo seems to be a great product but we really need a solution that can bind to our LDAP server.

13
Development / Re: Ldap Authentication patch
« on: September 23, 2009, 12:28:33 pm »
I need help.

I can't get this to work...  ???

Here is what I did so far:

- Downloaded and extracted the patch in my OpenGoo Root directory.
- I placed every file in the patch into the right folders.
- Downloaded PEAR Net_LDAP2 v2.0.6.
- Extracted the content of Net_LDAP2 to the following directories:
       * LDAP2.php --> opengoo_root/library/PEAR/
       * LDAP2 folder --> opengoo_root/library/PEAR/Net
- Configured opengoo_root/config/ldap.config.php with the following settings:

 // The configuration array:
  $config_ldap = array (
      'basedn'    => 'cn=users,dc=serveur1,dc=dct,dc=com',
      'starttls'  => false,
      'port'      => 389,
      'version' => 3,
      'binddn'    => '',   
      'bindpw'    => '',
      'host'      => 'serveur1.dct.com',
      'uid'       => 'uid' //Change in according with your settings to match the userid entry
  );

I was able to connect to my LDAP tree using those settings in ldapbrowser so I think those settings are correct.

        *In OpenGoo, I created a user whose id is the thing as its uid in the LDAP tree.
        * Restarted my web server.

Now, when I login with any username (local to OpenGoo or LDAP based), I only get a blank white page. And when I try to login with a username that does not exist in OpenGoo nor in LDAP, I get the "Failed to log you in" error message.

What am I doing wrong?

I can I debug this? I don't get any errors in LDAP.

I really hope someone can help me with this... OpenGoo seems to be a great product but we really need a solution that can bind to our LDAP server.

Pages: [1]