视频网站的一些布置细节

来源:互联网 发布:福建广电网络继续教育 编辑:程序博客网 时间:2024/05/01 20:20


1. 安装软件,配置环境。

   php要安装mysql扩展支持。要安装GD Library, 使用yum install php-gd.
   
   pure-ftp要创建virtual user, 给予最小权限。 当登陆成功后,获取文件列表失败(操作超时)的时候,要考虑服务器防火墙的因素。

 

   Enable URL rewrite: 修改httpd.conf
  
   we may enable htaccess files by editing our httpd.conf rewmoving the comment on line from

    ;LoadModule rewrite_module modules/mod_rewrite.so
   
    to
   
    LoadModule rewrite_module modules/mod_rewrite.so
   
    we need to change the AllowOverride directive also from
   
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Satisfy all
    </Directory>
   
    to
   
    <Directory />
    Options FollowSymLinks
    AllowOverride All
    Order deny,allow
    Deny from all
    Satisfy all
    </Directory>

   
2. 上传文件。 除了.htaccess文件需用ASCII类型上传,其余文件都是默认(即Binary, 尤其是图片和flash播放器文件,字体文件)

3. 在观看视频的页面新加一项功能 lightoff。

原创粉丝点击