cakephp-2.1

    1熱度

    2回答

    最新的入門我有兩個表: 訂單 id | timestamp -------------------------- 1 | 2013-05-01 12:56:33 order_prices訂單價格的 此表存儲快照。訂單下達後,第一個條目將以原始價格製成。之後,價格可以通過管理系統進行更改,所以當價格改變時,會記錄新的價格。 id | order_id | price | timestamp

    9熱度

    1回答

    我想知道CakePHP驗證規則是否可以根據其他字段驗證字段。 我一直在閱讀documentation about custom validation rules,但$check param只包含當前字段的值來驗證。 例如。我想定義verify_password字段需要只有的NEW_PASSWORD字段不爲空。 (萬一 我可以用javascript做吧,但我不知道是否有可能直接與CakePHP的做到

    1熱度

    4回答

    當我用facebook-sdk創建一個用戶時,我沒有讓他在facebook登錄後自動登錄。 Usercreation運行良好,但沒有登錄。 Cakephp和facebook-sdk是最新版本。 這裏是我的AccountController: <?php class AccountController extends AppController { public $uses = ar

    1熱度

    1回答

    我有2個表/模型(彼此沒有任何關係)必須同時更新,如果任何一個不能完成更新過程,其他人會不會被更新.... ,如果我嘗試 if($this->model1->save($data)) $this->model2->save($data) 的MODEL1將被更新,無論MODEL2保存成功與否。 這是任何回滾功能,我撤消先救行動,如果第二拯救行動失敗

    1熱度

    1回答

    HABTM協會我有兩個表: 它定義如下: CREATE TABLE IF NOT EXISTS `users_correlations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `correlated_id` int(11) NOT NULL, `type` cha

    5熱度

    1回答

    我得到一個int值給控制器,我想將它發送到相應的視圖,但我要麼傳遞或訪問它錯誤。這裏是我想要做的事: 控制器: function send($int = NULL) { $this->set('integer', $int); } 查看: echo $integer['int'] 你的幫助深表感謝!

    0熱度

    1回答

    我正在使用cakephp 1.2,最近我更新了蛋糕版本並遷移到2.4。 在我們爲應用程序使用許多.htaccess規則之前。我們將它們寫入/webroot/.htaccess文件中。但是在遷移到2.4之後,任何規則都不起作用。 EG 的RewriteCond%{} REQUEST_FILENAME -d 的RewriteCond%{REQUEST_URI} /新聞/ $ 重寫規則^(。*)$頁/新

    1熱度

    1回答

    數據我有相互關聯的2種型號。 class AccountModel extends AppModel { public $name = 'Account'; public $belongsTo = array( 'User' => array( 'className' => 'User', 'foreignKey' => 'user_id'

    2熱度

    1回答

    我想從我的應用程序外部(它被不同的應用程序使用)包含雜項庫類。 我的應用程序位於: /var/www/websites/my_website/app/ 和類位於: /var/www/websites/libs/CakePHP/MyClass.php 在我的引導,我努力弄清楚如何添加路徑加載的類從該目錄: App::build(array('Lib' => array('/var/www/w

    0熱度

    1回答

    在我的用戶模型中,我的字段爲follower_count和following_count。 而對於追隨者和下面我在我的用戶HABTM協會如下定義: public $hasAndBelongsToMany=array( 'Following'=>array( 'className'=>'User', 'joinTable'=>'user_correlations',