资源简介
一)、功能:
1、全自动后台处理:只要会操作博客,就会操作本网站。(会编程文字就可以)
2、自带10%下线推广链接:通过下线推荐下线,使你推广下线更加容易。
3、返佣管理:可以处理返佣。
4、支付管理:可以处理会员手动请款。
5、自动支付管理:可以处理会员自动请款。
6、网赚银行:可以增加、修改、删除网赚银行栏目信息。
7、网赚学院:可以增加、修改、删除网赚学院栏目信息。
8、首页公告管理:可以自定义设置首页。
9、走马灯公告管理:可以设置醒目的公告。
10、关于我们管理:可以设置关于我们栏目信息。
11、点击站点管理:可以增加、修改、删除点击站点项目及处理返佣。
12、挂机站点管理:可以增加、修改、删除点击站点项目及处理返佣。
13、其他站点管理:可以增加、修改、删除点击站点项目及处理返佣。
14、骗子站点管理:可以设置骗子站点。
15、收款图管理:可以增加、修改、删除收款信息。
16、会员管理:可以查看、修改、删除会员信息及设置会员类型。
17、友情链接管理:可以设置友情链接。
18、站点配置:可以设置用户注册奖励、最小人民币支付、最小美元支付、高级会员奖励、VIP会员奖励及美元人民币兑换比例。
19、转换人民币:可以自动将美元转换成人民币。
20、前台会员中心具有更多功能:可显示返佣记录、支付记录,可以兑换,手动请款及设置自动请款,还有各类排名等。
提示:更多网站功能请登陆演示后台自己演示操作。
本次更新内容为:
代码片段和文件信息
“““
FCKeditor - The text editor for Internet - http://www.fckeditor.net
Copyright (C) 2003-2008 Frederico Caldeira Knabben
== BEGIN LICENSE ==
Licensed under the terms of any of the following licenses at your
choice:
- GNU General Public License Version 2 or later (the “GPL“)
http://www.gnu.org/licenses/gpl.html
- GNU Lesser General Public License Version 2.1 or later (the “LGPL“)
http://www.gnu.org/licenses/lgpl.html
- Mozilla Public License Version 1.1 or later (the “MPL“)
http://www.mozilla.org/MPL/MPL-1.1.html
== END LICENSE ==
This is the integration file for Python.
“““
import cgi
import os
import re
import string
def escape(text replace=string.replace):
“““Converts the special characters ‘<‘ ‘>‘ and ‘&‘.
RFC 1866 specifies that these characters be represented
in HTML as < > and & respectively. In Python
1.5 we use the new string.replace() function for speed.
“““
text = replace(text ‘&‘ ‘&‘) # must be done 1st
text = replace(text ‘<‘ ‘<‘)
text = replace(text ‘>‘ ‘>‘)
text = replace(text ‘“‘ ‘"‘)
text = replace(text “‘“ ‘‘‘)
return text
# The FCKeditor class
class FCKeditor(object):
def __init__(self instanceName):
self.InstanceName = instanceName
self.basePath = ‘/fckeditor/‘
self.Width = ‘100%‘
self.Height = ‘200‘
self.ToolbarSet = ‘Default‘
self.Value = ‘‘;
self.Config = {}
def Create(self):
return self.CreateHtml()
def CreateHtml(self):
HtmlValue = escape(self.Value)
Html = ““
if (self.IsCompatible()):
File = “fckeditor.html“
link = “%seditor/%s?InstanceName=%s“ % (
self.basePath
File
self.InstanceName
)
if (self.ToolbarSet is not None):
link += “&Toolbar=%s“ % self.ToolbarSet
# Render the linked hidden field
Html += “yle=\“display:none\“ />“ % (
self.InstanceName
self.InstanceName
HtmlValue
)
# Render the configurations hidden field
Html += “yle=\“display:none\“ />“ % (
self.InstanceName
self.GetConfigFieldString()
)
# Render the editor iframe
Html += “rame id=\“%s\__frame\“ src=\“%s\“ width=\“%s\“ height=\“%s\“ frameborder=\“0\“ scrolling=\“no\“> rame>“ % (
self.InstanceName
link
self.Width
self.Height
)
else:
if (self.Width.find(“%%“) < 0):
WidthCSS = “%spx“ % self.Width
else:
WidthCSS = self.Width
if (self.Height.find(“%%“) < 0):
HeightCSS = “%spx“ % self.Height
else:
HeightCSS = self.Height
Html += ““ % (
self.InstanceName
WidthCSS
HeightCSS
HtmlValue
)
return Html
def IsCom
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 223 2009-02-06 02:32 contact.php
文件 7200 2009-02-06 02:32 exchange.php
文件 5706 2009-02-06 02:32 fanyong.php
文件 318 2009-02-06 02:32 favicon.ico
文件 3680 2009-02-06 02:32 footer.inc.php
文件 2320 2009-02-06 02:32 function.inc.php
文件 5756 2009-02-06 02:32 gift.php
文件 2076 2009-02-06 02:32 gonggao.php
文件 1084 2009-02-06 02:32 gongju.php
文件 5774 2009-02-06 02:32 gwptc.php
文件 4750 2009-02-06 02:32 header.inc.php
文件 3122 2009-02-06 02:32 history_else.php
文件 4093 2009-03-15 11:43 history_offer.php
文件 2255 2009-02-06 02:32 history_offer_public.php
文件 3447 2009-02-06 02:32 history_payment.php
文件 11976 2009-02-06 02:32 index.php
文件 1179 2009-02-06 02:32 jiangli.php
文件 3946 2009-02-06 02:32 login.php
文件 294 2009-02-06 02:32 logout.php
文件 3040 2009-02-06 02:32 masspay.php
文件 5263 2009-02-06 02:32 member.php
文件 5747 2009-02-06 02:32 myptc.php
文件 10695 2009-02-06 02:32 newmember.php
文件 6296 2009-02-06 02:32 paiming.php
文件 1909 2009-02-06 02:32 payment_proofs.php
文件 18 2005-06-13 10:19 phpinfo.php
文件 7233 2009-02-06 02:32 profile.php
文件 5761 2009-02-06 02:32 ptc.php
文件 5754 2009-02-06 02:32 ptc_xin.php
文件 775 2009-02-06 02:32 pzz.php
............此处省略955个文件信息
评论
共有 条评论