phillip2005
Technical User
I can usually fix computer problems myself using manuals, Google or searching forums. But for this problem I'm not sure where to look, or of the terminology to even phrase the question to get a sensible number of search results.
I've been doing an exercise in PHP that generates a web page from a script ( a table filled with links to playlists of my music ) but when I click the links the music player opens (with the relevant playlist) but the songs just cycle through the player without playing - this is what the player does if it cannot find the music files.
The songs in the playlist are listed;
#EXTINF:-1,etc,
Now I'm sure this is a security related question of some type in that Apache is stopping the delivery of the song and there's some way to authorize it. But I've looked through the list of directives and can't see anything that applies. Any ideas please.
Relevant(?) section of my httpd file is below...
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Satisfy all
</Directory>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
#<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs">
#<Directory "F:/My Documents/My Web Sites/Apache2.2/htdocs">
<Directory "D:/WebDev/Apache/htdocs">
#<Directory "D:/WebDev/localhost/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# # for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
I've been doing an exercise in PHP that generates a web page from a script ( a table filled with links to playlists of my music ) but when I click the links the music player opens (with the relevant playlist) but the songs just cycle through the player without playing - this is what the player does if it cannot find the music files.
The songs in the playlist are listed;
#EXTINF:-1,etc,
Now I'm sure this is a security related question of some type in that Apache is stopping the delivery of the song and there's some way to authorize it. But I've looked through the list of directives and can't see anything that applies. Any ideas please.
Relevant(?) section of my httpd file is below...
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Satisfy all
</Directory>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
#<Directory "C:/Program Files/Apache Software Foundation/Apache2.2/htdocs">
#<Directory "F:/My Documents/My Web Sites/Apache2.2/htdocs">
<Directory "D:/WebDev/Apache/htdocs">
#<Directory "D:/WebDev/localhost/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# # for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>