欢迎来到素材无忧网,按 + 收藏我们
登录 注册 退出 找回密码

织梦Dedecms 5.7 火车头采集免登陆发布接口适配PHP7.X插件

时间: 2019-04-21 19:32 阅读: 作者:素材无忧网

 最近有粉丝说,之前用的火车头发布文章时,用免登陆接口在PHP7.0环境中显示空白,于是今天抽空更新了一下插件(话说,DedeCms早期版本无法在PHP7.X运行,用最新版的!),那么接下来的代码就是插件发布模块无须变更,只需要变更接口插件就可以了 

织梦Dedecms 5.7 火车头采集免登陆发布接口适配PHP7.X插件

<?php
/*////////////////////////////////////////////////////////////////////////
 * Created on 2019-01-15
 *火车头免登陆发布接口 For DEDECMS5.7 GBK版
 *本接口效果,不受发文限制,不需要登陆
 *本程序开发【六久阁】
 * QQ:344693787
 *火车头软件使用时,请在第三步【发布内容设置】---选择--->【WEB发布配置管理】---选择--->【DEDECMS免登陆发布】---选择--->【编码】GBK---填写--->你的DEDE网址---选择--->【不需要登陆&&HTTP请求】---选择--->【获取列表】---填写配置名--->【保存】
*/
error_reporting(0);
header("Content-type:text/html;charset=gbk");
date_default_timezone_set('Asia/Shanghai');
set_time_limit (60000);
setlocale(LC_ALL, 'zh_CN');
if($_GET['pw']!='token') exit("校验失败");

@include("data/common.inc.php");

 //以下内容,非专业人员请不要修改,避免错误;
 $dbhost = $cfg_dbhost;
 $dbuser = $cfg_dbuser;
 $dbpw = $cfg_dbpwd;
 $dbname = $cfg_dbname;
 $dbqz=$cfg_dbprefix;


 $conndz = @mysqli_connect($dbhost,$dbuser,$dbpw,$dbname) or die ("数据库连接出错,请检查,或者通知程序作者。");
 $conndz->set_charset('gbk');
 
if($_GET['list']=='ok'){
	?>
	<select name="list">
	<?php
		$s1 = mysqli_query($conndz,"SELECT * FROM `".$dbqz."arctype`");
	//$s1=mysql_query("SELECT * FROM `".$dbqz."arctype`");
	while($r1 = mysqli_fetch_array($s1)){
	//while($r1=mysql_fetch_array($s1)){
?>

	<option value="<?php echo $r1[id]?>"><?php echo $r1[typename]?></option>

<?php
	}
?>
</select>
<?php
}


if($_POST[title]){

$s2a=mysqli_query($conndz,"SELECT id FROM `".$dbqz."arctiny` order by id desc");
$r2a=mysqli_fetch_array($s2a);
$tid=$r2a[id]+1;

if(!get_magic_quotes_gpc()){
$title=addslashes(trim($_POST[title]));
$body=addslashes($_POST[content]);
$keywords=addslashes($_POST[keywords]);
$description=addslashes($_POST[description]);
}else{
$title=trim($_POST[title]);
$body=$_POST[content];
$keywords=$_POST[keywords];
$description=$_POST[description];
}

$time=time();
mysqli_query($conndz,"INSERT INTO `".$dbqz."archives` (`id`, `typeid`, `typeid2`, `sortrank`, `flag`, `ismake`, `channel`, `arcrank`, `click`, `money`, `title`, `shorttitle`, `color`, `writer`, `source`, `litpic`, `pubdate`, `senddate`, `mid`, `keywords`, `lastpost`, `scores`, `goodpost`, `badpost`, `voteid`, `notpost`, `description`, `filename`, `dutyadmin`, `tackid`, `mtype`, `weight`) VALUES ('$tid', '$_POST[cid]', '0', '$time', '', '0', '1', '0', '1', '0', '$title', '', '', 'admin', 'internet', '', '$time', '$time', '1', '$keywords', '0', '0', '0', '0', '', '0', '$description', '', '1', '0', '0', '0')");


mysqli_query($conndz,"INSERT INTO `".$dbqz."addonarticle` (`aid`, `typeid`, `body`, `redirecturl`, `templet`, `userip`, `goodsurl`) VALUES ('$tid', '$_POST[cid]', '$body', '', '', '127.0.0.1', '')") ;

mysqli_query($conndz,"INSERT INTO `".$dbqz."arctiny` (`id`, `typeid`, `typeid2`, `arcrank`, `channel`, `senddate`, `sortrank`, `mid`) VALUES (NULL, '$_POST[cid]', '0', '0', '1', '$time', '$time', '0');") ;


echo "发布成功";
}

?>


版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!

转载请注明: 织梦Dedecms 5.7 火车头采集免登陆发布接口适配PHP7.X插件

标签:  
相关文章
模板推荐