include_once error : failed to open stream in Boonex Dolphin v7.0.9
Posted
by
Guillaume Pierre
on Stack Overflow
See other posts from Stack Overflow
or by Guillaume Pierre
Published on 2013-10-30T09:50:37Z
Indexed on
2013/10/30
9:53 UTC
Read the original article
Hit count: 391
first let me say I'm a beginner in PHP, specifically PHP Object-oriented programming.
I'm working on a V7.0.9 dolphin version.http://www.boonex.com/dolphin
While I'm trying to include a class.php from a 3rd-part developer I work with
<?php
include_once ('modules/developer/configure/classes/class.php');
I get this error :
Warning: include_once(modules/developer/configure/classes/ClassExample.php): failed to open stream: No such file or directory in /var/www/vhosts/mysite.com/httpdocs/dolphin/inc/classes/BxDolPageView.php(612) : eval()'d code on line 2 Warning: include_once(): Failed opening 'modules/developer/configure/classes/ClassExample.php' for inclusion (include_path='.:') in /var/www/vhosts/mysite.com/httpdocs/dolphin/inc/classes/BxDolPageView.php(612) : eval()'d code on line 2 Fatal error: Class 'ClassExample' not found in /var/www/vhosts/mysite.com/httpdocs/dolphin/inc/classes/BxDolPageView.php(612) : eval()'d code on line 6
I'm trying to figure out where is the problem... does it comes from Boonex? or is it linked to my server configuration? I really don't know where to begin to resolve...
Thx in advance for your kind help if you get knowledge on it
© Stack Overflow or respective owner