資源簡介
一)、功能:
1、全自動(dòng)后臺(tái)處理:只要會(huì)操作博客,就會(huì)操作本網(wǎng)站。(會(huì)編程文字就可以)
2、自帶10%下線推廣鏈接:通過下線推薦下線,使你推廣下線更加容易。
3、返傭管理:可以處理返傭。
4、支付管理:可以處理會(huì)員手動(dòng)請款。
5、自動(dòng)支付管理:可以處理會(huì)員自動(dòng)請款。
6、網(wǎng)賺銀行:可以增加、修改、刪除網(wǎng)賺銀行欄目信息。
7、網(wǎng)賺學(xué)院:可以增加、修改、刪除網(wǎng)賺學(xué)院欄目信息。
8、首頁公告管理:可以自定義設(shè)置首頁。
9、走馬燈公告管理:可以設(shè)置醒目的公告。
10、關(guān)于我們管理:可以設(shè)置關(guān)于我們欄目信息。
11、點(diǎn)擊站點(diǎn)管理:可以增加、修改、刪除點(diǎn)擊站點(diǎn)項(xiàng)目及處理返傭。
12、掛機(jī)站點(diǎn)管理:可以增加、修改、刪除點(diǎn)擊站點(diǎn)項(xiàng)目及處理返傭。
13、其他站點(diǎn)管理:可以增加、修改、刪除點(diǎn)擊站點(diǎn)項(xiàng)目及處理返傭。
14、騙子站點(diǎn)管理:可以設(shè)置騙子站點(diǎn)。
15、收款圖管理:可以增加、修改、刪除收款信息。
16、會(huì)員管理:可以查看、修改、刪除會(huì)員信息及設(shè)置會(huì)員類型。
17、友情鏈接管理:可以設(shè)置友情鏈接。
18、站點(diǎn)配置:可以設(shè)置用戶注冊獎(jiǎng)勵(lì)、最小人民幣支付、最小美元支付、高級(jí)會(huì)員獎(jiǎng)勵(lì)、VIP會(huì)員獎(jiǎng)勵(lì)及美元人民幣兌換比例。
19、轉(zhuǎn)換人民幣:可以自動(dòng)將美元轉(zhuǎn)換成人民幣。
20、前臺(tái)會(huì)員中心具有更多功能:可顯示返傭記錄、支付記錄,可以兌換,手動(dòng)請款及設(shè)置自動(dòng)請款,還有各類排名等。
提示:更多網(wǎng)站功能請登陸演示后臺(tái)自己演示操作。
本次更新內(nèi)容為:

代碼片段和文件信息
“““
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
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????????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個(gè)文件信息
評(píng)論
共有 條評(píng)論