Require once / Include in Laravel

2

I am trying to include a file in a page on a site made in Laravel. The file and the page are on different servers. How can I do this?

I tried with include and gave the following error: include(): http:// wrapper is disabled in the server configuration by allow_url_include=0

    
asked by anonymous 26.02.2016 / 14:45

1 answer

2

You should change your PHP settings in the php.ini file. Change the value of allow_url_include to 1 .

    
03.03.2016 / 17:42