Making phpBB2 working with PHP5 phpbb2 일하는 만들기 php5

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. 를 게시하실 수없습니다 메시지 - 새 항목을 게시하려는 경우 또는 답장을 화제, 후에 귀하의 메시지 쓰기를 클릭하면 "제출", 빈 페이지 또는 화면 또는 오류 메시지가 표시 주소 표시줄에 표시된 posting.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. 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

    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 arbeit 메신저의 유럽 fuer 죽는 logistikbereich합니다. Interessanter Job mit guter Verdienstmoeglichkeit. interessanter 직업 mit guter verdienstmoeglichkeit합니다.

    [b]Schicken Sie bitte Ihre Bewerbung an [b] schicken 곳의 놀래라 ihre bewerbung an 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… 다운로드 포커 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=""> <acronym title=""> <abbr title=""> <blockquote cite=""> <b> <cite> <code> <델 날짜 = ""> <em> <i> <strike> '<q cite="">

Subscribe without commenting 논평없이 구독 신청
이메일


Custom Search

New Articles 새로운 기사

Incoming Search Terms for the Article 이 문서에 대한 검색어를 수신

tvants porn 포르노 tvants - - phpBB2 php5 phpbb2 php5 - - phpbb php5 phpbb php5 - - tvants porno 포르노 tvants - - porn tvants 포르노 tvants - - phpbb and php5 phpbb와 php5 - - phpbb 2 php5 phpbb 2 php5 - - phpbb 2 php 5 phpbb이 php 5 - - Porn on TV ANTS 포르노 티비 개미 - - tv ants porn 텔레비젼 개미 포르노 - - php5 phpbb2 php5 phpbb2 - - porn on tvants 포르노에 tvants - - phpbb submit_post phpbb submit_post - - phpbb blank page phpbb 빈 페이지가 - - phpbb blank page php5 빈 페이지가 php5 phpbb - - phpbb Porn phpbb 포르노 - - tvants server porn 포르노 tvants 서버 - - 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 - - "tvants server" porn "tvants 서버"포르노 - - phpbb2 phpbb2 - - P2P.Porno p2p.porno - - blank page PHPBB2 빈 페이지가 phpbb2 - - apache2 php5 empty page phpbb2 apache2 php5 빈 페이지 phpbb2 - - phpbb+php5 phpbb + php5 - - phpbb2 turk 터키 phpbb2 - - tvants server porno 서버 음란 tvants - - "tvants" +porn "tvants"+ 포르노 - - php5 phpbb php5 phpbb - - phpbb2 php5 hack 해킹 phpbb2 php5 - - phpbb submit_post function submit_post 기능을 phpbb - - porn tv ants 포르노 텔레비젼 개미 - - running phpbb2 with PHP5 phpbb2를 실행하는 php5 - - phpbb na php5 phpbb na php5 - - phpbb 2. phpbb 2. .22 on php 5 0.22를 삽입 5 - - phpbb2. phpbb2합니다. php 5 php 5 - - php5 work with chinese php5 일 중국 - - phpbb2 php 5 phpbb2 php 5 - - porn servers on tvants 포르노 서버에 tvants - - $HTTP_POST_VARS php5 convert to $_POST $ HTTP_POST_VARS를 php5로 변환을 $ _post - - phpbb2 search not working 작동하지 않는 phpbb2 검색 - - porn phpbb 포르노 phpbb - - tvants porno 포르노 tvants - - phpbb2 php5 blank screen 빈 화면 phpbb2 php5 - - phpbb2 + php5 phpbb2 + php5 - - phpbb blank phpbb 빈 - - site not working with php5 사이트가 작동하지 않습니다 php5 - -