Тема: Проблема с видео
всем привет!
У меня проблема с видео, а проблема заключается в том что я хочу разместить на своем сервере видео фильмы, чтоб народ мог смотреть видео не скачивая его, а пряма с сайта, нашел я скрипт, для воспроизведение видео, установил его на сайт, но не у кого он не показывает пишет что грузится и и все. А у меня на компьютере, который не посредственно подключен к серверу загружает видео и показывает, вопрос как мне сделать, чтоб у других тоже показывал видео? И еще один вопрос, у меня cам апач находится на диски C:\apache, а видео файлы находятся на других жестких дисках, как мне сделать так чтоб можно было на прямую смотреть с этих дисков, как мне прописать путь кним?
Вот это код проигрователя мултимедия
<object id="WMPlay" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">
codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"
standby="Loading Microsoft Windows Media Player components..."
type="application/x-oleobject" height="280" width="400">
<param name="URL" value="I:/video1/films/Aeromar.avi"/
<param name="AllowChangeDisplaySize" value="False"/>
<param name="ShowControls" value="1"/>
<param name="ShowDisplay" value="1"/>
<param name="ShowStatusBar" value="1"/>
<param name="AutoStart" value="TRUE"/>
<param name="InvokeURLS" value="False"/>
<embed name="WMplay" type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"
srс="I:/video1/films/Aeromar.avi" autostart="True" height="280" width="400"/>
А этот код изменен в <ifModule alias_module> Apache
<IfModule alias_module>
Alias video1/ "I:/video1/films/"
Alias video2/ "O:/video2/films/"
Alias video3/ "J:/video3/films/"
#
# 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://localhost/bar
#
# Alias: Maps web paths into filesystem paths and is used to
# access content that does not live under the DocumentRoot.
# Example:
# Alias /webpath /full/filesystem/path
#
# 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/ "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/cgi-bin/"
</IfModule>