[Sat Aug 12 02:21:28.993810 2017] [php7:notice] [pid 20352 ] [クライアント:14302] PHPのお知らせ:ライン1534PHP Notice:/var/www/zephyr/library/XenForo/Application.phpの1534行で見つからない数値です。
/**
* Gets the current memory limit.
*
* @return int
*/
public static function getMemoryLimit()
{
if (self::$_memoryLimit === null)
{
$curLimit = @ini_get('memory_limit');
if ($curLimit === false)
{
// reading failed, so we have to treat it as unlimited - unlikely to be able to change anyway
$curLimit = -1;
}
else
{
switch (substr($curLimit, -1))
{
case 'g':
case 'G':
$curLimit *= 1024; //This is line 1534
// fall through
case 'm':
case 'M':
$curLimit *= 1024;
// fall through
case 'k':
case 'K':
$curLimit *= 1024;
}
}
self::$_memoryLimit = intval($curLimit);
}
return self::$_memoryLimit;
}
ない、このいずれかを修正する方法をかなり確実に/var/www/zephyr/library/XenForo/Application.phpに遭遇した非うまく形成された数値、 1534
私の推測ではあるが$ curLimit = @ini_get( 'のmemory_limit'); 1Mのようなものに設定されています。それで$ curLimitが何であるかを確認してください。 – Gordon
'var_dump($ curLimit)' –