資源簡介
昂酷拍賣環境要求:
PHP環境:php 5.3+
數據庫:mysql
PHP組件要求:
memcache組件(建議)
Zend Guard Loader組件(必須)
昂酷網絡--專注于在線拍賣網站程序的研發
昂酷拍賣演示
前臺演:http://paimai.oncoo.net 后臺演示:http://paimai.oncoo.net/admin
昂酷網站 - 致力打造國內最成熟通用拍賣網站程序
官方網站:http://www.oncoo.net
*********************************
--------昂酷拍賣具有以下四大優點-------
無限延伸
系統支持無限版塊延伸,輕松解決商品的多樣化拍賣。導航自由添加,不做定制也可以讓您的網站是獨一無二的。
通用適用
系統支持無限級條件篩選和無限富文本擴展。無論您經營的是什么樣的商品,只要后臺配置相應篩選和擴展字段,輕輕松松達到要求!
操作方便
后臺布局清晰、支持商品圖片在線剪切、分類數據輕松添加、所需數據快捷查詢、權限管理安全可靠。
安全可靠
打包已備份sql文件,在線解壓zip數據文件;郵件發送sql備份,下載數據庫備份文件;數據優化修復功能。
--------------后臺版塊及其功能介紹------------------------
0、首頁
顯示一些需要管理員第一時間處理的信息,和一些常用操作的鏈接!
1、用戶管理
對網站前臺用戶的增加、刪除、修改和查詢,對用戶賬戶保證金或權限額度的充值、凍結、扣除和解凍。設置網站做過的推廣渠道并獲取用戶注冊的來源。
2、商品管理
商品管理類似倉庫,可在此進行網站商品的配置,包括頻道和分類的添加,篩選條件的添加,富文本擴展字段的添加、頻道分類和篩選條件的關聯以及頻道分類和擴展字段的關聯。以上配置完畢后就可以發布到拍賣。在商品列表可以選擇發布到拍賣或者一口價。
3、拍賣管理
對各個狀態拍賣的查詢編輯(為了安全個別狀態不允許進行修改和刪除)。和配置拍賣默認的價格浮動,保證金收取方式(也可在具體拍品中進行設置)。
4、訂單管理
訂單和訂單狀態的查詢和編輯。可配置各種訂單的有效期。
5、友情鏈接管理
可對帶圖片和不帶圖片的友情鏈接進行發布和管理
6、文章管理
網站幫助文章、資訊文章的發布和管理,以及分類的添加和編輯。
7、廣告管理
可添加和編輯廣告位和廣告,廣告類型支持圖片、flash、和代碼。廣告支持有效期。
8、支付管理
用來記錄用戶在網站充值記錄和充值的狀態,可添加第三方支付接口。目前支持六種常用支付接口
9、數據管理
用來管理網站數據庫,可備份、還原、壓縮、優化數據庫。
10、權限管理
可添加后臺用戶和分配用戶權限。方便多用戶管理網站
11、系統配置
可設置網站的一些基本信息配置、郵箱配置、短信接口配置、安全標示配置、用戶協議編輯和網站前臺的導航修改和添加。
----------------------------------其他---------------------------------
如果想去掉網址中的‘index.php’,請在pplication\Common\Conf\config.php中URL模式'URL_MODEL'=> '2', 將的注釋打開,默認URL_MODEL為1。
JS\CSS 壓縮緩存:系統加入了minify壓縮js、css緩存,為了和TP的分隔符分開,如果你要將你的js、css加入到minify中,你必須使用豎線“|”將多個文件分隔開。

代碼片段和文件信息
/*
?*?YUI?Compressor
?*?http://developer.yahoo.com/yui/compressor/
?*?Author:?Julien?Lecomte?-??http://www.julienlecomte.net/
?*?Author:?Isaac?Schlueter?-?http://foohack.com/
?*?Author:?Stoyan?Stefanov?-?http://phpied.com/
?*?Copyright?(c)?2011?Yahoo!?Inc.??All?rights?reserved.
?*?The?copyrights?embodied?in?the?content?of?this?file?are?licensed
?*?by?Yahoo!?Inc.?under?the?BSD?(revised)?open?source?license.
?*/
package?com.yahoo.platform.yui.compressor;
import?java.io.IOException;
import?java.io.Reader;
import?java.io.Writer;
import?java.util.regex.Pattern;
import?java.util.regex.Matcher;
import?java.util.ArrayList;
public?class?CssCompressor?{
????private?StringBuffer?srcsb?=?new?StringBuffer();
????public?CssCompressor(Reader?in)?throws?IOException?{
????????//?Read?the?stream...
????????int?c;
????????while?((c?=?in.read())?!=?-1)?{
????????????srcsb.append((char)?c);
????????}
????}
????//?Leave?data?urls?alone?to?increase?parse?performance.
????protected?String?extractDataUrls(String?css?ArrayList?preservedTokens)?{
???? int?maxIndex?=?css.length()?-?1;
????????int?appendIndex?=?0;
???? StringBuffer?sb?=?new?StringBuffer();
????????Pattern?p?=?Pattern.compile(“url\\(\\s*([\“‘]?)data\\:“);
????????Matcher?m?=?p.matcher(css);
????????
????????/*?
?????????*?Since?we?need?to?account?for?non-base64?data?urls?we?need?to?handle?
?????????*?‘?and?)?being?part?of?the?data?string.?Hence?switching?to?indexOf
?????????*?to?determine?whether?or?not?we?have?matching?string?terminators?and
?????????*?handling?sb?appends?directly?instead?of?using?matcher.append*?methods.
?????????*/
????????while?(m.find())?{
???????? int?startIndex?=?m.start()?+?4;?? //?“url(“.length()
???? String?terminator?=?m.group(1);?????//?‘?“?or?empty?(not?quoted)
????
???? if?(terminator.length()?==?0)?{
???? ? terminator?=?“)“;
???? }
???? boolean?foundTerminator?=?false;
???? int?endIndex?=?m.end()?-?1;
???? while(foundTerminator?==?false?&&?endIndex+1?<=?maxIndex)?{
???? endIndex?=?css.indexOf(terminator?endIndex+1);
???? if?((endIndex?>?0)?&&?(css.charAt(endIndex-1)?!=?‘\\‘))?{
???? foundTerminator?=?true;
???? if?(!“)“.equals(terminator))?{
???? endIndex?=?css.indexOf(“)“?endIndex);?
???? }
???? }
???? }
???? //?Enough?searching?start?moving?stuff?over?to?the?buffer
sb.append(css.substring(appendIndex?m.start()));
???? if?(foundTerminator)?{
???? String?token?=?css.substring(startIndex?endIndex);
???? token?=?token.replaceAll(“\\s+“?““);
???? preservedTokens.add(token);
???? String?preserver?=?“url(___YUICSSMIN_PRESERVED_TOKEN_“?+?(preservedTokens.size()?-?1)?+?“___)“;
???? sb.append(preserver);
???? appendIndex?=?endIndex?+?1;
???? }?else?{
???? //?No?end?terminator?found?re-add?the?whole?match.?Should?we?throw/warn?here?
???? sb.append(css.substring(m.start()?m.end()));
???? appendIndex?=?m.end();
???? }
????????}
????????sb.append(css.substring(appendIndex));
????????return?sb.toString();
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????434??2014-10-11?11:02??composer.json
?????文件???????1348??2014-10-11?11:02??index.php
?????文件???????2747??2014-10-11?11:02??README.md
?????文件???????1062??2014-10-09?15:45??up-rewrite.conf
?????文件???????3230??2014-10-11?15:48??環境要求及簡要功能說明.txt
?????文件???????7738??2014-10-11?11:02??Application\Admin\Common\function.php
?????文件??????????1??2014-10-11?11:02??Application\Admin\Common\index.html
?????文件???????5051??2014-10-11?11:02??Application\Admin\Conf\config.php
?????文件??????????1??2014-10-11?11:02??Application\Admin\Conf\index.html
?????文件?????????91??2014-10-11?11:02??Application\Admin\Conf\tags.php
?????文件???????8084??2014-10-11?11:02??Application\Admin\Controller\AccessController.class.php
?????文件???????6774??2014-10-11?11:02??Application\Admin\Controller\AdvertisingController.class.php
?????文件???????8249??2014-10-11?11:02??Application\Admin\Controller\AuctionController.class.php
?????文件???????5417??2014-10-11?11:02??Application\Admin\Controller\CommonController.class.php
?????文件??????18881??2014-10-11?11:02??Application\Admin\Controller\GoodsController.class.php
?????文件??????????1??2014-10-11?11:02??Application\Admin\Controller\index.html
?????文件???????7969??2014-10-11?11:02??Application\Admin\Controller\IndexController.class.php
?????文件???????4022??2014-10-11?11:02??Application\Admin\Controller\li
?????文件???????4049??2014-10-11?11:02??Application\Admin\Controller\MemberController.class.php
?????文件???????5326??2014-10-11?11:02??Application\Admin\Controller\NewsController.class.php
?????文件???????8530??2014-10-11?11:02??Application\Admin\Controller\OrderController.class.php
?????文件???????3208??2014-10-11?11:02??Application\Admin\Controller\PaymentController.class.php
?????文件???????3536??2014-10-11?11:02??Application\Admin\Controller\PublicController.class.php
?????文件??????19122??2014-10-11?11:02??Application\Admin\Controller\SysDataController.class.php
?????文件??????11463??2014-10-11?11:02??Application\Admin\Controller\UploadController.class.php
?????文件???????4719??2014-10-11?11:02??Application\Admin\Controller\WebinfoController.class.php
?????文件??????????1??2014-10-11?11:02??Application\Admin\index.html
?????文件???????7633??2014-10-11?11:02??Application\Admin\Model\AccessModel.class.php
?????文件???????4214??2014-10-11?11:02??Application\Admin\Model\AdvertisingModel.class.php
?????文件??????15142??2014-10-11?11:02??Application\Admin\Model\AuctionModel.class.php
............此處省略1424個文件信息
- 上一篇:騰訊云-短信接口demo PHP
- 下一篇:ThinkPHP后臺管理系統
評論
共有 條評論