egroupware settings problem

kankei71

New Member
Messages
2
Reaction score
0
Points
0
Hi,

I have a problem with the configuration of "egroupware" that I just uploaded to my account. When I try to reach the (first) configuration page (http://myaccount/egw/setup) I got an "500 Internal Server Error".

According to the egroupware support FAQ, this is because the Apache configuration does not allow the directives given in the .htaccess file in the eGroupWare installation directory.

They give two options for correcting this problem. The first one is:

To allow the .htaccess file, by changeing AllowOverride None to AllowOverride FileInfo to the directory section matching your docroot, eg:
<Directory "/var/www /html">
AllowOverride FileInfo
...
</Directory>

The second is:

To rename the .htaccess file to eg. htaccess,
so it does NOT get used by the webserver. In that case you have to make
all the settings in that file manually in your php.ini.

Manually setting any file is not a good option for me at the moment, this is still to complicate for me.

But I would like to ask for some help for the configuration.

Thank you in advance.

In case, this is the content of the .htaccess file:

#
# Set
#
# AllowOverride FileInfo
#
# to enable parsing off this file
#
php_value memory_limit 32M
php_value max_execution_time 60
php_flag register_globals Off
php_flag magic_quotes_gpc Off
php_flag magic_quotes_runtime Off
# settings for the file upload, you might increase them further
php_value upload_max_filesize 16M
# session handling: now the check for expired sessions is done on every 10th session creation
php_flag session.use_trans_sid Off
php_value session.gc_probability 1
php_value session.gc_divisor 10
# multibyte extension: needed for utf-8
php_value mbstring.func_overload 7
 
Last edited:

Slothie

New Member
Messages
1,429
Reaction score
0
Points
0
They obviously do not allow you to change php_value 's as this is a shared and free host.

You'd have to go for a paid host for that :)
 
Top