1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based photo gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org | |
---|
6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
8 | // +-----------------------------------------------------------------------+ |
---|
9 | // | This program is free software; you can redistribute it and/or modify | |
---|
10 | // | it under the terms of the GNU General Public License as published by | |
---|
11 | // | the Free Software Foundation | |
---|
12 | // | | |
---|
13 | // | This program is distributed in the hope that it will be useful, but | |
---|
14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
16 | // | General Public License for more details. | |
---|
17 | // | | |
---|
18 | // | You should have received a copy of the GNU General Public License | |
---|
19 | // | along with this program; if not, write to the Free Software | |
---|
20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
21 | // | USA. | |
---|
22 | // +-----------------------------------------------------------------------+ |
---|
23 | |
---|
24 | |
---|
25 | /* PHP5 configuration for known servers */ |
---|
26 | $hosting = array( |
---|
27 | |
---|
28 | //1and1 |
---|
29 | 'kundenserver.de' => 'AddType x-mapp-php5 .php', |
---|
30 | |
---|
31 | //Apinc |
---|
32 | 'apinc.org' => 'AddHandler x-httpd-php5 .php', |
---|
33 | |
---|
34 | //Free |
---|
35 | 'free.fr' => 'php 1', |
---|
36 | |
---|
37 | //Lost Oasis |
---|
38 | 'lost-oasis.net' => 'PHP_Version 5.0', |
---|
39 | 'lo-data.net' => 'PHP_Version 5.0', |
---|
40 | |
---|
41 | //MediaTemple |
---|
42 | 'gridserver.com' => 'AddHandler php5-script .php', |
---|
43 | |
---|
44 | //Online |
---|
45 | 'online.net' => 'AddType application/x-httpd-php5 .php', |
---|
46 | |
---|
47 | //Ouvaton |
---|
48 | 'web.ocsa-data.net' => 'AddHandler application/x-suexec-php5 .php', |
---|
49 | |
---|
50 | //OVH |
---|
51 | 'ovh.net' => 'SetEnv PHP_VER 5', |
---|
52 | |
---|
53 | //Strato |
---|
54 | 'rzone.de' => 'AddType application/x-httpd-php5 .php', |
---|
55 | |
---|
56 | //Web1.fr - NFrance |
---|
57 | 'nfrance.com' => 'AddHandler php-fastcgi5 .php', |
---|
58 | ); |
---|
59 | ?> |
---|