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 OPEN
admin/admin_ug_auth.php admin / admin_ug_auth.phpFIND FIND
if( $forum_access[$i][$auth_field] == AUTH_ACL && isset($change_acl_list[$forum_id][$auth_field]) ) אם (auth_field $ forum_access [$ i] [$] == 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]) ) אם (auth_field $ forum_access [$ i] [$] == AUTH_ACL & & isset (change_acl_list [$ forum_id]))FIND 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 OPEN
includes/functions_post.php כולל / functions_post.phpFIND 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 פונקציה ($ mode, & $ post_data, & $ message, & $ meta, & $ forum_id, & $ topic_id, & $ post_id, & $ poll_id, & $ topic_type, & $ bbcode_on, html_on & $, & $ smilies_on, & post_subject $ attach_sig, & $ bbcode_uid, & $ post_username, & $, & $ 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 פונקציה ($ 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, poll_options $ post_message, poll_title $, & $, & $ poll_length)OPEN OPEN
includes/functions_search.php כולל / functions_search.phpFIND FIND
function clean_words($mode, &$entry, &$stopword_list, &$synonym_list) clean_words פונקציה ($ mode, & $ כניסה, stopword_list & $, & $ synonym_list)REPLACE WITH החלף
function clean_words($mode, $entry, &$stopword_list, &$synonym_list) clean_words פונקציה ($ mode, $ כניסה, stopword_list & $, & $ synonym_list)FIND FIND
function split_words(&$entry, $mode = 'post') split_words הפונקציה (הערך & $, $ mode = 'פוסט')REPLACE WITH החלף
function split_words($entry, $mode = 'post') split_words הפונקציה (הערך $, $ mode = 'פוסט')
For the above, the changes involved are some parameters have been stripped off the “&” sign. עבור לעיל, השינויים הם מעורבים כמה פרמטרים כבר הסיר את "&" סימן.
IMPORTANT : The page is machine translated and provided "as is" without warranty. חשוב: הדף מכונת תירגם מתפרסם "כמות שהוא" ללא אחריות. Machine translation may be difficult to understand. תרגום מכונה יכול להיות קשה להבין. Please refer to נא עיין original English article המאמר המקורי באנגלית whenever possible. בכל הזדמנות אפשרית.
Related Articles מאמרים קשורים
- Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 – Part 3 התקנת שרת אינטרנט במערכת Windows XP עם Apache2, PHP5 ו MySQL4 - חלק 3
- Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 – Part 2 התקנת שרת אינטרנט במערכת Windows XP עם Apache2, PHP5 ו MySQL4 - חלק 2
- Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 – Part 1 התקנת שרת אינטרנט במערכת Windows XP עם Apache2, PHP5 ו MySQL4 - חלק 1
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working Paginating או פיצול וורדפרס פוסט או עמוד עם NextPage ב-WordPress לא תקין
- Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 – Part 4 התקנת שרת אינטרנט במערכת Windows XP עם Apache2, PHP5 ו MySQL4 - חלק 4
- ControlPad – Making use of Numeric Keypad to Execute Windows Commands ControlPad - ביצוע של מספריים להשתמש Keypad לבצע פקודות של Windows
- Google Phone (or GPhone) in the Making? Google טל (או Gphone) של ביצוע?
- Fix Windows Vista Search Indexer Has Stopped Working with KB952093 לתקן את Windows Vista חיפוש Indexer הפסיק לפעול עם KB952093
- Making Easy Money While Surfing the Net להרוויח כסף קל בעת הגלישה ברשת
- AutoPlay/AutoRun Not Working or Missing Not Open in Windows Vista הפעלה אוטומטית / ההפעלה האוטומטית לא תקין או חסר לא פתח ב-Windows Vista










































November 13th, 2009 00:04 13 נובמבר 2009 00:04
im too hustling to discarded to the gym, anyone advance where i can purchase a excercise bike so i can work at home. im מדי לוחץ כדי נזרקו לחדר כושר, מראש לאף אחד איפה אני יכול לרכוש אופניים excercise כך אני יכול לעבוד בבית. As this is the worst product to purchase as it train all the body. כמו זה המוצר הגרוע ביותר לרכוש כפי הרכבת כל הגוף.
April 11th, 2009 14:01 11 אפריל 2009 14:01
I have been considering switching from TV to another service like satellite. הייתי שוקל מעבר מ טלוויזיה לשירות אחר כמו לווין. I know there at a lot of options out there and wanted some advice on what I should look for or purchase. אני יודע שיש ב הרבה אפשרויות שם בחוץ ורצה כמה עצות על מה אני צריך לחפש או רכישה. It's sad, but I am spending about 125 dollars a month on my tv service and I am getting less than 70 channels. זה עצוב, אבל אני מבלה על 125 דולר לחודש על שירות הטלוויזיה שלי אני מקבל פחות מ -70 ערוצים. I would love more channels, hd television, and a tivo/tv recording box. הייתי אוהב יותר ערוצים, טלוויזיה HD, TiVo ו / תיבת בהקלטת טלוויזיה. Any ideas or suggestions would be helpful. יש לך רעיונות או הצעות יהיה מועיל.
March 12th, 2009 03:16 12 מרס 2009 03:16
I'm new here! אני חדש כאן! looking forward to having a great time here! מצפה מבלה כאן נהדר!
December 16th, 2008 17:59 16 דצמבר 2008 17:59
ehi! Ehi!
qualcuno di voi conosce un concorso online per qualcuno di voi conosce un concorso מקוונים לכל
diventare una modella? modella una diventare?
December 3rd, 2008 09:20 3 דצמבר 2008 09:20
Hello everyone… שלום לכולם ...
iam pretty new to poker, mostly playing at home with friends. די חדש Iam על פוקר, בעיקר לשחק בבית עם חברים. now i also want to play online…so my question is. עכשיו אני גם רוצה לשחק באינטרנט ... אז השאלה שלי היא. where do you play onlne? איפה אתה משחק onlne? any hints you got for me, what should i look for? כל הרמזים לך בשבילי, מה אני צריך לחפש?
Greetings and thx to everyone… [img]http://www.einfachpokern.de/smile.gif[/img] ברכות thx לכולם ... [img] http://www.einfachpokern.de/smile.gif [/ img]
December 2nd, 2008 12:15 2 דצמבר 2008 12:15
Hi. הי. I on numerous occasions scan this forum. אני מספר רב של פעמים סריקה בפורום זה. This is the head culture undisputed to ask a ridiculous. זוהי תרבות הראש הבלתי מעורער לשאול מגוחך.
How numberless in this forum are references progressive behind, knavish users? כיצד אינספור בפורום זה הם הפניות פרוגרסיבי מאחור, משתמשים knavish?
Can I bank all the advice that there is? האם אני יכול הבנק כל העצות שיש?
October 5th, 2008 15:46 5 אוקטובר 2008 15:46
I got rid of my cable connection recently and went “internet only.” I know about those places like Hulu and such where you can watch pre-recorded TV shows. נפטרתי מזמן כבל חיבור שלי והלכתי "רק באינטרנט." אני יודע על המקומות האלה כמו Hulu ו כזה שבו אתה יכול לצפות מוקלט מראש תוכניות טלוויזיה. But I'm looking for a service where you can watch actual TV channels live as a replacement for cable. אבל אני מחפש שירות שבו תוכלו לצפות בערוצי טלוויזיה חיים בפועל כתחליף כבל. You know, where you can flip through channels of the big broadcasters and see TV shows and sports games as they're broadcasted. אתה יודע, שם תוכל לדפדף בערוצים של השידור גדול לראות תוכניות טלוויזיה ומשחקי ספורט כמו שהם השידור.
What do you guys think? מה אתם חושבים?
July 15th, 2008 19:18 15 יולי 2008 19:18
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 עיצוב In a Nutshell, 3rd Edition
Webmaster in a Nutshell, 3rd Edition למנהלי In a Nutshell, 3rd Edition
etc… וכו '...
I wonder how $270 priced books can be sold for just 20 dollars… אני תוהה כמה ספרים במחיר $ 270 אפשר למכור רק 20 דולר ...
Anyway here's link: בכל אופן הנה הקישור: http://www.sliceimage.com/ http://www.sliceimage.com/
Hope these books will help you as well. מקווה הספרים האלה יעזרו לך גם.
Regards, דרישת שלום,
Mark מארק
December 3rd, 2007 21:28 3 דצמבר 2007 21:28
try this for working phpbb2 with php5 נסו את זה לעבודה phpbb2 עם php5
extension.inc extension.inc
$HTTP_GET_VARS=$_GET; $ _GET = $ HTTP_GET_VARS;
$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
November 15th, 2007 22:28 15 נובמבר 2007 22:28
download poker gratuito… gratuito פוקר להוריד ...
Ogni software Poker casino poker… Ogni תוכנת פוקר Casino Poker ...
September 28th, 2007 02:40 28 ספטמבר 2007 02:40
Amerikanische Firma „ACG Logistics“ sucht nach Mitarbeiter in Europa fuer die Arbeit im Logistikbereich. Amerikanische Firma "ACG Logistics" sucht nach Mitarbeiter in Europa fuer die Arbeit im Logistikbereich. Interessanter Job mit guter Verdienstmoeglichkeit. Interessanter Verdienstmoeglichkeit איוב Guter MIT.
[b]Schicken Sie bitte Ihre Bewerbung an [b] Schicken Sie bitte Ihre Bewerbung info@acglogistics.biz info@acglogistics.biz [/b] [/ b]
August 31st, 2007 07:26 31 אוגוסט 2007 07:26
Hello שלום
G'night G'night
April 17th, 2007 16:03 17 אפריל 2007 16:03
I think, that is interesting for all. אני חושב, כי הוא מעניין לכל.
July 25th, 2006 03:15 25 יולי 2006 03:15
It doesn't work. זה לא עובד. Shame. בושה.