Home Backend Development PHP Tutorial shopex主机报错误请求解决方案(No such file or directory)_PHP

shopex主机报错误请求解决方案(No such file or directory)_PHP

Jun 01, 2016 pm 12:14 PM
open stream

一、shopex主机环境
1、windows 2003 R2
2、iis6.0+php5.0以上
3、mysql5.0以上
如果有希望了解php环境搭配的,请查阅:
windows2003下如何配置搭建iis+php+mysql环境
二、shopex主机问题描述
复制代码 代码如下:
Warning:
require(/core/include_v5/adminCore.php) [function.require]: failed to open stream:
No such file or directory in D:\wwwroot\beisoso\shopadmin\index.php on line 13
Fatal error:
require() [function.require]:
Failed opening required "/core/include_v5/adminCore.php" (include_path=".;C:\php5\pear")

三、shopex主机解决方案
给D:\和D:\wwwroot 一个everyone可读权限,只在这两个位置加权限就可以了,不要附加到下一级目录!
命令如下:
cacls d:\ /e /g everyone:r
cacls d:\wwwroot /e /g everyone:r

四、附加
如果你对这个问题有更好的解决方法,欢迎指正和讨论

因为是权限问题,所以一般情况下放到一个子目录中也可以解决。
Statement of this Website
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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to debug Java Stream operations in IntelliJ IDEA How to debug Java Stream operations in IntelliJ IDEA May 09, 2023 am 11:25 AM

Stream operation is a highlight of Java8! Although java.util.stream is very powerful, there are still many developers who rarely use it in actual work. One of the most complained reasons is that it is difficult to debug. This was indeed the case at the beginning, because streaming operations such as stream cannot be used in DEBUG When it is one line of code, when it comes to the next step, many operations are actually passed at once, so it is difficult for us to judge which line in it is the problem. Plug-in: JavaStreamDebugger If the IDEA version you are using is relatively new, this plug-in is already included and does not need to be installed. If it is not installed yet, install it manually and then continue below.

How to get max value from stream in java8 How to get max value from stream in java8 May 14, 2023 pm 03:43 PM

java8's stream takes 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);}Note: The size is determined here through positive and negative numbers and 0 values. Instead of writing it directly if(a>b){returna;}elseretur

What coin is OPEN? What coin is OPEN? Feb 21, 2024 pm 04:31 PM

What coin is OPEN? OPEN is an encrypted digital currency using blockchain technology, designed to provide support and services for open financial networks. The name OPEN not only represents its openness and transparency, but also attracts much attention in the blockchain industry. Features of OPEN OPEN uses blockchain technology to achieve decentralization, with no centralized institution or individual controlling its issuance and transactions. Anyone can freely participate in the trading and development of OPEN. OPEN's transaction records are publicly recorded on the blockchain. This transparency allows anyone to view and verify the authenticity of the transaction, thereby improving the security and credibility of the transaction. OPEN uses advanced blockchain technology to ensure rapid confirmation of transactions. In addition, OPEN’s transaction fees

How the Java Stream API makes your code better How the Java Stream API makes your code better May 14, 2023 pm 06:22 PM

Preface JavaStream is a powerful data processing tool that can help developers process and transform data streams quickly and efficiently. Using Stream operations can greatly simplify the code, making it more readable and maintainable, thereby improving development efficiency. filter(): retain elements that meet the conditions based on the specified Predicate. map(): Maps each element according to the specified Function and generates a new Stream. flatMap(): Maps each element to a Stream, and then concatenates these Streams into a Stream. distinct(): Returns a deduplicated Stream. sorted(): for Stre

What does stream mean in linux? What does stream mean in linux? Mar 17, 2023 am 09:55 AM

In Linux, stream means data flow, which is a string of data read in a certain order, so the direction of the data flow is the reading order of the data flow. The process of the Linux system importing the output results after reading the data into other files is called redirected data flow. After a command is entered and run under Linux, two results will be displayed on the screen: the result of a successful operation is the standard output, and the result of a failed operation is the standard error output; if not processed, they will be displayed on the screen and redirected through the data stream. You can save it to other files.

Is Microsoft introducing trimmed video in Microsoft Stream (on SharePoint)? Here's what the new roadmap update says Is Microsoft introducing trimmed video in Microsoft Stream (on SharePoint)? Here's what the new roadmap update says Nov 24, 2023 pm 11:13 PM

In an updated entry on the Microsoft 365 Roadmap website (Feature ID: 186956), the Redmond-based tech giant said the feature will give users editing permissions to trim the beginning, end, and any clips in a video. "When you trim a video, Stream does not change the original video file itself. Instead, it simply hides the trimmed portion from the viewer," the update reads. You can then try out this feature by launching a video in the StreamWeb app and clicking the edit button once the rollout is complete over the next few months. The roadmap update states that the rollout will begin in "March 2023." However, given that the roadmap entry was added on November 21, 2023

Analyze Stream flow instances in Java Analyze Stream flow instances in Java May 09, 2023 pm 04:10 PM

The previous article on Stream talked about a new feature of Java 8: Lambda expressions. If used proficiently in business, it can save a lot of code and look much neater. Then this article will introduce another new feature: Stream, don’t read it wrong! ! ! It’s not Steam for playing games! ! 1. What is Stream: Stream is a new concept proposed by Java8. It is not an input and output Stream (it has nothing to do with IO stream), but a tool that uses functional programming to operate on collection classes. . In short, it is an operation of processing collection data in an internal iteration method. Internal iteration can give more control to the collection class. Stream and

The Importance of PHP Stream in Web Development The Importance of PHP Stream in Web Development Mar 28, 2024 am 11:21 AM

The Importance of PHPStream in Web Development With the rapid development of the Internet, Web development has always been an area of ​​great concern. In web development, the transmission and processing of data is crucial, and in this regard, PHPStream plays a key role. PHPStream is a tool for processing input and output streams. Its powerful functions and flexibility allow developers to easily implement various data operations. This article will introduce the importance of PHPStream in web development

See all articles