在你用win远程桌面安装tw后,启动的tw里面因为你这是在一个远程里面开启的tw,
如果tw启用了多用户的方式,那么在你win控制台的那个tw的id和你在远程桌面里面看到id是不一样的,所以,打开tw的目录,找到一个log文件,
比如 TeamViewer12_Logfile.log,找找里面的 ID: 开头的
ID: XXXXXXXX ,
那个可能和你原来看到的只相差一点点,试试用这个ID连接,你会有不一样的感受
在你用win远程桌面安装tw后,启动的tw里面因为你这是在一个远程里面开启的tw,
如果tw启用了多用户的方式,那么在你win控制台的那个tw的id和你在远程桌面里面看到id是不一样的,所以,打开tw的目录,找到一个log文件,
比如 TeamViewer12_Logfile.log,找找里面的 ID: 开头的
ID: XXXXXXXX ,
那个可能和你原来看到的只相差一点点,试试用这个ID连接,你会有不一样的感受
可能是cmos掉电保存设置,导致硬盘设置回归了ide,改回ahci 就可以了
AHCI (Serial ATA Advanced Host Controller Interface)
串行ATA高级主控接口/高级主机控制器接口)
苹果cms maccms 8 有关伪静态方面列表页和详情页的自定义url
列表页的是 vod-type-id-{id}-pg-{pg} 表示的是分类id的第pg页,可以考虑根据不同的分类设置为 ,比如 type-id = 1 的是 /movie/pg-{pg}.html
比如 /movie/pg-1.html
如果 type-id=2 设置为 /tv/pg-{pg}.html,比如
/tv/pg-1.html,
我们通过修改 inc/common/template.php 的AppTpl类的getLink函数 ,在
$str = $jstart . MAC_PATH . $str . $strpg . $ext. $jend;$str = $jstart . MAC_PATH . $str . $strpg . $ext. $jend;
return str_replace(array(‘//’,’/index’.$rgext),array(‘/’,’/’),$str);
修改为
$str = $jstart . MAC_PATH . $str . $strpg . $ext. $jend;$str = $jstart . MAC_PATH . $str . $strpg . $ext. $jend;
$new_str = str_replace(array(‘//’,’/index’.$rgext),array(‘/’,’/’),$str);
// 这里增加伪静态的自定义代码比如
$new_str = preg_replace(“/vod\-type\-id\-1\-/”,”movie/”,$newstr);
// 这样是 吧 vod-type-id-1-pg-1.html 修改为 movie/pg-1.html
return $newstr;
=============================================================
同时需要修改 伪静态配置文件 .htaccess 或者 nginx的rewrite文件
RewriteRule ^movie/pg-(\d+)$ index.php\?m=vod-type-id-1-pg-$1
nginx的
rewrite ^/movie/pg-(.*)$ /index.php?m=vod-type-id-1-pg-$1 break;
http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/mysql-community-server-5.6.33-2.el6.x86_64.rpm
http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/mysql-community-client-5.6.33-2.el6.x86_64.rpm
http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/mysql-community-common-5.6.33-2.el6.x86_64.rpm
http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/mysql-community-devel-5.6.33-2.el6.x86_64.rpm
http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/mysql-community-libs-5.6.33-2.el6.x86_64.rpm
http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/mysql-community-libs-compat-5.6.33-2.el6.x86_64.rpm