Making phpBB2 working with PHP5 Hacer phpBB2 trabajar con PHP5

Officially, phpBB 2 (as of this writing, up to version 2.0.17) is not supporting PHP 5. Oficialmente, phpBB 2 (a partir de este escrito, hasta la versión 2.0.17) no es apoyar a PHP 5. If you install PHP 5, and use it to run phpBB, you will encounter the following symptoms and errors: Si instala PHP 5, y el uso que se ejecute phpBB, te encontrarás los siguientes síntomas y errores:

  • 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. No se puede publicar el mensaje - Cuando usted desea publicar nuevo tema o responder a un tema, después de escribir su mensaje, al hacer clic en "Enviar", una página en blanco o fondo de escritorio o mensaje de error se muestra con la barra de direcciones muestra posting.php, en lugar de desplazamiento mensaje de confirmación.
  • 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. Usted no puede buscar - Cuando usted desea buscar oh, haga clic en "Buscar", no son los resultados de la búsqueda sido devueltos, negro o una página o pantalla, o mensaje de error se muestra.

To enable PHP 5 to work properly with phpBB, some changes to the phpBB source code needs to be done. Para habilitar PHP 5 para funcionar correctamente con phpBB, algunos cambios en el código fuente de phpBB que hay que hacer. Just follow steps as below: Siga los siguientes pasos que se indican más adelante:

OPEN
admin/admin_ug_auth.php admin / admin_ug_auth.php

FIND CONSULTE
if( $forum_access[$i][$auth_field] == AUTH_ACL && isset($change_acl_list[$forum_id][$auth_field]) ) if ($ forum_access [$ i] [$ auth_field] == AUTH_ACL & & isset ($ change_acl_list [$ forum_id] [$ auth_field]))

REPLACE WITH Sustituir por
if( $forum_access[$i][$auth_field] == AUTH_ACL && isset($change_acl_list[$forum_id]) ) if ($ forum_access [$ i] [$ auth_field] == AUTH_ACL & & isset ($ change_acl_list [$ forum_id]))

FIND CONSULTE
( !isset($auth_access[$forum_id][$auth_field]) && !empty($change_acl_list[$forum_id][$auth_field]) ) ) || (! Isset ($ auth_access [$ forum_id] [$ auth_field]) & &! Empty ($ change_acl_list [$ forum_id] [$ auth_field]))) | |

REPLACE WITH Sustituir por
( !isset($auth_access[$forum_id][$auth_field]) && empty($change_acl_list[$forum_id][$auth_field]) ) ) || (! Isset ($ auth_access [$ forum_id] [$ auth_field]) & & empty ($ 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: Por último, algunos cambios son necesarios a fin de que las funciones que se denomina con funciones como parámetros no son llamados "de referencia" con funciones:

OPEN
includes/functions_post.php includes / functions_post.php

FIND CONSULTE
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) función submit_post ($ mode, $ post_data &, & $ mensaje, & $ 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)

REPLACE WITH Sustituir por
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) función submit_post ($ mode, $ post_data &, & $ mensaje, & $ 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)

OPEN
includes/functions_search.php includes / functions_search.php

FIND CONSULTE
function clean_words($mode, &$entry, &$stopword_list, &$synonym_list) función clean_words ($ mode, & $ entrada, $ stopword_list &, & $ synonym_list)

REPLACE WITH Sustituir por
function clean_words($mode, $entry, &$stopword_list, &$synonym_list) función clean_words ($ modo, $ entrada, $ stopword_list &, & $ synonym_list)

FIND CONSULTE
function split_words(&$entry, $mode = ‘post’) función split_words (& $ entrada, $ mode = "post")

REPLACE WITH Sustituir por
function split_words($entry, $mode = ‘post’) función split_words ($ entrada, $ mode = "post")

For the above, the changes involved are some parameters have been stripped off the “&” sign. Por lo anterior, los cambios en cuestión son algunos parámetros se han desnudado frente a las "&" signo.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Se trata de una máquina que traduzca la página se proporciona "tal cual" sin garantía. Machine translation may be difficult to understand. La traducción automática puede resultar difícil de entender. Please refer to Por favor, consulte original English article artículo original Inglés whenever possible. siempre que sea posible.

Share and contribute or get technical support and help at Compartir y contribuir o recibir apoyo técnico y ayudar a My Digital Life Forums Mi vida digital Foros .



7 Responses to “Making phpBB2 working with PHP5” 7 Respuestas a "Hacer phpBB2 trabajar con PHP5"

  1. Alan
    July 25th, 2006 03:15 25 de julio, 2006 03:15
    1

    It doesn’t work. No funciona. Shame. Vergüenza.

  2. KenMarshall
    April 17th, 2007 16:03 17 de abril de 2007 16:03
    2

    I think, that is interesting for all. Creo que es interesante para todos.

  3. Test Prueba
    August 31st, 2007 07:26 31 de agosto de 2007 07:26
    3

    Hello Hola

    G’night G'night

  4. acghjwolhqa
    September 28th, 2007 02:40 28 de Septiembre de 2007 02:40
    4

    Amerikanische Firma „ACG Logistics“ sucht nach Mitarbeiter in Europa fuer die Arbeit im Logistikbereich. Amerikanische Firma "ACG Logística" sucht nach Mitarbeiter en Europa fuer die Arbeit im Logistikbereich. Interessanter Job mit guter Verdienstmoeglichkeit. Interessanter Empleo mit Guter Verdienstmoeglichkeit.

    [b]Schicken Sie bitte Ihre Bewerbung an [b] Schicken Sie bitte Ihre Bewerbung un info@acglogistics.biz [/b] [/ b]

  5. free poker download free poker gratis póquer descargar gratis poker
    November 15th, 2007 22:28 15 de noviembre de 2007 22:28
    5

    download poker gratuito… descargar poker gratuito…

    Ogni software Poker casino poker… Ogni software de Poker casino poker…

  6. rk RK
    December 3rd, 2007 21:28 3 de diciembre de 2007 21:28
    6

    try this for working phpbb2 with php5 para intentar este trabajo phpbb2 con php5
    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 eso es todo… ahora funciona correctamente con php5

  7. spycrasher
    July 15th, 2008 19:18 15 de Julio, 2008 19:18
    7

    Hi everybody Hola a todos

    Just trapped on a little tool to slice website images. Just atrapados en una pequeña herramienta para el tramo sitio web las imágenes.
    Quick in preparing ready html from simple single-image site design. Rápido en la preparación de listas html desde la simple imagen de un solo diseño del sitio.
    Program is rather crappy and cheap (especially comparing to similar function in PhotoShop). Programa es bastante crappy y barato (especialmente en comparación con similar función en PhotoShop).
    But there is a trick! Pero hay un truco! Just look what books come as a bonus: Miren lo que libros como premio:

    Search Engine Optimization: An Hour a Day Optimización de motores de búsqueda: una hora al día
    Web Design in a Nutshell, 3rd Edition Diseño Web en pocas palabras, 3 ª Edición
    Webmaster in a Nutshell, 3rd Edition Webmaster en pocas palabras, 3 ª Edición
    etc…

    I wonder how $270 priced books can be sold for just 20 dollars… Me pregunto cómo $ 270 libros a precios pueden venderse por sólo 20 dólares…
    Anyway here’s link: De todas formas aquí el link: http://www.sliceimage.com/

    Hope these books will help you as well. Esperamos que estos libros le ayudará también.

    Regards, Recuerdos,
    Mark

Leave a Reply Deja Responder

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> Puede usar estos tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe without commenting Suscribirse sin comentar


Custom Search

New Articles Nuevos Artículos

Incoming Search Terms for the Article Próximos Términos de búsqueda para el artículo

tvants porn tvants porno - -- phpBB2 php5 phpBB2 PHP5 - -- phpbb php5 phpBB PHP5 - -- tvants porno tvants porno - -- phpbb and php5 phpBB y PHP5 - -- phpbb 2 php 5 phpBB 2 PHP 5 - -- Porn on TV ANTS Porno en la televisión las hormigas - -- phpbb 2 php5 phpBB 2 PHP5 - -- tv ants porn TV hormigas porno - -- php5 phpbb2 PHP5 phpbb2 - -- porn tvants porno tvants - -- phpbb submit_post phpBB submit_post - -- phpbb blank page phpBB página en blanco - -- phpbb blank page php5 phpBB página en blanco PHP5 - -- phpbb Porn phpBB Porno - -- porn on tvants porno en tvants - -- tvants server porn tvants servidor porno - -- phpbb2 and php5 phpbb2 y PHP5 - -- phpbb and php 5 phpBB y PHP 5 - -- phpbb2 with php5 phpbb2 con PHP5 - -- phpbb with php5 phpBB con PHP5 - -- porn servers for tvants porno para servidores tvants - -- "tvants server" porn "tvants servidor" porno - -- P2P.Porno P2P.Porno - -- blank page PHPBB2 página en blanco PHPBB2 - -- apache2 php5 empty page phpbb2 apache2 php5 página vacía phpbb2 - -- phpbb+php5 phpBB + PHP5 - -- phpbb2 turk phpbb2 Turk - -- tvants server porno tvants servidor porno - -- "tvants" +porn "tvants" + porno - -- php5 phpbb PHP5 phpBB - -- phpbb2 php5 hack hack phpbb2 PHP5 - -- phpbb submit_post function phpBB submit_post función - -- porn tv ants TV porno hormigas - -- running phpbb2 with PHP5 phpbb2 corriendo con PHP5 - -- phpbb na php5 phpBB na PHP5 - -- phpbb 2. phpBB 2. .22 on php 5 .22 A PHP 5 - -- phpbb2. phpbb2. php 5 PHP 5 - -- php5 work with chinese PHP5 trabajar con China - -- phpbb2 php 5 phpbb2 PHP 5 - -- porn servers on tvants porn servidores en tvants - -- $HTTP_POST_VARS php5 convert to $_POST $ HTTP_POST_VARS php5 convertir a $ _POST - -- phpbb2 search not working phpbb2 búsqueda no funciona - -- porn phpbb phpBB porno - -- tvants porno tvants porno - -- phpbb2 php5 blank screen phpbb2 PHP5 pantalla en blanco - -- phpbb2 + php5 phpbb2 + PHP5 - -- phpbb blank phpBB en blanco - -- site not working with php5 sitio no funciona con PHP5 - -- danish letters in phpbb danés cartas en phpBB - --