Changeset 2639386
- Timestamp:
- 12/04/2021 05:43:17 AM (4 years ago)
- Location:
- wxsync/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wxsync.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wxsync/trunk/readme.txt
r2634134 r2639386 1 === WxSync-标准云微信公众号文章免费采集-任意公众号自动采集5元/月-历史文章导出30元/公众号 ===2 Contributors: cnfang ,_ver_1-0-0_Always_Bee1 === WxSync-标准云微信公众号文章免费采集-任意公众号自动采集5元/月-历史文章导出30元/公众号 === 2 Contributors: cnfang 3 3 Donate link: http://std.cloud 4 4 Tags: 微信公众号,免费,公众号文章采集,数据采集,微信公众号采集 5 5 Requires at least: 3.3 6 6 Tested up to: 5.2.2 7 Stable tag:2.7.1 27 Stable tag:2.7.13 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 14 14 15 15 微信公众号文章,任意公众号自动采集5元/月,手动采集服务永久免费,付费地址是:http://std.cloud,插件设置面板将自动提示最新版本,会自动请求第三方服务器地址:http://std.cloud/web/ver 16 本插件1.0.0版部分代码思路参考了BeePress(GPLv2)插件,之后的版本应AlwaysBee的要求,已移除代码。17 16 18 17 == Installation == -
wxsync/trunk/wxsync.php
r2634134 r2639386 4 4 Plugin URI: http://std.cloud 5 5 Description: 标准云微信公众号文章免费采集、<strong>任意公众号自动采集5元/月</strong>、<strong>历史文章导出30元/公众号</strong> 6 Version: 2.7.1 26 Version: 2.7.13 7 7 Author: 标准云(std.cloud) 8 8 Author URI: http://std.cloud 9 9 License: GPL 10 本插件1.0.0版部分代码思路参考了BeePress(GPLv2)插件,之后的版本应AlwaysBee的要求,已移除代码。 10 11 11 */ 12 12 if ( ! defined( 'ABSPATH' ) ) exit; … … 24 24 $GLOBALS['wxsync_tab'] = ''; 25 25 $GLOBALS['wxsync_error'] = array(); 26 $GLOBALS['wxsync_ver'] = '2.7.1 2';26 $GLOBALS['wxsync_ver'] = '2.7.13'; 27 27 $GLOBALS['wxsync_code'] = 0; 28 28 … … 125 125 } 126 126 global $wpdb,$table_prefix; 127 $find = $wpdb->get_var("SHOW TABLES LIKE '{$table_prefix}wxsync_config'"); 128 if (empty($find)) { 129 $sql = "CREATE TABLE `{$table_prefix}wxsync_config` ( 130 `id` int(10) unsigned NOT NULL AUTO_INCREMENT, 131 `token` varchar(255) NOT NULL, 132 `enable` int(11) NOT NULL DEFAULT '1', 133 PRIMARY KEY (`id`) 134 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;"; 135 echo "<h3>当前配置表不存在,请在数据库中执行以下语句创建配置表:</h3><br /> $sql"; 136 exit; 137 } 127 138 128 139 $req['wxsync_settoken'] = esc_sql($req['wxsync_settoken']);
Note: See TracChangeset
for help on using the changeset viewer.