fixed unnumbered bug : wrong charset for the desktop with apache2
This commit is contained in:
parent
6d62007afe
commit
9f636f7d00
|
@ -3,6 +3,8 @@ alternc (0.9.10) unstable; urgency=low
|
||||||
* bugfixes:
|
* bugfixes:
|
||||||
* #1163: fix sqlbackup script call routine to retain backwards
|
* #1163: fix sqlbackup script call routine to retain backwards
|
||||||
compatibility
|
compatibility
|
||||||
|
* fix usage of ISO8859-15 charset (that may NOT be defined in locales...)
|
||||||
|
and add it to the correct url (%%fqdn_lettre%%...)
|
||||||
* major changes:
|
* major changes:
|
||||||
* PHP sessions are now stored in /var/alternc/sessions
|
* PHP sessions are now stored in /var/alternc/sessions
|
||||||
|
|
||||||
|
|
|
@ -6,11 +6,12 @@
|
||||||
php_admin_flag safe_mode_gid off
|
php_admin_flag safe_mode_gid off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
php_admin_flag register_globals on
|
php_admin_flag register_globals on
|
||||||
AddDefaultCharset ISO-8859-15
|
AddDefaultCharset ISO-8859-1
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
<Directory /var/alternc/dns/%%fqdn_lettre%%/%%fqdn%%>
|
<Directory /var/alternc/dns/%%fqdn_lettre%%/%%fqdn%%>
|
||||||
php_admin_flag safe_mode_gid off
|
php_admin_flag safe_mode_gid off
|
||||||
php_admin_flag safe_mode off
|
php_admin_flag safe_mode off
|
||||||
php_admin_flag register_globals on
|
php_admin_flag register_globals on
|
||||||
|
AddDefaultCharset ISO-8859-1
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
Loading…
Reference in New Issue