0
votes

So ever since I got my Mac including files with PHP

Warning: include(Applications/XAMPP/xamppfiles/htdocs/social/include/core.php): failed to open stream: No such file or directory in /Applications/XAMPP/xamppfiles/htdocs/social/index.php on line 1

This is my php include:

<?php include("Applications/XAMPP/xamppfiles/htdocs/social/include/core.php") ?>

Any suggestions?

1
can you please add your php code, where you include the ..../core.php?swidmann
<?php include("Applications/XAMPP/xamppfiles/htdocs/social/include/core.php") ?>C.Pantelli

1 Answers

1
votes

You simply forgot the starting slash /, so your code tries to include the file relative to your script.

You can try this include:

include("/Applications/XAMPP/xamppfiles/htdocs/social/include/core.php")

What also can be helpful, is using __DIR__ or the dirname() function.