-1

I have created a web chat application and whenever I enter the username and password I created it comes up with this error:

Warning: include(../errors/err.php): failed to open stream: No such file or directory in C:\Users\Win8\Documents\EasyPHP\data\localweb\web chat\chatbox\inc\connection.php on line 10

Warning: include(): Failed opening '../errors/err.php' for inclusion (include_path='.;C:\php\pear') in C:\Users\Win8\Documents\EasyPHP\data\localweb\web chat\chatbox\inc\connection.php on line 10

What does this mean?

Manfred Radlwimmer
  • 13,257
  • 13
  • 53
  • 62
LWills
  • 1
  • 1

2 Answers2

0

It is a warning that there is a missed file which cannot be opened, and it's name is err.php. Maybe you have to create an empty err.php file in C:\Users\Win8\Documents\EasyPHP\data\localweb\web chat\chatbox\errors.

MohMul15
  • 44
  • 1
  • 9
0

It's telling you that on line 10 of connection.php you are trying to do an <?php include 'err.php'; ?>, but your program cannot find it.

I would check the file structure of err.php and make the appropriate correction.

Daniel
  • 14,004
  • 16
  • 96
  • 156