Is it possible to use a server side include to access files that are outside of the server?
If not what are some other options to do this?
feedback
|
|
Use cURL to get data outside of the domain. If you want to then execute the data you receive, go ahead and
The same is true for If you wanted to grab the 'actual' contents of the file, you would want to set up a proxy of sorts on the other server. (You can't do it on your server because then it would be a security flaw in how server-side-scripting works).
That will give you the contents of any file you request:
But, if anyone else finds it, it could be dangerous. | |||
|
feedback
|
|
You can do something like file_get_contents() or fopen() to do this in php, e.g.
| |||
|
feedback
|
|
You don't mention the server software but I'll assume Apache, where SSI is provided by the mod_include module. The include element does not allow remote files. However, you have exec, which allows to execute any external tool; you can use it to call wget or any other command of your choice. However, it might not be so complicate. If you can mount the remote directory in the local system, you can create a plain symlink and use a regular include. Or, as already suggested, PHP is really simple to use. | |||
|
feedback
|
|
Yes, nginx's server side includes can use any full url eg:
| |||
|
feedback
|