【发布时间】:2012-03-28 05:07:48
【问题描述】:
警告:showBlogSection() 的参数 3 应为参考,值在 /home/smartsta/public_html/includes/Cache/Lite/Function.php 第 100 行中给出
我的 Joomla 网站的内容区域突然出现上述错误,有什么建议吗?
更新: 在 godaddy ftp 文件目录、ftp 或 Joomal C-panel 中找到对已定义文件和目录的访问权限没有这样的运气。
在 FTP 中,我无法访问此特定文件来调查第 100 行的内容。
在 Joomla 面板中,在全局配置中,我能够将“错误消息”切换为无,以便至少隐藏此错误。在缓存目录中,我看不到任何进入该文件夹的选项,尽管它显示。
我还在那个 c 面板屏幕的底部看到了这个,但只是链接到一个 joomla 帮助站点,在字段中我没有看到描述的区域来切换“打开或关闭”
“遵循 PHP 服务器设置对于安全性来说不是最佳的,建议更改它们:
PHP register_globals 设置为ON 而不是OFF
"
Update2!:
我找到了有问题的文件,下面是代码。第 100 行仅声明:
全局 $$object_123456789;
application/x-httpd-php Function.php PHP脚本文本
<?php
/**
* This class extends Cache_Lite and can be used to cache the result and output of functions/methods
*
* This class is completly inspired from Sebastian Bergmann's
* PEAR/Cache_Function class. This is only an adaptation to
* Cache_Lite
*
* There are some examples in the 'docs/examples' file
* Technical choices are described in the 'docs/technical' file
*
* @package Cache_Lite
* @version $Id: Function.php 47 2005-09-15 02:55:27Z rhuk $
* @author Sebastian BERGMANN <sb@sebastian-bergmann.de>
* @author Fabien MARTY <fab@php.net>
*/
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
require_once( $mosConfig_absolute_path . '/includes/Cache/Lite.php' );
class Cache_Lite_Function extends Cache_Lite
{
// --- Private properties ---
/**
* Default cache group for function caching
*
* @var string $_defaultGroup
*/
var $_defaultGroup = 'Cache_Lite_Function';
// --- Public methods ----
/**
* Constructor
*
* $options is an assoc. To have a look at availables options,
* see the constructor of the Cache_Lite class in 'Cache_Lite.php'
*
* Comparing to Cache_Lite constructor, there is another option :
* $options = array(
* (...) see Cache_Lite constructor
* 'defaultGroup' => default cache group for function caching (string)
* );
*
* @param array $options options
* @access public
*/
function Cache_Lite_Function($options = array(NULL))
{
if (isset($options['defaultGroup'])) {
$this->_defaultGroup = $options['defaultGroup'];
}
$this->Cache_Lite($options);
}
/**
* Calls a cacheable function or method (or not if there is already a cache for it)
*
* Arguments of this method are read with func_get_args. So it doesn't appear
* in the function definition. Synopsis :
* call('functionName', $arg1, $arg2, ...)
* (arg1, arg2... are arguments of 'functionName')
*
* @return mixed result of the function/method
* @access public
*/
function call()
{
$arguments = func_get_args();
$id = serialize($arguments); // Generate a cache id
if (!$this->_fileNameProtection) {
$id = md5($id);
// if fileNameProtection is set to false, then the id has to be hashed
// because it's a very bad file name in most cases
}
$data = $this->get($id, $this->_defaultGroup);
if ($data !== false) {
$array = unserialize($data);
$output = $array['output'];
$result = $array['result'];
} else {
ob_start();
ob_implicit_flush(false);
$target = array_shift($arguments);
if (strstr($target, '::')) { // classname::staticMethod
list($class, $method) = explode('::', $target);
$result = call_user_func_array(array($class, $method), $arguments);
} else if (strstr($target, '->')) { // object->method
// use a stupid name ($objet_123456789 because) of problems when the object
// name is the same as this var name
list($object_123456789, $method) = explode('->', $target);
global $$object_123456789;
$result = call_user_func_array(array($$object_123456789, $method), $arguments);
} else { // function
$result = call_user_func_array($target, $arguments);
}
$output = ob_get_contents();
ob_end_clean();
$array['output'] = $output;
$array['result'] = $result;
$this->save(serialize($array), $id, $this->_defaultGroup);
}
echo($output);
return $result;
}
}
?>
【问题讨论】:
-
当您查看第 100 行的 /home/smartsta/public_html/includes/Cache/Lite/Function.php 时,您会看到什么?而且您应该只记录错误而不是显示它们,这样它们就不会出现在 页面中。
-
我还没有签出文件,但是在这个“突然出现的错误”之前,代码中没有任何问题。有没有可能在所说的第 100 行出现一些东西?如何记录错误以使其不出现在页面中?
-
当然感谢您的回复!
-
查看 PHP 手册,例如PHP Error Logging - 在这个网站上,所有突然出现的错误都被归为一类,它们会突然消失,不需要任何答案(和问题)。请参阅常见问题解答,该站点是关于您对某些代码的特定问题。如果你不能明确你的问题是什么,你的问题就太宽泛了——blog.stackoverflow.com/2010/10/asking-better-questions