Hoi,
Ik heb het volgende probleem. Mijn DS207+ is opgedeeld in twee folders:
1- warez --> mijn bestanden
2- web --> apache webdir
Nu wil ik vanaf mijn website, in de web-dir, bestanden vanuit mijn warez uitlezen. Daarom ben ik me gaan verdiepen in de alias_module van httpd.conf.
Hiervoor heb ik het volgende ingesteld in httpd.conf_user & httpd.conf_sys en vervolgens de apache-server herstart met:
/usr/syno/etc.defaults/rc.d/S97apache-user.sh restart
hier volgt de httpd.conf_user code:
<IfModule alias_module>
#
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar
#
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
Alias /warez /volume1/warez/
#
# If you include a trailing / on /webpath then the server will
# require it to be present in the URL. You will also likely
# need to provide a <Directory> section to allow access to
# the filesystem path.
#
# ScriptAlias: This controls which directories contain server scripts.
# ScriptAliases are essentially the same as Aliases, except that
# documents in the target directory are treated as applications and
# run by the server when requested rather than as documents sent to the
# client. The same rules about trailing "/" apply to ScriptAlias
# directives as to Alias.
#
#ScriptAlias /cgi-bin/ "/usr/syno/apache/cgi-bin/"
#
# Synology Web File Manager
# For UTF-8 filename download issue on Safari, we embedded UTF-8 filename on URL.
# All URL prefixed "/webfm/cgi/download" should be redirect to CGI of web file manager's download.
#
AliasMatch ^/webfm/cgi/download/(.*)/.+ "/usr/syno/synoman/webfm/cgi/$1"
</IfModule>
Echter als ik nu op mijn website de directory /warez/ wil openen, dmv:
$path = "/warez/";
$dir_handle = @opendir($path) or die("Unable to open $path");
while ($file = readdir($dir_handle))
{
echo "<font class="bodytext">$file<br>";
}
Geeft ie aan dat hij het path niet kan vinden.
Wie kan mij hier bij helpen?
Of heeft een andere oplossing om bestanden buiten de apache web-dir te kunnen benaderen?
BVD!