mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
bug:2647
Test 1and1 server with $_SERVER['SCRIPT_FILENAME'] git-svn-id: http://piwigo.org/svn/trunk@15583 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -509,7 +509,7 @@ class image_ext_imagick implements imageInterface
|
||||
$this->source_filepath = $source_filepath;
|
||||
$this->imagickdir = $conf['ext_imagick_dir'];
|
||||
|
||||
if (get_host() == 'kundenserver.de') // 1and1
|
||||
if (strpos(@$_SERVER['SCRIPT_FILENAME'], '/kunden/') === 0) // 1and1
|
||||
{
|
||||
@putenv('MAGICK_THREAD_LIMIT=1');
|
||||
}
|
||||
|
||||
@@ -1692,23 +1692,4 @@ function mobile_theme()
|
||||
|
||||
return $is_mobile_theme;
|
||||
}
|
||||
|
||||
/**
|
||||
* return hostname with gethostbyaddr and keep it in database
|
||||
*/
|
||||
function get_host($force_update=false)
|
||||
{
|
||||
global $conf;
|
||||
|
||||
if (!isset($conf['host']) or $force_update)
|
||||
{
|
||||
$conf['host'] = 'undefined';
|
||||
if ($host = @gethostbyaddr($_SERVER['SERVER_ADDR']))
|
||||
{
|
||||
$conf['host'] = $host;
|
||||
}
|
||||
conf_update_param('host', $conf['host']);
|
||||
}
|
||||
return $conf['host'];
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user