teamviewer 正在初始化显示参数的解决办法

在你用win远程桌面安装tw后,启动的tw里面因为你这是在一个远程里面开启的tw,

如果tw启用了多用户的方式,那么在你win控制台的那个tw的id和你在远程桌面里面看到id是不一样的,所以,打开tw的目录,找到一个log文件,
比如 TeamViewer12_Logfile.log,找找里面的 ID: 开头的

ID:  XXXXXXXX ,

那个可能和你原来看到的只相差一点点,试试用这个ID连接,你会有不一样的感受

苹果cms,maccms 关于自定义伪静态的一些二次开发

苹果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;

 

centos 6.X x86_64 安装 rpm 的mysql 5.6 下载如下包

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