simoslav Posted November 6, 2006 Share Posted November 6, 2006 hiplz someone help, when inserting the tpl file into the php file i got these errors :Warning: main() [function.main]: URL file-access is disabled in the server configuration in /hsphere/local/home/simoslav/domain.com/templates/default/index.php on line 59Warning: main(http://www.domain.com/raback/templates/basic/right_side.tpl) [function.main]: failed to open stream: no suitable wrapper could be found in /hsphere/local/home/simoslav/domain.com/templates/default/index.php on line 59Warning: main() [function.main]: URL file-access is disabled in the server configuration in /hsphere/local/home/simoslav/domain.com/templates/default/index.php on line 59Warning: main(http://www.domain.com/raback/templates/basic/right_side.tpl) [function.main]: failed to open stream: no suitable wrapper could be found in /hsphere/local/home/simoslav/domain.com/templates/default/index.php on line 59the code at the line 59 is : <?php include ('http://www.domain.com/raback/templates/basic/right_side.tpl'); ?> Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/ Share on other sites More sharing options...
trq Posted November 6, 2006 Share Posted November 6, 2006 Use a relative path not a url. Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120384 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 i tried it, the same errors Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120385 Share on other sites More sharing options...
Orio Posted November 6, 2006 Share Posted November 6, 2006 The errors explain themselves- your server settings dont allow you to include file's using a full URL- you cant include a file outside your site. If you have access to your php.ini, you can change the php.ini or use-ini_set("allow_url_fopen",1)Orio. Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120386 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 ini_set("allow_url_fopen",1) where plz :-[ Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120389 Share on other sites More sharing options...
Orio Posted November 6, 2006 Share Posted November 6, 2006 In your script, before the include or at the top.Orio. Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120391 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 nothing :( Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120396 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 now im getting this error :Warning: main(/../../raback/templates/basic/right_side.tpl) [function.main]: failed to open stream: No such file or directory in /hsphere/local/home/simoslav/domain.com/templates/default/index.php on line 60Warning: main(/../../raback/templates/basic/right_side.tpl) [function.main]: failed to open stream: No such file or directory in /hsphere/local/home/simoslav/domain.com/templates/default/index.php on line 60Warning: main() [function.include]: Failed opening '/../../raback/templates/basic/right_side.tpl' for inclusion (include_path='.:/hsphere/shared/apache/php/lib/php') in /hsphere/local/home/simoslav/domain.com/templates/default/index.php on line 60 Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120402 Share on other sites More sharing options...
Orio Posted November 6, 2006 Share Posted November 6, 2006 Did you even read the errors? It says:[b]No such file or directory in...[/b]Orio. Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120407 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 incorrect path ? Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120408 Share on other sites More sharing options...
Orio Posted November 6, 2006 Share Posted November 6, 2006 The path you gave leads to nothing- are you sure this file exists in the given path?Orio. Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120410 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 yes im sure Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120412 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 i have this structure :public_html: my website which is joomla public_html/raback : gallery the file which i wanna include is : raback/templates/basic/right_side.tplin : public_html/templates/default/index.phpwhat i did wrong ? Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120413 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 and the code : <?php ini_set("allow_url_fopen",1) ?> <?php include ('/raback/templates/basic/right_side.tpl'); ?> Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120415 Share on other sites More sharing options...
Orio Posted November 6, 2006 Share Posted November 6, 2006 write-[code]include("../basic/rightside.tpl");[/code]Orio. Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120417 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 the same error >:( :-[ Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120420 Share on other sites More sharing options...
Orio Posted November 6, 2006 Share Posted November 6, 2006 Did you try?include("../basic/rightside.tpl");What error did it give? the "No such file or directory" error?Orio. Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120423 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 yes :-[ Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120424 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 when i tried to access the file right_side.tpl directly with IE i got an 403 fobidden ! maybe from this is the problem ? Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120446 Share on other sites More sharing options...
simoslav Posted November 6, 2006 Author Share Posted November 6, 2006 i modified the htaccess file and now its possible to access the file but the include still not working :( Link to comment https://forums.phpfreaks.com/topic/26333-including-tpl-file-in-php-file/#findComment-120461 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.