home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / FAQ < prev    next >
Text File  |  2004-03-08  |  3KB  |  71 lines

  1. GROUP-OFFICE FAQ
  2.  
  3. 1. Why don't I see any modules like, email filesystem or scheduler?    
  4.     You have to log in as an administrator and add them manually in the menu: administrator->modules
  5.     Then select the modules you wish to use.
  6.     
  7. 2. Can I upload big files?
  8.     Yes you can. But some changes to php.ini are required for this:
  9.     
  10.     post_max_size = ??M
  11.     file_uploads = On
  12.     upload_max_filesize = ??M
  13.     
  14.     for apache's module config: conf.d/php.conf:
  15.     
  16.     limit_request_body = ?? 
  17.     
  18.     Also if the upload is taking a long time you should set the connection timeout from your webserver 
  19.     to a higher value. For apache (httpd.conf):
  20.     
  21.     Timeout ???
  22.     
  23.     
  24. 3. Why can't I connect to IMAP or POP-3 servers?
  25.     With some distro's (Redhat) you should add: '/notls' after the local_email_host property
  26.     in Group-Office.php for local e-mail. For external mail servers you should put it behind
  27.     the hostname part when you add an account.
  28.  
  29. 4. Can I create folders and filters with POP-3 servers?
  30.     No you can't. Multiple folders and filters are only supported with IMAP servers.
  31.     
  32. 5. Why do I get errors when I put single quotes in my input?
  33.     You have disabled magic_quotes_gpc in 'php.ini'
  34.  
  35. 6. How can I browse the Group-Office files with samba or ftp?
  36.     Load install.php in a browser and change the create mode to '0777' if you understand what you are doing.
  37.      
  38. 7. Why do I get this error when i use the e-mail module?
  39.    'Error: the imap extension for PHP is not installed' or 
  40.    'Fatal error: Call to undefined function: imap_utf7_encode() in ../classes/imap.class.inc on line 33'
  41.        
  42.        You didn't compile imap in PHP this is required for both IMAP and POP3.
  43.  
  44. 8. Why do I instantly get an access denied error when I open the file manager?
  45.     Becasue the home directories from the users are not writable for the webserver. The home directories are located
  46.     in the path you entered where Group-Office should store files. The default setting is /home/groupoffice.
  47.     The directory groupoffice should be owned by the webserver user and the directory home should be 
  48.     accessible (executable).
  49.  
  50. 9. I have set up Group-Office to create Samba users. But how can I set up the samba shares?
  51.     
  52.     Set up a share like below and each user will have access to it's private files. NOte that the Group-Office
  53.     permissions don't work with Samba. 
  54.     BEWARE OF THE 777 FILE PERMISSIONS! They are needed so the webserver can read and write to them as well.
  55.     
  56.     [groupoffice]
  57.        comment = Group-Office Home directory
  58.        writable = yes
  59.        valid users = %U
  60.        path = /usr/groupoffice/%U
  61.        force create mode = 0777
  62.        directory mode = 0777
  63.  
  64. 10. After installation I can't change the ownership of Group-Office.php and it won't start. What can I do?
  65.     You can donwload Group-Office.php with FTP, delete it from the server and upload it back.
  66.     
  67. 11. Why do I have to logon twice?
  68.     Logon to the same domain you entered in Group-Office.php
  69.     If you set the host in Group-Office.php to eg. 123.123.123.123 and you type www.example.com in the browser
  70.     you will have to logon twice. This is because after the first login the server creates a session for ip 123.123.123.123. 
  71.     Group-Office redirects you to the startpage with url http://www.example.com/. There's no valid session for this url yet.