Warning: main() [function.main]: open_basedir restriction in effect. File(../inc_lib/functions.general.inc.php) is not within the allowed path(s): (/www/htdocs/trenhorf/) in /www/htdocs/trenhorf/include/inc_module/mod_company/main.inc.php on line 2
Warning: main(inc_lib/functions.general.inc.php) [function.main]: failed to create stream: Operation not permitted in /www/htdocs/trenhorf/include/inc_module/mod_company/main.inc.php on line 2
Fatal error: main() [function.main]: Failed opening required 'inc_lib/functions.general.inc.php' (include_path='.:..') in /www/htdocs/trenhorf/include/inc_module/mod_company/main.inc.php on line 2
Warning: main() [function.main]: open_basedir restriction in effect. File(../inc_lib/functions.general.inc.php) is not within the allowed path(s): (/www/htdocs/trenhorf/) in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 2
Warning: main(inc_lib/functions.general.inc.php) [function.main]: failed to create stream: Operation not permitted in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 2
Warning: main() [function.main]: Failed opening 'inc_lib/functions.general.inc.php' for inclusion (include_path='.:..') in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 2
Warning: main() [function.main]: open_basedir restriction in effect. File(../inc_tmpl/gt.menu.tmpl.php) is not within the allowed path(s): (/www/htdocs/trenhorf/) in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 5
Warning: main(inc_tmpl/gt.menu.tmpl.php) [function.main]: failed to create stream: Operation not permitted in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 5
Warning: main() [function.main]: Failed opening 'inc_tmpl/gt.menu.tmpl.php' for inclusion (include_path='.:..') in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 5
Warning: main() [function.main]: open_basedir restriction in effect. File(../inc_tmpl/gt.index.tmpl.php) is not within the allowed path(s): (/www/htdocs/trenhorf/) in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 70
Warning: main(inc_tmpl/gt.index.tmpl.php) [function.main]: failed to create stream: Operation not permitted in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 70
Warning: main() [function.main]: Failed opening 'inc_tmpl/gt.index.tmpl.php' for inclusion (include_path='.:..') in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 70
Warning: main() [function.main]: open_basedir restriction in effect. File(../inc_tmpl/gt.footer.tmpl.php) is not within the allowed path(s): (/www/htdocs/trenhorf/) in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 74
Warning: main(inc_tmpl/gt.footer.tmpl.php) [function.main]: failed to create stream: Operation not permitted in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 74
Warning: main() [function.main]: Failed opening 'inc_tmpl/gt.footer.tmpl.php' for inclusion (include_path='.:..') in /www/htdocs/trenhorf/include/inc_module/mod_graphical_text/main.inc.php on line 74
and this has no ".." in it. The line says: Go from this point, where you are to the folder "inc_lib" and include the file "functions.general.inc.php".
If you are not able to change your php settings, search vor all include/require lines in both MODs and replace the paths with the full paths that go with your server, so:
case "modules": //Modules
switch($p) {
case 1: // Company MOD
include_once "./include/inc_module/mod_company/main.inc.php";
break;
case 2: // Graphical Text MOD
include_once "./include/inc_module/mod_graphical_text/main.inc.php";
break;
default: echo '';
break;
}
break;
..... 10 lines of code .....
case "modules": //Modules
switch($p) {
case 1: // Company MOD
include_once "./include/inc_module/mod_company/main.inc.php";
break;
case 2: // Graphical Text MOD
include_once "./include/inc_module/mod_graphical_text/main.inc.php";
break;
default: echo '';
break;
}
break;
..... 10 lines of code .....
Mhm... I will have to check that. But this will need time, I am sorry, because at the moment I am at work and later I have other important things to do... but I will check it!
Okay, from what I can see here, this is not an interaction problem between the graphical text and the GT MOD. If you paste the location of the broken image into your browser, your will see that it is not displayed because it contains errors.
So I think this should be a server/PHP configuration problem. Perhaps we can do some debugging tests together on your server when you're back online.