search
Homephp教程php手册Warning: chmod() has been disabled for security reasons in

Warning: chmod() has been disabled for security reasons in D:\\freehost\\xxx\\WindFile.php on line 102根据英文的意思我们知道是出于安全原因,已被禁用的chmod()了,那么解决办法就是很简单了,直接把chmod()禁用关了就可以了。

如果你有服务器权限操作方法很简单打开PHP.INI,找到这行:

 代码如下 复制代码

disable_functions =

在后面那里加上要禁用的函数,如禁用多个函数,要用半角逗号 , 分开

给个例子:

 代码如下 复制代码

disable_functions = passthru,exec,system,popen,chroot,scandir,chgrp,chown,escapesh

ellcmd,escapeshellarg,shell_exec,proc_open,proc_get_status

如果没有服务器权限,就只能从程序下手了,下面我以ecmall出现此问题的解决办法
 

第一步:找到eccore/controller/message.base.php

 代码如下 复制代码
if ($errno == 2048)
    {
        return true;
    }

替换为

 代码如下 复制代码

if ($errno == 2048 || (($errno & error_reporting()) != $errno))
    {
        //不再需要通过_at方法来抵制错误
        //错误被屏蔽时就不抛出异常,该处理就允许你在代码中照常使用error_reporting来控制错误报告
        return true;
    }


第二步:找到eccore/ecmall.php

 代码如下 复制代码

function _at($fun)
{
    $arg = func_get_args();
    unset($arg[0]);
    restore_error_handler();
    $ret_val = @call_user_func_array($fun, $arg);
    reset_error_handler();

    return $ret_val;
}

修改为

 代码如下 复制代码

function _at($fun)
{
    $arg = func_get_args();
    unset($arg[0]);
    $ret_val = @call_user_func_array($fun, $arg);

    return $ret_val;


}

有些危险函数我们尽量在开发时就为避免掉了,免得以后要改,下面我列出一般服务器会禁止使用的函数有

 代码如下 复制代码

disable_functions = system,exec,shell_exec,passthru,proc_open,proc_close, proc_get_status,checkdnsrr,getmxrr,getservbyname,getservbyport, syslog,popen,show_source,highlight_file,dl,socket_listen,socket_create,socket_bind,socket_accept, socket_connect, stream_socket_server, stream_socket_accept,stream_socket_client,ftp_connect, ftp_login,ftp_pasv,ftp_get,sys_getloadavg,disk_total_space, disk_free_space,posix_ctermid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Warning: Invalid argument supplied for foreach() - 解决方案PHP Warning: Invalid argument supplied for foreach() - 解决方案Aug 26, 2023 pm 09:42 PM

PHPWarning:Invalidargumentsuppliedforforeach()-解决方案在使用PHP开发网页或应用程序时,经常会遇到各种错误和警告。其中一个常见的警告是“Invalidargumentsuppliedforforeach()”,它通常在使用foreach循环遍历数组时产生。这个问题看起来很简单,但是如果不

如何解决PHP Warning: file_get_contents(): failed to open stream: HTTP request failed如何解决PHP Warning: file_get_contents(): failed to open stream: HTTP request failedAug 18, 2023 pm 11:34 PM

如何解决PHPWarning:file_get_contents():failedtoopenstream:HTTPrequestfailed在进行PHP开发过程中,经常会遇到通过file_get_contents函数向远程服务器发起HTTP请求的情况。然而,有时候我们会遇到一个常见的错误提示:PHPWarning:file_get_c

如何解决PHP Warning: fopen(): SSL operation failed in file.php on line X如何解决PHP Warning: fopen(): SSL operation failed in file.php on line XAug 25, 2023 am 09:22 AM

如何解决PHPWarning:fopen():SSLoperationfailedinfile.phponlineX在PHP编程中,我们经常使用fopen函数来打开文件或者URL,并进行相关操作。然而,在使用fopen函数时,有时候会遇到类似于Warning:fopen():SSLoperationfailedinfile.p

PHP Warning: Invalid argument supplied for foreach()的解决方法 inPHP Warning: Invalid argument supplied for foreach()的解决方法 inJun 22, 2023 pm 01:07 PM

近年来,PHP已成为网页开发的重要工具之一。然而,PHP也会出现一些错误信息,其中一个常见的错误是“Invalidargumentsuppliedforforeach()“错误。下面将介绍如何解决这个错误。首先,让我们了解一下什么是该错误。这个错误通常出现在使用foreach循环代码时,却给循环代码提供了无效的参数。在大多数情况下,这种错误会使程序崩

PHP Warning: strtolower() expects parameter 1 to be string,的解决方法PHP Warning: strtolower() expects parameter 1 to be string,的解决方法Jun 23, 2023 am 08:11 AM

PHP作为一门广泛应用的编程语言,在Web开发、服务器端编程等多个领域被广泛使用。在开发中,可能会遇到如下错误信息:PHPWarning:strtolower()expectsparameter1tobestring。这个问题的解决方法在于了解strtolower()函数的用法和参数。首先,strtolower()是一个PHP内置函数,用于将

PHP Warning: file_get_contents()解决方法PHP Warning: file_get_contents()解决方法Jun 25, 2023 pm 01:33 PM

PHP是一款常用的服务器脚本语言,它可在网页服务器端执行脚本来创建动态网页。PHP的强大功能与灵活性使得它在网站开发方面被广泛应用。而file_get_contents()函数在PHP中也是一种常用的获取URL内容的方法。但有时候你会遇到以下的错误:PHPWarning:file_get_contents(url):failedto

JavaScript怎么用for求n的阶乘JavaScript怎么用for求n的阶乘Dec 08, 2021 pm 06:04 PM

用for求n阶乘的方法:1、使用“for (var i=1;i<=n;i++){}”语句控制循环遍历范围为“1~n”;2、循环体中,使用“cj*=i”将1到n的数相乘,乘积赋值给变量cj;3、循环结束后,变量cj的值就n的阶乘,输出即可。

PHP Warning: implode(): Invalid arguments passed的解决方法PHP Warning: implode(): Invalid arguments passed的解决方法Jun 23, 2023 am 09:04 AM

在PHP编程中,经常会出现Warning信息,其中,一个比较常见的提示是"PHPWarning:implode():Invalidargumentspassed"。本文将介绍这个Warning的解决思路和方法。首先,我们需要了解implode()函数的使用方法。该函数的作用是将一个数组拼接成一个字符串,使用以下语法:string

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor