==================================================================
Please DO NOT REPLY to this mail or send email to the developers
about this bug. Please follow-up to Bugzilla using this
link:http://bugs.contribs.org/show_bug.cgi?id=8417
Have you checked the Frequently Asked Questions (FAQ)?
http://wiki.contribs.org/SME_Server:Documentation:FAQ
Please also take the time to read the following useful guide:
http://www.chiark.greenend.org.uk/~sgtatham/bugs.html
==================================================================
John Crisp <[email protected]> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |[email protected]
--- Comment #1 from John Crisp <[email protected]> ---
Thought there was a bug on this somewhere but could not find it.
I solved the syncml problems on this thread :
http://sourceforge.net/p/egroupware/mailman/message/27324201/
Here is my revised custom template fragment - the last two sections were the
key.
smeserver-egroupware-1.4.004-1
Manual upgrade to egroupware 1.8.x
[root@server httpd.conf]# cat
/etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf/98egroupware
# Apache and PHP configuration for EGroupware
#
# Many settings are required to have a # certain value for eGroupWare
# to function reasonably, so only change something if you are sure.
# this makes EGroupware available for all vhosts
Alias /egroupware /opt/egroupware/html
<Directory /opt/egroupware/html/>
{
my $egwsec = $egroupware{'HTTPS'} || "off";
if ($egwsec eq "off")
{
$OUT .= " # SSLRequireSSL on";
} else {
$OUT .= " SSLRequireSSL on";
}
}
AddType application/x-httpd-php .php .php3 .phtml
AddType text/xml .xml
Options FollowSymLinks ExecCGI
AllowOverride None
Order allow,deny
{
my $egw = $egroupware{'PublicAccess'} || "local";
if ($egw eq "local")
{
$OUT .= " allow from $localAccess";
} else {
$OUT .= " allow from all";
}
}
DirectoryIndex index.html index.php
AddHandler cgi-script .cgi
AddDefaultCharset Off
php_flag file_uploads on
php_flag log_errors on
php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
php_flag register_globals off
php_flag short_open_tag on
php_flag track_vars on
php_flag display_errors off
# E_ALL & ~E_NOTICE & ~E_STRICT = 8191 - 8 - 2048 = 6135
php_value error_reporting 6135
php_value max_execution_time 90
# php_admin_value mbstring.func_overload 7
php_value memory_limit 64M
php_value session.gc_maxlifetime 14400
php_value include_path .:/usr/share/pear
php_admin_value open_basedir
/opt/egroupware/html:/opt/egroupware/jpgraph:/opt/egroupware/tmp:/usr/share/pear-addons:/usr/share/pear:/tmp:/usr/bin/tnef:/usr/bin/zip
php_value upload_max_filesize 10M
php_admin_value upload_tmp_dir /tmp
php_value post_max_size 65M
<Files ~ "\.inc\.php$">
Order allow,deny
Deny from all
</Files>
</Directory>
<Directory /opt/egroupware/html/phpsysinfo/>
php_admin_value open_basedir /
</Directory>
<Directory /opt/egroupware/html/gallery/>
php_admin_value open_basedir
/opt/egroupware/html:/tmp:/usr/share/pear:/usr/bin:/bin
</Directory>
<Location /egroupware/rpc.php>
php_admin_value mbstring.func_overload 0
Order allow,deny
Allow from all
</Location>
<Location /egroupware>
php_admin_value mbstring.func_overload 7
php_value display_errors Off
--
You are receiving this mail because:
You are the QA Contact for the bug.
_______________________________________________
Mail for each SME Contribs bug report
To unsubscribe, e-mail [email protected]
Searchable archive at http://lists.contribs.org/mailman/public/contribteam/