码迷,mamicode.com
首页 > 其他好文 > 详细

【铜】第174-9篇 一对一视频录制(九)一对多学生端删除白板及nginx下配CI

时间:2017-07-04 23:21:36      阅读:288      评论:0      收藏:0      [点我收藏+]

标签:nginx下配ci   一对多学生端删除白板   webm文件在手机端播放   


关键词:webm文件在手机端播放, 一对多学生端删除白板, nginx下配CI

一、一对一视频录制

1.1.webm文件在手机端播放

1PC

a.)用谷歌浏览器播放

http://123.57.206.36:8014/uploads/177013288141499069939723.webm

技术分享                            

2)手机端播放

二、一对多

2.1 网址

1备份上

老师端:https://123.57.206.36:9101/demos/index.html?roomid=888&teaNameMobile=王才子&classname=高中物理

学生端一:

https://123.57.206.36:9101/demos/student.html?stuNameMobile=张三丰&t=600#888

学生端二:

https://123.57.206.36:9101/demos/student.html?stuNameMobile=白子画&t=600#888

学生端三:

https://123.57.206.36:9101/demos/student.html?stuNameMobile=梅长苏&t=600#888

2本地

老师端:https://localhost:9101/demos/index.html?roomid=888&teaNameMobile=王才子&classname=高中物理

学生端一:

https://localhost:9101/demos/student.html?stuNameMobile=张三丰&t=600#888

学生端二:

https://localhost:9101/demos/student.html?stuNameMobile=白子画&t=600#888

学生端三:

https://localhost:9101/demos/student.html?stuNameMobile=梅长苏&t=600#888

2.2 学生端删除白板

  先研究下一对一的,看怎么实现的。

老师端:https://localhost:9006/demos/index.html?roomid=888

学生端:https://localhost:9006/demos/student.html#888

1代码如下:

      <!----------------缩略图-->

       <div id="picWrap">

           <div>

                <spanclass="img_div" id="btn-getDataURL1">

                  <p><imgsrc="/static/img/icon1.png" /></p>

                  新建白板

                </span>

                <span> <img name="thumbnail"

class="tea_base64 "/> <imgclass="del_page_div"src="/static/img/close.png"/><span

class="page_index_div">1</span></span>

           </div>

       </div>

注:这里面有一个图片/static/img/icon1.png

三、一对一稳定性

3.1 手机上播放

  手机上播放时,应该对其的宽高进行限制如下:

技术分享

四、network

4.1session里拿数据,提交用户需求

1开头的登陆验证如下:----user_need_v.php

<scripttype="text/javascript">

    checkLogFlag= "<?php session_start();if(!isset($_SESSION[‘email‘]))

$_SESSION[‘email‘]=404;echo$_SESSION[‘email‘];?>" ;

         if(checkLogFlag==404){

        console.log(‘checkLogFlag: ‘,checkLogFlag);

          }else{

      console.log(‘checkLogFlag: ‘,checkLogFlag);

          }

</script>

4.2 nginx下配CI

http://www.jianshu.com/p/3852c8975bd8

可以了,需要配置两个地方,一是:

nginx.conf如下:

技术分享

二是:enable-php.conf如下:

技术分享

注:try_files $uri /web/index.php之间没等号“=”

4.3 mysql问题

报错:1130-host ... is not allowed to connect to this MySql server

技术分享

输入以下几句后,错误提示改变:

mysql> CREATEUSER ‘monty‘@‘localhost‘ IDENTIFIED BY ‘some_pass‘;

mysql> GRANT ALLPRIVILEGES ON *.* TO ‘monty‘@‘localhost‘

    ->    WITH GRANT OPTION;

mysql> CREATEUSER ‘monty‘@‘%‘ IDENTIFIED BY ‘some_pass‘;

mysql> GRANT ALLPRIVILEGES ON *.* TO ‘monty‘@‘%‘

    ->    WITH GRANT OPTION;

运行之后,报错不再是1130,如下:

#1045 - Access denied for user ‘root‘@’111.196.207.140’(using password: YES)

技术分享

解决,参考如下:

http://blog.csdn.net/z449077880/article/details/50177925

 

grant all privileges on *.* to‘root‘@‘localhost‘ identified by ‘aaaa1111‘ with grant option;

这一条运行之后,不可以。又运行了如下一条就可以了。

grant all privileges on *.* to ‘root‘@‘111.196.207.140‘identified by ‘aaaa1111‘ with grant option;

技术分享

可以了,如下:

技术分享

2017623-28日星期五-

620100字一篇 6铜牌

【铜】第174-9篇 一对一视频录制(九)一对多学生端删除白板及nginx下配CI

标签:nginx下配ci   一对多学生端删除白板   webm文件在手机端播放   

原文地址:http://phperqhz.blog.51cto.com/10228313/1944539

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!