#1
hallo
Ik gebruik de infusion pj4, maar krijg error:
Fatal error: require_once(): Failed opening required '../../includes/header_includes.php' (include_path='.:/usr/local/php74/lib/php'

in /home/barman/domains/afspraakjes.w-talk.one/public_html/infusions/pjirc_4_fusion/index.php on line 22
require_once INCLUDES."header_includes.php";
hoe kan ik dat fixen?
Posted by
Zbigniew on 29 April 2026, 22:34
#2
First, make sure that the file includes/header_includes.php actually exists on your server.
This file is part of the PHP Fusion v9 installer, and by default it is an empty file. It’s intentionally left blank so the site owner can optionally add custom functions or includes there.
So:
✔️ The file should exist
✔️ It is normally empty
❌ If it’s missing, you will get exactly this error
How to fix it
Go to your server and check if this file exists:
/includes/header_includes.php
If it does not exist, simply create it manually:
Create a new file named header_includes.php
Place it inside the /includes/ directory
Leave it empty (or just add
Code
)