Making phpBB2 working with PHP5 PHP5の作業をメーカーphpbb2

Officially, phpBB 2 (as of this writing, up to version 2.0.17) is not supporting PHP 5.公式には、 phpBBの2 (本稿執筆時点で、最大のバージョン2.0.17 )ではないのPHP 5をサポートします。 If you install PHP 5, and use it to run phpBB, you will encounter the following symptoms and errors:のPHP 5をインストールした場合に、それを使うことを実行するのphpBB 、あなたは次のような症状に遭遇するとエラー:

  • You cannot post message - When you want to post new topic or reply to a topic, after writing your message, when you click “Submit”, a blank page or screen or error message is shown with address bar showing posting.php, instead of posting confirmation message.メッセージを投稿することはできません-新しいトピックを作成したいときやトピックに返信するには、あなたのメッセージを書き込んだ後、をクリックしたときに"送信"と、空白のページまたは画面またはエラーメッセージが表示さを示すアドレスバーに表示中p osting.phpのではなく、投稿の確認メッセージを表示します。
  • You unable to search - When you want to search by clicking oh “Search”, no search results are been returned, or a black page or screen, or error message is shown.あなたを検索できませんでした-を検索したいときにあらをクリックして"検索" 、検索結果が返されたか、またはページまたは画面に黒いか、またはエラーメッセージが表示されます。

To enable PHP 5 to work properly with phpBB, some changes to the phpBB source code needs to be done.を有効にするPHP 5へのphpBBが正常に動作すると、 phpBBのソースコードのいくつかの変更を完了する必要があります。 Just follow steps as below:は、次の手順は以下の通りです:

OPEN開く
admin/admin_ug_auth.php管理者/ admin_ug_auth.php

FIND見つける
if( $forum_access[$i][$auth_field] == AUTH_ACL && isset($change_acl_list[$forum_id][$auth_field]) )もし( $ forum_access [ $私] [ $ auth_field ] == auth_acl & & isset ( $ change_acl_list [ $ forum_id ] [ $ auth_field ] ) )

REPLACE WITH置き換える
if( $forum_access[$i][$auth_field] == AUTH_ACL && isset($change_acl_list[$forum_id]) )もし( $ forum_access [ $私] [ $ auth_field ] == auth_acl & & isset ( $ change_acl_list [ $ forum_id ] ) )

FIND見つける
( !isset($auth_access[$forum_id][$auth_field]) && !empty($change_acl_list[$forum_id][$auth_field]) ) ) || ( ! isset ( $ auth_access [ $ forum_id ] [ $ auth_field ] ) & & !空( $ change_acl_list [ $ forum_id ] [ $ auth_field ] ) ) ) | |

REPLACE WITH置き換える
( !isset($auth_access[$forum_id][$auth_field]) && empty($change_acl_list[$forum_id][$auth_field]) ) ) || ( ! isset ( $ auth_access [ $ forum_id ] [ $ auth_field ] ) & &空( $ change_acl_list [ $ forum_id ] [ $ auth_field ] ) ) ) | |

Finally, some changes are needed so that functions that get called with functions as parameters are not called ‘by reference’ with functions:最後に、いくつかの変更が必要に応じて機能を得るために呼び出される関数をパラメータとしてはないと呼ばれる'を参照'を機能:

OPEN開く
includes/functions_post.php含まれて/ functions_post.php

FIND見つける
function submit_post($mode, &$post_data, &$message, &$meta, &$forum_id, &$topic_id, &$post_id, &$poll_id, &$topic_type, &$bbcode_on, &$html_on, &$smilies_on, &$attach_sig, &$bbcode_uid, &$post_username, &$post_subject, &$post_message, &$poll_title, &$poll_options, &$poll_length)関数submit_post ( $モードでは、 & $ post_data 、 & $メッセージが表示さ、 & $メタ、 & $ forum_id 、 & $ topic_id 、 & $ post_id 、 & $ poll_id 、 & $ topic_type 、 & $ bbcode_on 、 & $ html_on 、 & $ smilies_on 、 & $ attach_sig 、 & $ bbcode_uid 、 & $ post_username 、 & $ post_subject 、 & $ post_message 、 & $ poll_title 、 & $ poll_options 、 & $ poll_length )

REPLACE WITH置き換える
function submit_post($mode, &$post_data, &$message, &$meta, &$forum_id, &$topic_id, &$post_id, &$poll_id, &$topic_type, &$bbcode_on, &$html_on, &$smilies_on, &$attach_sig, &$bbcode_uid, $post_username, $post_subject, $post_message, $poll_title, &$poll_options, &$poll_length)関数submit_post ( $モードでは、 & $ post_data 、 & $メッセージが表示さ、 & $メタ、 & $ forum_id 、 & $ topic_id 、 & $ post_id 、 & $ poll_id 、 & $ topic_type 、 & $ bbcode_on 、 & $ html_on 、 & $ smilies_on 、 & $ attach_sig 、 & $ bbcode_uid 、 $ post_username 、 $ post_subject 、 $ post_message 、 $ poll_title 、 & $ poll_options 、 & $ poll_length )

OPEN開く
includes/functions_search.php含まれて/ functions_search.php

FIND見つける
function clean_words($mode, &$entry, &$stopword_list, &$synonym_list)関数clean_words ( $モードでは、 & $エントリ、 & $ stopword_list 、 & $ synonym_list )

REPLACE WITH置き換える
function clean_words($mode, $entry, &$stopword_list, &$synonym_list)関数clean_words ( $モードでは、 $エントリ、 & $ stopword_list 、 & $ synonym_list )

FIND見つける
function split_words(&$entry, $mode = ‘post’)関数split_words ( & $エントリを、 $モード= '作成' )

REPLACE WITH置き換える
function split_words($entry, $mode = ‘post’)関数split_words ( $エントリを、 $モード= '作成' )

For the above, the changes involved are some parameters have been stripped off the “&” sign.上記のため、関係はいくつかのパラメータの変更が取り除かれ、 " & "サインです。

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要 :これは、機械翻訳ページで提供"現状有姿"を保証します。 Machine translation may be difficult to understand.機械翻訳を理解するのは難しいかもしれません。 Please refer toを参照してください original English articleオリジナルの英語記事索引 whenever possible.いつ可能です。

Share and contribute or get technical support and help atを共有して貢献や技術サポートとヘルプを得る My Digital Life Forums 私のデジタルライフフォーラム .です。



7 Responses to “Making phpBB2 working with PHP5” 7レスポンスを"メーカーphpbb2作業をPHP5の"

  1. Alanアラン
    July 25th, 2006 03:15 2006年7月25日03:15
    1

    It doesn’t work.それは機能しません。 Shame.恥。

  2. KenMarshall kenmarshall
    April 17th, 2007 16:03 2007年4月17日16:03
    2

    I think, that is interesting for all.私が思うに、すべてのことは興味深いです。

  3. Test試験
    August 31st, 2007 07:26 2007年8月31日07:26
    3 4

    Helloこんにちは

    G’nightお休みなさい

  4. acghjwolhqa
    September 28th, 2007 02:40 2007年9月28日02:40
    4

    Amerikanische Firma „ACG Logistics“ sucht nach Mitarbeiter in Europa fuer die Arbeit im Logistikbereich. amerikanische会社" ACGの物流" sucht nach mitarbeiter 、ヨーロッパfuer死ぬarbeitイムlogistikbereichです。 Interessanter Job mit guter Verdienstmoeglichkeit. mit guter verdienstmoeglichkeit interessanter仕事です。

    [b]Schicken Sie bitte Ihre Bewerbung an B詳細] schicken sie bitte bewerbungするイーレ info@acglogistics.biz [/b] [ / b ]

  5. free poker download free poker無料ダウンロードポーカー自由ポーカー
    November 15th, 2007 22:28 2007年11月15日22:28
    5

    download poker gratuito… ダウンロードポーカー無料…

    Ogni software Poker casino poker… ogniソフトウェアポーカーカジノポーカー…

  6. rk
    December 3rd, 2007 21:28 2007年12月3日21:28
    6

    try this for working phpbb2 with php5これを試しにPHP5の作業phpbb2
    extension.inc
    $HTTP_GET_VARS=$_GET; $ HTTP_GET_VARSの= $ _GET ;の
    $HTTP_POST_VARS=$_POST; $ HTTP_POST_VARSを= $ _POST ;の
    $HTTP_COOKIE_VARS=$_COOKIE; $ HTTP_COOKIE_VARSを= $ _COOKIE ;の
    that’s all… works now fine with php5それは今すぐ罰金をPHP5の作品のすべての…

  7. spycrasher
    July 15th, 2008 19:18 2008年7月15日19:18
    7

    Hi everybodyこんにちは皆

    Just trapped on a little tool to slice website images.閉じ込められたのツールを少しだけスライスのウェブサイト上の画像です。
    Quick in preparing ready html from simple single-image site design.クイックの準備の準備のHTMLサイトのデザインをよりシンプルなシングルのイメージです。
    Program is rather crappy and cheap (especially comparing to similar function in PhotoShop).プログラムはかなりくだらない、格安(同様の機能を比較し、特にPhotoshopの)です。
    But there is a trick!しかしには、トリック! Just look what books come as a bonus:どのような書籍を探す来るだけのボーナス:

    Search Engine Optimization: An Hour a Day検索エンジン最適化:一日一時間
    Web Design in a Nutshell, 3rd Editionウェブデザイン簡単に言えば、第3版
    Webmaster in a Nutshell, 3rd Editionウェブマスター簡単に言えば、第3版
    etc…モニュメント等…

    I wonder how $270 priced books can be sold for just 20 dollars…書籍のかしらはどのよう$ 270価格はわずか20ドルで販売されて…
    Anyway here’s link:とにかく、ここのリンク: http://www.sliceimage.com/

    Hope these books will help you as well.これらの書籍の期待に役立つことができるでしょう。

    Regards,よろしく、
    Markマーク

Leave a Reply残して返信

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> これらのタグを使用することができます: <aのhref=のtitle= <abbrのtitle= <blockquote cite=""> <cite> <acronymのtitle= <b>ダウンロードの<code> <デル日時= " " >の<em> <i>て<strike> <strong> <q cite="">

Subscribe without commenting登録なしのコメント


Custom Search

New Articles新しい記事

Incoming Search Terms for the Article検索用語を受信するには

tvants porn テレビの蟻ポルノ - - phpBB2 php5 phpbb2 PHP5の - - phpbb php5 phpBBのPHP5の - - tvants porno テレビの蟻ポルノ - - phpbb and php5 phpBBのとPHP5 - - phpbb 2 php 5 phpBBの2 PHP 5へ - - Porn on TV ANTS ポルノをテレビアリ - - phpbb 2 php5 phpBBの2 PHP5の - - tv ants porn テレビアリポルノ - - php5 phpbb2 PHP5のphpbb2 - - porn tvants ポルノテレビの蟻 - - phpbb submit_post phpBBのsubmit_post - - phpbb blank page phpBBの空白のページ - - phpbb blank page php5 PHP5のphpBBの空白のページ - - phpbb Porn phpBBのポルノ - - porn on tvants ポルノをテレビの蟻 - - tvants server porn テレビの蟻サーバーポルノ - - phpbb2 and php5 phpbb2とPHP5 - - phpbb and php 5 phpBBのおよびPHP 5 - - phpbb2 with php5 phpbb2とPHP5の - - phpbb with php5 phpBBのおPHP5の - - porn servers for tvants ポルノのサーバーをテレビの蟻 - - "tvants server" porn "テレビの蟻サーバ"ポルノ - - blank page PHPBB2 空白のページphpbb2 - - apache2 php5 empty page phpbb2 apache2のPHP5の空のページphpbb2 - - phpbb+php5 phpBBの+ PHP5の - - phpbb2 turk phpbb2ターク - - tvants server porno テレビの蟻サーバーポルノ - - "tvants" +porn "テレビの蟻" +ポルノ - - php5 phpbb PHP5のphpBBの - - phpbb2 php5 hack phpbb2 PHP5のハック - - phpbb submit_post function phpBBの機能submit_post - - porn tv ants ポルノテレビアリ - - running phpbb2 with PHP5 PHP5の実行中にphpbb2 - - phpbb na php5 phpBBのなPHP5の - - phpbb 2. phpBBの2 。 .22 on php 5 .22上のPHP 5 - - phpbb2. phpbb2です。 php 5 PHP 5へ - - php5 work with chinese PHP5の仕事を中国語 - - phpbb2 php 5 phpbb2 PHP 5へ - - porn servers on tvants サーバー上のポルノテレビの蟻 - - $HTTP_POST_VARS php5 convert to $_POST $ HTTP_POST_VARSをPHP5のに変換する$ _post - - phpbb2 search not working phpbb2検索が機能しない - - porn phpbb ポルノのphpBB - - tvants porno テレビの蟻ポルノ - - phpbb2 php5 blank screen PHP5の空白の画面phpbb2 - - phpbb2 + php5 phpbb2 + PHP5の - - phpbb blank phpBBの空白 - - site not working with php5 サイトの特定作業をPHP5の - - danish letters in phpbb phpBBにデンマーク語の手紙 - - phpbb2 working with php5 PHP5の作業をphpbb2 - -