cakephp-2.3

    -1熱度

    1回答

    Neebe在cakephp試圖建立一個簡單的appoiment系統。 我的問題是隻填寫屬於user.But當前日誌pacients名稱的Pacient名稱,但如果我使用find('list'),我得到所有用戶的所有pacients。 這裏是有問題的數據庫表; 1 - pacients CREATE TABLE IF NOT EXISTS `Doctor_Appointments`.`pacient

    -1熱度

    2回答

    我有一些CakePhp 1.3的經驗,我在1.3平臺上做過一個項目。之後有新版本的CakePhp發佈。現在我對開發哪個版本感到困惑......如果有人能幫助我選擇版本。 ?

    2熱度

    1回答

    我下面的自定義模板分頁使用下面的代碼(cakephp 2.3 version),但要求沒有得到結果鏈接 <li class="prev"><a href="#">prev</a></li> <li><a href="#" class="active">1</a></li> <li><a href="#">2</a></li> <li><a href="#">3</a></li> <li><

    0熱度

    1回答

    假設我有這些模型 - 郵政,類別,用戶。發佈所屬類別和用戶。 在我的PostsController裏面的一些動作我想從類別或用戶表中的數據,我可以使用以下 1) public $uses = array('Post', 'Category', 'User') and use Category model like $this->Category->find('all'); everywhere

    0熱度

    1回答

    保存模型數據無法插入任何數組數據類型字段。要存儲的數據數組。 array( 'catalog_id' => '14', 'foreign_model[1]' => 'Catalog', 'foreign_model_key[1]' => (int) 3, 'foreign_key[1]' => '4', 'name' => 'T580.26',

    0熱度

    1回答

    在我的訂單模式,我有以下方法來總結訂單的的OrderItems public function getTotalPrice($id = null) { if (!$this->exists($id)) { throw new NotFoundException(__('Invalid order')); } $total = $this->OrderIte

    0熱度

    1回答

    我有一個名爲cakephp1我的數據庫中名爲任務的表。 我在控制器寫這段代碼: function edit($id = null) { if (!$id) { $this->Session->setFlash('Invalid Task'); $this->redirect(array('action'=>'index'), null, true); }

    0熱度

    1回答

    我在Windows上工作,它有mod_rewrite引擎關閉。所以我的cakephp項目工作得很好,但現在我已經轉向UBuntu並且它已經啓用了mod_rewrite引擎。我的項目以css圖像和其他資源未找到錯誤結束。我需要什麼樣的變化做,如果我的mod_rewrite引擎上,我想正確的,我使用2.3版本CakePHP的的.. 項目/應用/ index.php文件 require 'webroot

    4熱度

    2回答

    我想開始我的代碼編寫測試,所以我安裝了最新的PHPUnit用下面的命令 wget http://pear.phpunit.de/get/phpunit.phar chmod +x phpunit.phar mv phpunit.phar /usr/local/bin/phpunit http://phpunit.de/manual/3.8/en/installation.html 然後我加

    1熱度

    2回答

    我有3個表格,restaurants,orders,users。訂單表的字段爲restaurant_id,status和user_id。 restaurant -> hasMany orders orders belogsTo Restaurant orders belongsTo users 我只需要找到那些訂單狀態= 1的餐館,同時需要獲取用戶的信息。 所以,我正在與訂單表內部聯接,