- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,抱歉标题太长了,没想到会出现这个错误,所以不知道怎么形容。
我收到这个错误:
Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/usr/local/apache/bin/apachectl) is not within the allowed path(s): (/home/:/backup/:/tmp/) in /home/xxxxx/public_html/plugins/system/jch_optimize/jchoptimize/helper.php on line 176
这是否意味着 tmp 目录中的某些内容已被使用或缺少某些内容?
我在这里迷路了,我可以从哪里开始?
这是 helper.php:
<?php
use JchOptimize\JSMinRegex;
/**
* JCH Optimize - Joomla! plugin to aggregate and minify external resources for
* optmized downloads
* @author Samuel Marshall <sdmarshall73@gmail.com>
* @copyright Copyright (c) 2010 Samuel Marshall
* @license GNU/GPLv3, See LICENSE file
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* If LICENSE file missing, see <http://www.gnu.org/licenses/>.
*
* This plugin, inspired by CssJsCompress <http://www.joomlatags.org>, was
* created in March 2010 and includes other copyrighted works. See individual
* files for details.
*/
defined('_JEXEC') or die('Restricted access');
/**
* Some helper functions
*
*/
class JchOptimizeHelper
{
/**
* Checks if file (can be external) exists
*
* @param type $sPath
* @return boolean
*/
public static function fileExists($sPath)
{
//global $_PROFILER;
//JCH_DEBUG ? $_PROFILER->mark('beforeFileExists - ' . $sPath . ' plgSystem (JCH Optimize)') : null;
$bExists = (file_exists($sPath) || @fopen($sPath, "r") != FALSE);
//JCH_DEBUG ? $_PROFILER->mark('afterFileExists - ' . $sPath . ' plgSystem (JCH Optimize)') : null;
return $bExists;
}
/**
* Get local path of file from the url if internal
* If external or php file, the url is returned
*
* @param string $sUrl Url of file
* @return string File path
*/
public static function getFilePath($sUrl)
{
// global $_PROFILER;
//JCH_DEBUG ? $_PROFILER->mark('beforeGetFilePath - ' . $sUrl . ' plgSystem (JCH Optimize)') : null;
$sUriBase = str_replace('/administrator/', '', JUri::base());
$sUriPath = str_replace('/administrator', '', JUri::base(TRUE));
$oUri = clone JUri::getInstance($sUriBase);
if (JchOptimizeHelper::isInternal($sUrl) && !preg_match('#\.php#i', $sUrl))
{
$sUrl = preg_replace(
array(
'#^' . preg_quote($sUriBase, '#') . '#',
'#^' . preg_quote($sUriPath, '#') . '/#',
'#\?.*?$#'
), '', $sUrl);
//JCH_DEBUG ? $_PROFILER->mark('afterGetFilePath - ' . $sUrl . ' plgSystem (JCH Optimize)') : null;
return JPATH_ROOT . DIRECTORY_SEPARATOR . str_replace('/', DIRECTORY_SEPARATOR, $sUrl);
}
else
{
switch (TRUE)
{
case preg_match('#://#', $sUrl):
break;
case (substr($sUrl, 0, 2) == '//'):
$sUrl = $oUri->toString(array('scheme')) . substr($sUrl, 2);
break;
case (substr($sUrl, 0, 1) == '/'):
$sUrl = $oUri->toString(array('scheme', 'host')) . $sUrl;
break;
default:
$sUrl = $sUriBase . $sUrl;
break;
}
//JCH_DEBUG ? $_PROFILER->mark('afterGetFilePath - ' . $sUrl . ' plgSystem (JCH Optimize)') : null;
return html_entity_decode($sUrl);
}
}
/**
* Gets the name of the current Editor
*
* @staticvar string $sEditor
* @return string
*/
public static function getEditorName()
{
static $sEditor;
if (!isset($sEditor))
{
$sEditor = JFactory::getUser()->getParam('editor');
$sEditor = !isset($sEditor) ? JFactory::getConfig()->get('editor') : $sEditor;
}
return $sEditor;
}
/**
* Determines if file is internal
*
* @param string $sUrl Url of file
* @return boolean
*/
public static function isInternal($sUrl)
{
$oUrl = JUri::getInstance($sUrl);
//trying to resolve bug in php with parse_url before 5.4.7
if (preg_match('#^//([^/]+)(/.*)$#i', $oUrl->getPath(), $aMatches))
{
if (!empty($aMatches))
{
$oUrl->setHost($aMatches[1]);
$oUrl->setPath($aMatches[2]);
}
}
$sBase = $oUrl->toString(array('scheme', 'host', 'port', 'path'));
$sHost = $oUrl->toString(array('scheme', 'host', 'port'));
if (stripos($sBase, JUri::base()) !== 0 && !empty($sHost))
{
return FALSE;
}
return TRUE;
}
/**
*
* @staticvar string $sContents
* @return boolean
*/
public static function modRewriteEnabled()
{
if (function_exists('apache_get_modules'))
{
return (in_array('mod_rewrite', apache_get_modules()));
}
elseif (file_exists('/usr/local/apache/bin/apachectl'))
{
return (strpos(shell_exec('/usr/local/apache/bin/apachectl -l'), 'mod_rewrite') !== false);
}
else
{
static $sContents = '';
if ($sContents == '')
{
$oFileRetriever = JchOptimizeFileRetriever::getInstance($GLOBALS['oParams']);
$sJbase = JUri::base(true);
$sBaseFolder = $sJbase == '/' ? $sJbase : $sJbase . '/';
$sUrl = JUri::base() . 'plugins/system/jch_optimize/assets' . $sBaseFolder . 'test_mod_rewrite';
if (!$oFileRetriever->isUrlFOpenAllowed())
{
return FALSE;
}
$sContents = $oFileRetriever->getFileContents($sUrl);
}
if ($sContents == 'TRUE')
{
return TRUE;
}
else
{
return FALSE;
}
}
}
/**
*
* @param type $aArray
* @param type $sString
* @return boolean
*/
public static function findExcludes($aArray, $sString, $bScript=FALSE)
{
foreach ($aArray as $sValue)
{
if($bScript)
{
$sString = JSMinRegex::minify($sString);
}
if ($sValue && strpos($sString, $sValue) !== FALSE)
{
return TRUE;
}
}
return FALSE;
}
}
最佳答案
open_basedir
是一种服务器配置安全措施,用于禁止在 webroot 之外访问文件(通常)。
这可以防止脚本读取服务器上的随机文件。如果您的服务器已经受到危害,open_basedir
可以帮助减少危害的影响。
总的来说这是一件好事,但你似乎想做一些有点可疑的事情。
查看您的 php.ini
或 httpd.conf
,您可以在那里禁用它。
看起来这个脚本想要检查那个文件夹中的某个插件。这是不好的做法,apache_get_modules
的使用是正确的。您可以简单地删除有问题的代码。
此脚本甚至会尝试 shell_exec
,这就是为什么您必须非常小心在 Internet 上找到的随机代码。在这种情况下,它不是恶意的,只是很奇怪。
关于php - 警告 : file_exists() [function. 文件存在] : open_basedir restriction in effect. 文件(/usr/local/apache/bin/apachectl),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22767161/
如何使用 PHP 移动文件? 代码: if( file_exists($imageLocation) ) echo "file exists on server"; rename($imageLo
我遇到了这个奇怪的问题:$myImg 变量已从一些本地 html 中提取并指向我想检查的文件。字符串变量 file_exists 给出 false,但如果手动插入 content os 变量,它给出
我正在尝试使用正则表达式模式来搜索文件。 目录路径是: $css_dir = MY_PLUGIN_DIR.'/source/css/'; CSS 文件名开头为: $css_prefix = 'hap_
我已经在 NetBeans 中建立了一个带有单元测试文件的项目。我将 Bootstrap 设置为 C:\www\foo\_tests\TestAutoload.php 并将简单的自动加载方法放入此文件
当我习惯于跟随 PHP 代码时; "; } else { echo ""; ?> 我的浏览器总是显示kaars1.png而不是 Maurice.jpg我也试过 !file_exists 但当 Maur
我正在尝试将个人资料照片显示在我正在处理的网站上的评论列表中。如果他们没有个人资料照片,我有一个标准图像来显示,不幸的是,即使它存在,图像也总是转到标准图像而不是个人资料。代码如下: $reviewe
if(file_exists("./squadra/photos/photog.jpg")) { echo "### YES ###"; } else { echo "### NO #
我有一个我想执行的 php 脚本,前提是该脚本的其他实例尚未运行。我有这段代码: $lockfile = __DIR__.'/lock.file'; if(file_exists($lockfile)
file_exists 不工作。我看过几个例子,但还是不行。程序未检测到该文件。我的文件路径是/var/www/osbs/PHPAPI/recording.mp3,网站根目录在osbs里面。这个文件的
file_exists 不工作.. 也尝试过 realpath.. 同样的问题 首先检查文件是否存在.. file_exists 返回 false 但文件仍然被加载 chdir(__DIR__.'/.
有没有办法编写 PHP file_exists 函数,以便它在目录中搜索具有任意扩展名的文件。例如,假设我知道一个名为“hello”的文件,但不知道扩展名,我该如何编写一个函数来搜索名为 hello.
有没有办法编写 PHP file_exists 函数,以便它在目录中搜索具有任意扩展名的文件。例如,假设我知道一个名为“hello”的文件,但不知道扩展名,我该如何编写一个函数来搜索名为 hello.
这样做: php -r 'unlink("path"); clearstatcache(); echo file_exists("path");' 其中 path 是我的 linux 机器上文件的完整
根据 file_exists() 的 php 文档 The results of this function are cached. See clearstatcache() for more det
在我的脚本中,我设置了包含路径(因此应用程序的另一部分也可以包含文件),检查文件是否存在并包含它。 但是,在我设置包含路径后,file_exists()报告该文件不存在,但我仍然可以包含相同的文件。
我正在使用这段代码: $DataSourceName = "..\Log4OM\Log4OM-Active.SQLite"; if(!file_exists($DataSourceName)) {
TL; DR 执行file_exists或检查@include的返回值是否更快(即抑制错误)? 在这种情况下,您可能会假设我使用的是绝对路径,而不是依赖于include_path解析。 精心制作的版本
需要有关 codeigniter 的帮助,我认为 file_exists 用于服务器路径,而不是 url。但我的图像文件夹与应用程序和系统文件夹处于同一级别。谷歌找不到任何内容,请帮忙 $url=ba
我们正在尝试使用此功能,但没有找到合适的解决方案。如何在 Smarty 中检查 file_exists 中的图像。 喜欢 [{$oSelection->getName()}] = name of im
当我在像 /a/path/to/a/../file.php 这样的路径上使用 file_get_contents 时,它会很好地获取内容。如果我先调用 file_exists(或 is_file 或
我是一名优秀的程序员,十分优秀!