<?xml version="1.0" encoding="utf-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">

    <title type="text">EEフォーラム</title>
    <link rel="alternate" type="text/html" href="http://expression-engine.jp/forums/" />
    <link rel="self" type="application/atom+xml" href="http://expression-engine.jp/forums/atom/" />
    <updated>2009-12-03T16:59:21Z</updated>
    <rights>Copyright (c) 2009</rights>
    <generator uri="http://expressionengine.com/" version="1.6.3">ExpressionEngine</generator>
    <id>tag:expression-engine.jp,2009:12:03</id>


    <entry>
      <title>EE2.0Public Beta</title>
      <link rel="alternate" type="text/html" href="http://expression-engine.jp/forums/viewthread/27/" />      
      <id>tag:expression-engine.jp,2009:forums/viewthread/.27</id>
      <published>2009-12-03T16:53:14Z</published>
      <updated>2009-12-03T16:59:21Z</updated>
      <author><name>もぎゃ</name></author>
      <content type="html">
      <![CDATA[
        <p>EE2.0PublicBetaが公開されましたね。
</p>
<p>
30daysTrialがあるのはいいのですが、このバージョンだけZendOptimizerが必要なのだそうです。
</p>
<p>
嫌な予感がしつつインストールしたらやっぱりはまりました。ブー。
</p>
<p>
= 作業メモ =======
<br />
　http://expressionengine.com/public_beta/ のFreeTrialでダウンロードできる
<br />
以前のEEが動いていた環境に加えて、FreeTrialではZendOptimizerが必要。
<br />
<a href="http://www.zend.co.jp/product/zendoptimizer.html">http://www.zend.co.jp/product/zendoptimizer.html</a>
</p>
<p>
<a href="http://vine.1-max.net/zend.html">http://vine.1-max.net/zend.html</a> が参考になった。
</p>
<p>
CentOS5.3だと、ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz で動いた(本当に？でもglibc2.5の物がないんだよね)
<br />
ユーザーガイド
<br />
<a href="http://expressionengine.com/public_beta/docs/">http://expressionengine.com/public_beta/docs/</a>
</p>
<p>
mysql&gt; CREATE DATABASE ee20; 
<br />
Query OK, 0 rows affected (0.00 sec) 
<br />
mysql&gt; GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES 
<br />
-&gt; ON ee20.* TO ‘ee20’@’localhost’ IDENTIFIED BY ‘＊＊＊＊＊’; 
<br />
Query OK, 0 rows affected (0.00 sec) 
<br />
mysql&gt; 
<br />
mysql&gt; FLUSH PRIVILEGES; 
<br />
Query OK, 0 rows affected (0.01 sec) 
</p>
<p>
chmod 666 system/expressionengine/config/config.php
<br />
chmod 666 system/expressionengine/config/database.php
<br />
mkdir system/expressionengine/cache/
<br />
chmod 777 system/expressionengine/cache/
<br />
chmod 777 images/avatars/uploads/
<br />
chmod 777 images/captchas/
<br />
chmod 777 images/member_photos/
<br />
chmod 777 images/pm_attachments/
<br />
chmod 777 images/signature_attachments/
<br />
chmod 777 images/uploads/
</p>
<p>
system/フォルダにブラウザからアクセス
</p>
<p>
真っ白。エラーを見ると
<br />
[Thu Dec 03 16:47:32 2009] [error] [client 61.245.74.47] PHP Fatal error:&nbsp; This file has expired. in /var/www/ee2/html/system/index.php on line 0
</p>
<p>
<a href="http://expressionengine.com/forums/viewthread/136941/">http://expressionengine.com/forums/viewthread/136941/</a>
<br />
で話題になっているみたいなので、ちょっと待ってみよう。
</p>
      ]]>
      </content>
    </entry>

    <entry>
      <title>日本語が入力できない時の対処方法</title>
      <link rel="alternate" type="text/html" href="http://expression-engine.jp/forums/viewthread/14/" />      
      <id>tag:expression-engine.jp,2008:forums/viewthread/.14</id>
      <published>2008-07-29T03:21:31Z</published>
      <updated></updated>
      <author><name>tomodian</name></author>
      <content type="html">
      <![CDATA[
        <p>EECoreをインストールした場合、以下の環境では日本語を入力してもMySQLに登録されていませんでした。
</p>
<p>
Apache/2.0.52
<br />
PHP/4.3.9 
<br />
MySQL/4.1.20
</p>
<p>
この場合、/system/db/db.mysql.php 内、148行目あたりに
</p>
<p>
</p><div class="codeblock"><code>
<span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">conn_id&nbsp;</span><span style="color: #007700">=&nbsp;(</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">conntype&nbsp;</span><span style="color: #007700">==&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">)&nbsp;?<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;@</span><span style="color: #0000BB">mysql_connect&nbsp;</span><span style="color: #007700">(</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">hostname</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">username</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">password</span><span style="color: #007700">):<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;@</span><span style="color: #0000BB">mysql_pconnect</span><span style="color: #007700">(</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">hostname</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">username</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">password</span><span style="color: #007700">);</span>
</code></div><p>
</p>
<p>
以下のコードを追記すれば日本語入力ができるようになります（UTF-8）
</p>
<p>
</p><div class="codeblock"><code>
<span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">conn_id&nbsp;</span><span style="color: #007700">=&nbsp;(</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">conntype&nbsp;</span><span style="color: #007700">==&nbsp;</span><span style="color: #0000BB">0</span><span style="color: #007700">)&nbsp;?<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;@</span><span style="color: #0000BB">mysql_connect&nbsp;</span><span style="color: #007700">(</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">hostname</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">username</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">password</span><span style="color: #007700">):<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;@</span><span style="color: #0000BB">mysql_pconnect</span><span style="color: #007700">(</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">hostname</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">username</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">$this</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">password</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">mysql_query</span><span style="color: #007700">(</span><span style="color: #DD0000">"SET&nbsp;NAMES&nbsp;utf8"</span><span style="color: #007700">);</span>
</code></div><p>
</p>
      ]]>
      </content>
    </entry>


</feed>