search
HomeBackend DevelopmentPHP Tutorialfailed to open stream: No such file or directory Problem Collection_PHP Tutorial

failed to open stream: No such file or directory. This article is collected and organized by the editor of Bangkejia. Please keep the source when reprinting.

Case 1:

(failed to open stream: No such file or directory) The directory permissions configured in the PHP environment under IIS cause errors

Causes and solutions:

Configure the environment as IIS + php

If you confirm that your program can run normally in other environments but an error similar to the following occurs only in IIS under Win:

Warning: main(./Config.php): failed to open stream: No such file or directory in D:wwwrootDemoConfig.php on line 13

Fatal error: main(): Failed opening required './Config.php' (include_path='.;c:php4pear') in D:wwwrootCoreConfig.php on line 13

This problem is mainly caused by the removal of everyone permissions on the Win NTFS disk. It can be solved by adding an Internet guest account to the security permissions.

Operation steps: D drive -> Properties -> Security -> Add user IUSR_XXXXX OK

Case 2:

The problem is:
Warning: require_once(../lib/DBUtil.class.php) [function.require-once]: failed to open stream: No such file or directory in E:phpprodxhserviceExpertService.class.php on line 2

Fatal error: require_once() [function.require]: Failed opening required '../lib/DBUtil.class.php' (include_path='.;C:php5pear') in E: phpprodxhserviceExpertService.class.php on line 2

Solution:

1. Add dirname(__FILE__) when require, like this: require_once(dirname(__FILE__)."/../lib/DBUtil.class.php");

2. Understand the require_once instance as follows:

Copy to ClipboardLiehuo.Net CodesQuoted content: [www.bkjia.com] //If b.php is referenced by a.php file require or include in other directories
require_once("./c.php"); //Actually, a is called c.php in the .php directory
require_once(dirname(__FILE__)."/c.php"); //What is actually called is c.php in the b.php directory
require_once("c. php"); //What is actually called is c.php in the b.php directory
?>

Case 3:

When running the php website, an error occurred. The content is as follows:

Warning: Unknown: failed to open stream: No such file or directory in Unknown on line 0

Fatal error: Unknown: Failed opening required 'E:/php/www/mrsoft/Register Login Module/index.php' (include_path='.;C:php5pear') in Unknown on line 0

File structure:

Solution:

apache cannot parse the Chinese URL of the "Registration Login Module" in the picture above, just change it to the English path.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/363896.htmlTechArticlefailed to open stream: No such file or directory A complete list of problems, this article is collected and compiled by the editor of Liehuo.com, please download it at Keep the source when reprinting. Case 1: (failed to open stream: No such f...
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
使用java的File.length()函数获取文件的大小使用java的File.length()函数获取文件的大小Jul 24, 2023 am 08:36 AM

使用Java的File.length()函数获取文件的大小文件大小是在处理文件操作时很常见的一个需求,Java提供了一个很方便的方法来获取文件的大小,即使用File类的length()方法。本文将介绍如何使用该方法来获取文件的大小,并给出相应的代码示例。首先,我们需要创建一个File对象来表示我们想要获取大小的文件。以下是创建File对象的方法:Filef

php blob怎么转filephp blob怎么转fileMar 16, 2023 am 10:47 AM

php blob转file的方法:1、创建一个php示例文件;2、通过“function blobToFile(blob) {return new File([blob], 'screenshot.png', { type: 'image/jpeg' })}”方法实现Blob转File即可。

IntelliJ IDEA中如何调试Java Stream操作IntelliJ IDEA中如何调试Java Stream操作May 09, 2023 am 11:25 AM

Stream操作是Java8推出的一大亮点!虽然java.util.stream很强大,但依然还是有很多开发者在实际工作中很少使用,其中吐槽最多的一个原因就是不好调试,一开始确实是这样,因为stream这样的流式操作在DEBUG的时候,是一行代码,直接下一步的时候,其实一下就过去了好多操作,这样我们就很难判断到底是里面的哪一行出了问题。插件:JavaStreamDebugger如果你用的IDEA版本比较新的话,这个插件已经是自带的了,就不需要安装了。如果还没安装的话,就手工安装一下,然后继续下面

使用java的File.getParent()函数获取文件的父路径使用java的File.getParent()函数获取文件的父路径Jul 24, 2023 pm 01:40 PM

使用java的File.getParent()函数获取文件的父路径在Java编程中,我们经常需要操作文件和文件夹。有时候,我们需要获取一个文件的父路径,也就是该文件所在文件夹的路径。Java的File类提供了getParent()方法用于获取文件或文件夹的父路径。File类是Java对文件和文件夹的抽象表示,它提供了一系列操作文件和文件夹的方法。其中,get

java8的stream怎么取maxjava8的stream怎么取maxMay 14, 2023 pm 03:43 PM

java8的stream取maxpublicstaticvoidmain(String[]args){Listlist=Arrays.asList(1,2,3,4,5,6);Integermax=list.stream().max((a,b)->{if(a>b){return1;}elsereturn-1;}).get();System.out.println(max);}注意点:这里判断大小是通过正负数和0值。而不是直接写成if(a>b){returna;}elseretur

使用java的File.mkdirs()函数创建多级目录使用java的File.mkdirs()函数创建多级目录Jul 24, 2023 am 11:04 AM

使用Java的File.mkdirs()函数创建多级目录在Java中,我们经常需要创建文件夹来存储和组织文件。而有时候,我们需要创建多级目录,也就是包含子文件夹的文件夹。Java提供了File类的mkdirs()函数来实现这个功能。File类是Java中处理文件和目录的类,它提供了一系列操作文件和目录的方法。其中,mkdirs()函数是创建多级目录的函数。下

WebView File域同源策略绕过漏洞实例分析WebView File域同源策略绕过漏洞实例分析May 15, 2023 am 08:22 AM

基本知识Android架构Kernel内核层漏洞危害极大,通用性强驱动由于多而杂,也可能存在不少漏洞Libaries系统运行库层系统中间件形式提供的运行库包括libc、WebKit、SQLite等等AndroidRunTimeDalvik虚拟机和内核库FrameWork应用框架层提供一系列的服务和API的接口活动管理器内容提供器视图资源管理器通知管理器Application应用层系统应用主屏幕Home、联系人Contact、电话Phone、浏览器Browser其他应用开发者使用应用程序框架层的A

OPEN是什么币?OPEN是什么币?Feb 21, 2024 pm 04:31 PM

OPEN是什么币?OPEN是一种采用区块链技术的加密数字货币,旨在为开放式金融网络提供支持和服务。OPEN这个名字不仅代表着其开放性和透明性,也在区块链行业中备受瞩目。OPEN的特点OPEN利用区块链技术实现了去中心化,没有中心化的机构或个人控制其发行和交易。任何人都可以自由参与OPEN的交易和开发。OPEN的交易记录被公开记录在区块链上,这种透明性使得任何人都可以查看和验证交易的真实性,从而提高了交易的安全性和可信度。OPEN采用了先进的区块链技术,确保了交易的快速确认。此外,OPEN的交易费

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools