-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
初始化設定問題 #18
Comments
你是放在 http://yourdomain.com/newsdiff/ 下面看的嗎? |
改了,仍然有問題 :( |
試試看在 index.php 的 Pix_Controller::dispatch(DIR . '/webdata/'); 前面加上 $_SERVER['REQUEST_URI'] = substr($_SERVER['REQUEST_URI'], strlen('/newsdiff')); 不過不確定會不會出問題 因為 PixFramework 的使用大部份都是獨立 domain ,因此他看到 /newsdiff 這個網址就跑去找 NewsdiffController 了 |
謝謝!終於看到畫面了,但似乎連結都壞掉,我還是放在獨立domain好了。 另外,請問應在那裡create table? 因為我本來是靠models下的php, 相應create出table 但運行
最後,可以請教一下初始設定步驟為:
|
可以用 php webdata/prompt.php 進入提示字元模式 KeyValue::createTable();
NewsInfo::createTable();
News::createTable();
NewsRaw::createTable(); 另外 NewsRaw 那邊之前為了方便砍掉舊資料,會以月份來分 table NewsRaw::getDb()->query("CREATE TABLE news_raw_201410 LIKE news_raw") |
我自己現在在跑是每十分鐘會跑一次 crawler-new.php 去抓清單 分別是 每隻 crawler-part.php 負責 1/3 的新聞來源 |
還要跑 crawler-part.php 才會抓內容 |
有關warning部分,我還修改了
所以,我更改了欄位 另外,似乎table 謝謝! |
Pull request #12 修改了預設值,應該可以解決新安裝狀況下發生的預設值 warning 問題。該 pull request 另外亦有資料庫初始化的 script,應該可以簡化初始化設定問題。 |
原有方法直接用 SQL 語句產生表格,表格的結構不能隨 Pix_Table 實現而改變,比較不靈活。 改用 Ronny 在[這裏](https://github.com/ronnywang/newsdiff/issues/18#issuecomment-59484616)提及的方法產生 news_raw 表格。
設定好db後,運行了一次crawler-new.php,但在檢視index.php時出現了404字樣,於是在ErrorController.php加入
得出以下訊息。
請問應如何設定?
The text was updated successfully, but these errors were encountered: