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. आधिकारिक तौर पर, 2 phpBB (इस लेखन के रूप में, 2.0.17 संस्करण तक) 5 PHP का समर्थन नहीं है. If you install PHP 5, and use it to run phpBB, you will encounter the following symptoms and errors: यदि आप 5 PHP स्थापित है, और इसका इस्तेमाल करने 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. से 5 PHP सक्षम करने के लिए phpBB के साथ ठीक से काम, phpBB स्रोत कोड के लिए कुछ परिवर्तन की जरूरत किया जाना है. Just follow steps as below: बस के नीचे के रूप में चरणों का पालन करें:
OPEN खुली
admin/admin_ug_auth.php व्यवस्थापक admin_ug_auth.php /FIND FIND
if( $forum_access[$i][$auth_field] == AUTH_ACL && isset($change_acl_list[$forum_id][$auth_field]) ) अगर ($ forum_access [$ i] $ [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 [$ i] $ [auth_field] == 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 खुली
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 ($ मोड, और 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.phpFIND 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 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 : 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 स्थापित वेब Apache2, PHP5 और MySQL4 के साथ Windows XP में सर्वर - भाग 3
- Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 – Part 2 स्थापित वेब Apache2, PHP5 और MySQL4 के साथ Windows XP में सर्वर - भाग 2
- Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 – Part 1 स्थापित वेब Apache2, PHP5 और MySQL4 के साथ Windows XP में सर्वर - भाग 1
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working Paginating या भाजित WordPress पोस्ट या पृष्ठ NextPage के साथ WordPress में काम नहीं कर
- Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 – Part 4 स्थापित वेब Apache2, PHP5 और MySQL4 के साथ Windows XP में सर्वर - भाग 4
- ControlPad – Making use of Numeric Keypad to Execute Windows Commands ControlPad - चलाएँ Windows कमानों को संख्यात्मक कीपैड का उपयोग करना
- Google Phone (or GPhone) in the Making? गूगल फोन (या 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 AutoPlay / AutoRun काम नहीं कर रहे या Windows Vista में नहीं खोल गुम










































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. मैं और चैनल, एच.डी. टीवी प्यार, और एक 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 संयुक्त राष्ट्र के प्रति concorso
diventare una modella? diventare ऊना modella?
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 ... आइएमजी [] http://www.einfachpokern.de/smile.gif [आइएमजी /]
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? इस मंच में कैसे अगणित, धूती प्रयोक्ताओं के पीछे प्रगतिशील संदर्भ रहे हैं?
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. तुम्हें पता है, तुम बड़े प्रसारकों के चैनलों के माध्यम से जहां फ्लिप और टीवी शो और खेल खेल के रूप में देख रहे हैं वे 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 वेब संक्षेप, 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/ 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 php5 के साथ phpbb2 काम करने के लिए इस कोशिश
extension.inc 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 के साथ अब ठीक काम करता है
November 15th, 2007 22:28 15 नवम्बर 2007 22:28
download poker gratuito… डाउनलोड पोकर gratuito ...
Ogni software Poker casino poker… Ogni सॉफ्टवेयर पोकर कैसीनो पोकर ...
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 रसद" sucht नच Europa fuer में Mitarbeiter Arbeit im Logistikbereich मर जाते हैं. Interessanter Job mit guter Verdienstmoeglichkeit. Interessanter नौकरी एमआईटी guter Verdienstmoeglichkeit.
[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. लज्जा.