Fatal Error: require_once()
-
Currently there is a require_once() throwing a Fatal Error, because the file does not exist within the plugin.
Line 163 in
private-website-intranet/public/class-private-website-intranet-public.php
Currently reads:
require_once dirname( __FILE__ ) . '/partials/private-website-intranet-public-login-form.php';
Should probably be:
include_once( plugin_dir_path( __FILE__ ) . 'partials/private-website-intranet-public-login-form.php' );
, but then the fileprivate-website-intranet-public-login-form.php
is still missing from the plugin.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Fatal Error: require_once()’ is closed to new replies.