destoon的php5.4之后,title中文问题

destoon在php 5.4更高版本之后,会出现标题中文会自动为空的情况

解决方法是搜索,

function dhtmlspecialchars

修改这个函数为如下

参考地址 http://blog.sina.com.cn/s/blog_409bd3ad0102vgxl.html

function dhtmlspecialchars($string) { 
        $encoding = 'utf-8'; 
        if(DT_CHARSET=='gbk') 
        { $encoding = 'gb2312'; } 
        if(is_array($string)) { 
                return array_map('dhtmlspecialchars', $string);
} else { if(defined('DT_ADMIN')) { return str_replace(array('&'), array('&'), htmlspecialchars($string, ENT_QUOTES,$encoding));
} else { return str_replace(array('&', '"', '"', '"'), array('&', '', '', ''), htmlspecialchars($string, ENT_QUOTES,$encoding)); } } }

phpcmsphpsso在https情况下的改动(phpcms)

phpcms的phpsso,在https情况下,代码file_get_contents(“https://…….”);出现错误
 file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed ,

在phpcms的phpsso_server/phpcms/modules/admin/applications.php 的check_status函数里面

需要修改为

$arrContextOptions=array(
     "ssl"=>array(
         "verify_peer"=>false,
         "verify_peer_name"=>false,
     ),
 );    
      if ($data =  file_get_contents($url.'code='.urlencode($param),false,stream_context_create($arrContextOptions))) {

dedecms织梦的arclist标签的二次开发,增加参数

首先官网的开发文档

http://help.dedecms.com/manual/tagmanual/DedeTagmanual_Finnal/arclist.htm

我们增加 mydata参数
形式如下

 {dede:arclist row=14 titlelen=32  mydata="params"}

修改文件 \include\taglib\arclist.lib.php

1)增加参数获取 在 function lib_arclist( &$ctag, &$refObj ) 函数里面

$mydata = $ctag->GetAtt(‘mydata’);

2)传递参数到 函数 lib_arclistDone

return lib_arclistDone
           (
             $refObj, $ctag, $typeid, $ctag->GetAtt('row'), $ctag->GetAtt('col'), $titlelen, $infolen,
             $ctag->GetAtt('imgwidth'), $ctag->GetAtt('imgheight'), $listtype, $orderby,
             $ctag->GetAtt('keyword'), $innertext, $envs['aid'], $ctag->GetAtt('idlist'), $channelid,
             $ctag->GetAtt('limit'), $flag,$ctag->GetAtt('orderway'), $ctag->GetAtt('subday'), $ctag->GetAtt('noflag'),
             $tagid,$pagesize,$isweight,$mydata
           );
}

3) 函数 lib_arclistDone定义处增加 mydata

function lib_arclistDone(&$refObj, &$ctag, $typeid=0, $row=10, $col=1, $titlelen=30, $infolen=160,
        $imgwidth=120, $imgheight=90, $listtype='all', $orderby='default', $keyword='',
        $innertext='', $arcid=0, $idlist='', $channelid=0, $limit='', $att='', $order='desc', $subday=0, $noflag='',$tagid='', $pagesize=0, $isweight='N',$mydata='')

4) 在 函数 lib_arclistDone 里面为所欲为吧

  $mydata = AttDef($mydata,'默认参数');
  if($mydata == '默认参数')
  {
   //您的需求实现代码
  }

discuz 更换服务器注意事项

  1. data 目录权限
  2. uc_server/data/config.inc.php 里面的参数
  3. 调试过程,首先调通uc_server  , 可以通过采用

define(‘UC_FOUNDERPW’, ‘9b9738685d85bd3aa1c09d624e44324f’);
define(‘UC_FOUNDERSALT’, ‘733905’); 

密码是 123456789

方法是 md5(md5(“123456789″).”733905”);

如果uc_server登陆不上去,看看 /uc_server/model 中找到admin.php

function adminbase() { 里面 

$this->cookie_status = 0;

修改为

$this->cookie_status = isset($_COOKIE['sid']) ? 1 : 0;

调通uc_server 后,修改论坛的管理员密码,然后试试登陆 论坛admin.php

 

 

 

帝国cms重置密码的一个方法,程序员适用

e/class/adminfun.php 里面 function login

找到

$ch_password=DoEmpireCMSAdminPassword($password,$user_r[‘salt’],$user_r[‘salt2’]);

在这下面加 var_dump($ch_password);die();

然后前台直接写登录名,如果你没忘记的话,(如果忘记了,请到 phome_enewsuser 表里面查。)

密码的话,你就随便写一个你想设置的密码吧,然后提交

提交的结果是直接显示出来一个32位的字符串,把这个字符串更新到 phome_enewsuser 的password 字段吧

update phome_enewsuser set `password`=’这里刚才的那个字符串’ where username = ‘你的用户名’ ;

弄好后,把刚才的代码删掉 var_dump($ch_password);die(); 恢复原状。哈哈哈

然后就可以用你的新密码登录了。

在windows 2003 64位系统php运行报错:1%不是有效的win32应用程序解决

在windows 2003 64位系统php运行报错:1%不是有效的win32应用程序解决

问题一:php运行报错:1% 不是有效的 win32 应用程序
cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 1

问题二: 网页报错:Service Unavailable
经过上面的操作后,以为大功告成了,其实不然。访问网站竟然又报错:Service Unavailable。
解决方法如下:
1)进入命令提示符:开始->运行 cmd
2)执行脚本:
%SYSTEMROOT%\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i
说明:%SYSTEMROOT%\表示系统目录,一般是“C:\WINDOWS\”;v1.1.4322是默认.net版本,你也可以改为“v2.0.50727”等其他版本,关键是不要写错路径名,否则执行不成功。

thinkphp的nginx配置pathinfo模式,适用3.2 5.0

tp-nginx-config

server
{
# 适用于 thinkphp 3.2 thinkphp 5.0
# pathinfo 模式
# 模块/控制器/方法/参数
# 3.2 使用方法 /home/index/index/params
# 5.0 使用方法 /index/index/index/params
listen 80;
server_name tp;#mod this line
index index.php index.html;
root /tpdir; #mod this line

location / {
index index.php index.htm;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
}
location ~ \.php {
fastcgi_pass 127.0.0.1:9000; #mod this line
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
if ($fastcgi_script_name ~ “^(.+?\.php)(/.+)$”) {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param PATH_INFO $path_info;
}

}

dedecms 获取分页后的页面地址 arcurl2

{dede:field name=’arcurl’ /} 只能获得当前地址的,但是分页获取不到

{dede:field name=’arcurl2′ /} 我设置修改  include\arc.archives.class.php

$this->Fields[‘arcurl2’] = substr($this->Fields[‘arcurl’],0,-5) . “_” . $i . substr($this->Fields[‘arcurl’],-5) ;

 

微信开放平台,全网发布的问题,微擎程序错误

全网发布测试出现 ,

返回Api文本消息 【失败】

返回普通文本消息 【失败】

测试地址 http://微擎web地址/api.php

 

如下图

经过修改api.php 加入调试语句 ,一般是

error_log(__LINE__ . PHP_EOL , 3, “zjpro.txt”);

或者

error_log(print_r($_GET,true) . PHP_EOL , 3, “zjpro.txt”);

调试出来一些GET参数后,就可以直接对api.php加参数测试了

测试地址 http://微擎web地址/api.php?appid=/xxxxx&……………………………………

然后调试api.php 得到正确的结果。

可能是 微擎的web 和 app 目录里面的common 目录的问题!

因为 load()->app(‘common’); 这行出错了。

经过 var_dump(load()) ; 发现 app 目录下不存在 common 目录,但是在web下存在。复制到app下解决。

 

php 的按位计算的一点备用

话说php的预定义变量 (只考虑 PHP7情况吧)

E_ALL  是  30719 (111011111111111) 15个错误提示位,

E_STRICT 是 000100000000000 用于补第4位的错误提示

E_NOTICE 是 8 (000000000001000)

E_ALL | E_STRICT ^ E_NOTICE 可以表示为

1 1 1 1 1 1 1 1 1 1 1 1 1 1 1     E_ALL | E_STRICT
0 0 0 0 0 0 0 0 0 0 0 1 0 0 0     E_NOTICE

结果是 111111111110111

E_ALL | E_STRICT & ~E_NOTICE 可以表示为

1 1 1 1 1 1 1 1 1 1 1 1 1 1 1  E_ALL | E_STRICT
1 1 1 1 1 1 1 1 1 1 1 0 1 1 1  ~E_NOTICE

结果是  111111111110111

从而可以理解为什么 有两种写法

error_reporting(E_ALL | E_STRICT ^ E_NOTICE);

error_reporting(E_ALL | E_STRICT & ~E_NOTICE);

 

 

 

destoon 在后台添加资讯,当文章存在多图,从远程下载会导致的图片和远程图片不一致的现象

故障介绍:

在destoon的后台添加资讯,选择 下载远程图片,当你的文章中含有比较多的图片,下载的图片可能和远程图片不一致的情况,是因为include\post.func.php 里面函数 save_remote 的一个“试图随机”取名,因为取值范围较窄导致重复。

$filename = timetodate($DT_TIME, ‘His’).mt_rand(10, 99).$_userid.’.’.$file_ext;

可以看出 mt_rand的取值范围只有90个,容易重复,可以考虑用更随机的函数代替

当然比较简单的就是加大随机范围 mt_rand(1000,99999);

或者手动写一个随机函数,这类函数很多了,就无需再重复。

dedecms 的keyword相关性改善

dedecms的相关文章的函数 lib_likearticle 里面是根据  keyword1 or keyword2 or … 这样的规律用一个sql解决的,并且用 order by id desc 来排序,可能导致第一个关键字的文章不在前面,下面的补丁就是解决这个问题。

思路是: 先根据第一个关键字搜索结果后,显示出来,如果数量不够 $row 指定的,那么就用关键字2继续查找,依次类推,直到搜索到 $row 数量。

修改的文件是 include\taglib\likearticle.lib.php 下面的连接是txt格式,请自行修改后缀为 .php

likearticle.lib

补丁文件

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

 

dedecms 关键字链接 以长的为先,短的不做连接

dedecms后台设置关键字,文章里面会根据关键字自动增加连接

现在根据关键字的rank倒排序,建议比较长的排在前面,比如

你好样的  比 你好 有更大的rank,因为dedecms是根据rank做了倒排序的替换关键字,

如果希望不出现嵌套的连接,那么就需要做一些代码的变化 include\arc.archives.class.php

代码增加了行  1260-1269

// zjpro add 2017-08-22 QQ 733905
foreach($GLOBALS[‘replaced’] as $kk=>$vv)
{
if(strpos($kk, $word) !== FALSE)
{
$GLOBALS[‘replaced’][$word] = 1;
break;
}
}
// end zjpro QQ 733905