点评系统 Modoer v3.6 旗舰版手机WEB端加微信公众平台接口
注意1:从 Modoer 3.5 开始,Modoer 将不再支持 PHP 5.2 版本,最低支持版本必须是 PHP 5.3 注意2:从 Modoer 3.5 开始,Modoer 将以 UTF-8 编码为主要版本,GBK 版本会计划在今年下半年停止发布(届时会提供 GBK 转 UTF-8 工具,新安装用户如果你没有整合 G
注意1:从 Modoer 3.5 开始,Modoer 将不再支持 PHP 5.2 版本,最低支持版本必须是 PHP 5.3
注意2:从 Modoer 3.5 开始,Modoer 将以 UTF-8 编码为主要版本,GBK 版本会计划在今年下半年停止发布(届时会提供 GBK 转 UTF-8 工具,新安装用户如果你没有整合 GBK 版本的 Discuz!X 的话,请选择 UTF-8 版本)
需要联系QQ:2925947803
安装说明:
请将FTP上传模式设置为二进制模式上传
最佳安装环境 Linux + Apache 2.x + MYSQL 5.x + PHP 5.3.x + Zend Gourd Loader For PHP 5.3
最低安装环境 Linux/Win + Apache/IIS + PHP 5.3.3 + MYSQL 5.0 + Zend Guard Loader For PHP 5.3
请打开PHP.INI的短标签(short_open_tag=On),GD库,curl库,iconv库
请将 upload 文件夹内的文件上传到您的ftp空间,执行根目录下的install.php进行安装(你的网站.com/install.php),如有安装问题,请在论坛板块发帖。
权限说明:
data文件夹和uplaods文件夹,包括其中的子文件夹和文件都必须具有读,写,修改,删除的权限,Linux下必须保持 0777 的权限
其他文件夹和文件则为标准的权限
如果需要使用在线模板编辑功能,则必须要使 templates 文件夹以及下属的文件夹,文件具有有读,写,修改,删除的权限,Linux下必须保持0777的权限
程序说明:
后台登录文件是admin.php,可以自由更改,Modoer前后和后台帐号是分开的,安装时注册的帐号为后台帐号。
程序URL改写的实现方式,请参考 2.0 的安装教程,2.x的URL改写规则文件都是通用的。
UCenter整合说明:
程序默认没有安装ucenter模块,请到Modoer后台=>模块管理=>安装模块,输入"ucenter"进行模块安装。
正式版(20150712):
增加 微信支付(PC扫码支付和手机微信内支付)
增加 滑动验证功能(极验验证,登录与注册)
增加 字段编辑权限能增加“审核后不可编辑”类型
增加 字段显示模板图片化函数允许配置文字颜色和大小
增加 后台会员编辑时可以上传头像
增加 后台地图标识填写改成选择功能
增加 主题添加无刷新模式优化
增加 手机web主题优惠券列表页
增加 手机web主题点评列表页改进
增加 手机Web增加收货地址管理功能
增加 第三方账号登录功能改进流程(支持新QQ登录功能)
增加 微信账号登陆功能
增加 手机web增加头像上传功能(UC整合不支持IOS设备上传)
增加 主题等级权限功能
增加 主题等级权限加入主题风格使用权限
增加 主题等级权限加入优惠券添加权限
增加 支付接口管理,去除原支付接口配置方式
增加 支付模块的PayPal接口需要改写
增加 手机web增加积分充值功能
增加 手机web里主题关联数据进行聚合(同PC的主题内导航)
增加 京东商城账号登录功能
增加 主题的主分类参数设置里增加默认主题等级功能
增加 资讯模块文章内页上一页和下一页
重构 并强化主题模块分店功能
本人源码优势:点评系统功能旗舰版,源码纯净版不添加任何网址或者其它网址信息,本资源不像论坛那样购买会员然后要回复或者积分等级才能下载,下载了未必能用,本资源立即下载即用,减少了论坛的繁琐流程,没有任何限制,不限制任何域名。
if(!is_file(dirname(__FILE__).'/data/install.lock')) { exit('<a href="install.php">Unsure whether the system of Modoer has been installed or not.</a><br /><br />If it has already been installed,under the folder of ./data , please create a new empty file named as "install.lock".'); } //application init require dirname(__FILE__).'/core/init.php'; if($_G['cfg']['index_module'] && $_CITY['aid'] > 0) { if(($_GET['m']=='index' && $_GET['act']=='index')||(!$_GET['m'] && !$_GET['act'])) { unset($_GET['m'], $_GET['act']); } } if($_G['cfg']['index_module'] && $_CITY['aid'] > 0 && !isset($_GET['m']) && !isset($_GET['act'])) { $m = _get('m', null, '_T'); if(!$m || !preg_match("/^[a-z]+$/", $m)) { $m = $_G['cfg']['index_module']; if(strposex($m, '/')) list($m,$_GET['act']) = explode('/', $m); } else { $m = 'index'; } } else { $m = _get('m', 'index', '_T'); } if($m && $m != 'index') { if($_GET['unkown_city_domain'] && !$_G['in_ajax'] && $_GET['name'] != $_GET['unkown_city_domain']) { $url = $_GET['Rewrite'] ? ($_CFG['siteurl'] . $_GET['Rewrite']) : ($_GET['m']?url("city:0/$_GET[m]",'',true):$_GET['siteurl']); header("HTTP/1.1 301 Moved Permanently"); header("Location: $url"); } if(check_module($m)) { $f = $m . DS . 'common.php'; if(!file_exists(MUDDER_MODULE . $f)) show_error(lang('global_file_not_exist', ('./core/modules/' . $f))); include MUDDER_MODULE . $f; } else { http_404(); } } else { if($_GET['unkown_city_domain'] && !$_G['in_ajax']) http_404(); if(!$_CITY && (!$_GET['act']||$_GET['act']=='index')) { //First visit if(!$_S_CITY = get_single_city()) { include MUDDER_CORE . 'modules' . DS . 'modoer' . DS . 'city.php'; exit; //location('index.php?act=city'); } init_city($_S_CITY['aid']); $_CITY = $_S_CITY; unset($_S_CITY); } if(empty($_GET['city_domain']) && !$_GET['act'] && $_CFG['model_city_sldomain']) { location(get_city_domain($_CITY['aid'])); } $_GET['m'] = $m = 'index'; $acts = array('ajax','map','seccode','js','search','announcement','city','upload'); if(isset($_GET['act']) && in_array($_GET['act'], $acts)) { include MUDDER_CORE . 'modules' . DS . 'modoer' . DS . $_GET['act'] . '.php'; exit; } elseif(!$_GET['act'] || $_GET['act'] == 'index') { //登录首页,手机模块跳转 if(check_module('mobile') && is_mobile()) { $mobile_cfg = $_G['loader']->variable('config', 'mobile'); if($mobile_cfg['auto_enter'] && _cookie('auto_mobile')!='N') { header("Location:" . url("mobile/index",'',true,true)); exit; } } //page name define('SCRIPTNAV', 'index'); //load template include template('modoer_index');

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

According to news on August 17, the source @ibinguniverse posted on Weibo today, stating that the exact size of Apple iPhone 16 Pro Max is 6.88 inches, and the exact size of Galaxy S25 Ultra is 6.86 inches. Both can be regarded as 6.9 inches. Sources indicate that the Samsung Galaxy S25 Ultra has a narrower body and a wider screen than the S24 Ultra, with a horizontal screen-to-body ratio of 94.1%, while the S24 Ultra’s horizontal screen-to-body ratio is 91.5%. Fenye checked the relevant Weibo of the source. He also commented on the newly exposed photos of iPhone 16 Pro Max and believed that it was wrong to be close to a micro-curve. The phone is actually a straight screen + 2.5D glass.

Although Apple has been criticized for its lack of innovation in recent years, Apple has not always stood still. At least in terms of hardware design, with the support of the high unit prices of Apple products, its engineers can easily try some new technologies without having to consider too much cost issues. For example, iPad Pro, as Apple's favorite "display technology" test field, iPad Pro has been at the forefront of display technology for portable smart devices from miniLED in 2021 to tandem OLED in 2024. Although the iPad Pro is not the first portable smart device equipped with a miniLED screen (MSI released a miniLED laptop a year earlier than Apple), when you compare the parameters of the two, you will quickly realize that they are not the same

According to news on August 9, at the FMS2024 Summit, SK Hynix demonstrated its latest storage products, including UFS4.1 universal flash memory that has not yet officially released specifications. According to the official website of the JEDEC Solid State Technology Association, the latest UFS specification currently announced is UFS4.0 in August 2022. Its theoretical interface speed is as high as 46.4Gbps. It is expected that UFS4.1 will further improve the transmission rate. 1. Hynix demonstrated 512GB and 1TBUFS4.1 general-purpose flash memory products, based on 321-layer V91TbTLCNAND flash memory. SK Hynix also exhibited 3.2GbpsV92TbQLC and 3.6GbpsV9H1TbTLC particles. Hynix shows off V7-based

According to a report from Smartprix, Xiaomi is developing a buttonless mobile phone codenamed "Suzaku". According to this news, this mobile phone codenamed Zhuque will be designed with an integrated concept, use an under-screen camera, and be equipped with Qualcomm Snapdragon 8gen4 processor. If the plan does not change, we are likely to see its arrival in 2025. When I saw this news, I thought I was back in 2019 - at that time, Xiaomi released the Mi MIX Alpha concept phone, and the surround-screen button-less design was quite amazing. This is the first time I have seen the charm of a buttonless mobile phone. If you want a piece of "magic glass", you must first kill the buttons. In "The Biography of Steve Jobs", Jobs once expressed that he hoped that the mobile phone could be like a piece of "magic glass".

According to news on August 19, Nubia has been adhering to the true full-screen design since the release of Z50 Ultra, and has been continuously exploring the field of proactive photography under high-pixel screens. Today, digital blogger Wisdom Pikachu broke the news that the Nubia Z70 Ultra, which will be released in the second half of this year, will debut with 1.5K under-screen camera technology, which is the highest-resolution UDC solution in the industry so far. It is reported that ZTE’s under-screen proactive solution has advanced to the sixth generation. The latest under-screen proactive solution is available in the Nubia Z60 Ultra and Red Magic 9S Pro series. The screen resolution is 2480x1116, which is between 1080P and 1.5K resolution. This time Nubia will break through the limitations of existing resolutions and set a new benchmark in the industry.

Recently, Huawei announced that it will launch a new smart wearable product equipped with Xuanji sensing system in September, which is expected to be Huawei's latest smart watch. This new product will integrate advanced emotional health monitoring functions. The Xuanji Perception System provides users with a comprehensive health assessment with its six characteristics - accuracy, comprehensiveness, speed, flexibility, openness and scalability. The system uses a super-sensing module and optimizes the multi-channel optical path architecture technology, which greatly improves the monitoring accuracy of basic indicators such as heart rate, blood oxygen and respiration rate. In addition, the Xuanji Sensing System has also expanded the research on emotional states based on heart rate data. It is not limited to physiological indicators, but can also evaluate the user's emotional state and stress level. It supports the monitoring of more than 60 sports health indicators, covering cardiovascular, respiratory, neurological, endocrine,

According to news on August 8, the detailed configuration information of Huawei Mate70 series mobile phones has been recently exposed. This series of mobile phones is expected to be released in the fourth quarter of 2024. 1. According to reports, the entire Mate70 series will use customized top-level 1.5K resolution screens to meet users’ requirements for screen clarity. It is expected that Huawei Mate70Pro and the extra-large cup version will be equipped with fourth-depth screens, while the standard Mate70 may adopt a slightly smaller straight-screen design. In addition to screen upgrades, the Huawei Mate70 series will also be equipped with ultra-large-capacity batteries with new base materials, which heralds a breakthrough in the battery life of Huawei Mate series mobile phones. Although Huawei is developing ultrasonic fingerprint unlocking technology, this year’s Mate70 series will not be equipped with this feature. this

Since the launch of "Black Myth: Wukong", its popularity has not dropped, and there are many hot searches every day on all major platforms. Unfortunately, for mobile players, the excitement only belongs to PC players, console players and handheld players. How can that work? We who make mobile phones cannot lose. First of all, we rule out the idea of running Black Monkey on mobile phones. As a large-scale 3A game with a volume of more than 100 GB, the performance requirements are very high, and a large number of rendering technologies are developed for PC hardware. If it is translated and run on mobile phone hardware , let alone how good the frame rate and picture are, you may not be able to enter the game. In this case, we can only look at the popular cloud games. The two giants Tencent and NetEase have launched corresponding activities for "Black Myth". Relying on the advantage that its WeGame platform is also a sales platform, Tencent
