May
26

English:

If you are trying to upgrade your Forum from phpbb2 to phpbb3 and you get some mistakes stopping this upgrade, then it´s possible that your problem could be solved with this solution:

Edit this file: 

phpbb3/install/install_convert.php

Find:

<?php
/** 
*
* @package install
* @version $Id: install_convert.php,v 1.50 2007/07/16 01:06:34 davidmj Exp $
* @copyright (c) 2006 phpBB Group 
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/

/**
*/

 

After these lines add these ones:

@set_time_limit(40);
@ini_set(’memory_limit’, ‘256M’);
@ini_set(’upload_max_filesize’, ‘128M’);
@ini_set(’post_max_size’, ‘256M’);
@ini_set(’max_input_time’, ‘-1′);
@ini_set(’max_execution_time’, ‘-1′);
@ini_set(’expect.timeout’, ‘-1′);
@ini_set(’default_socket_timeout’, ‘-1′);

Then find:

var $batch_size = 4000;

And change it to:

var $batch_size = 6000;

 

That´s all. If you previously installed phpbb3 and now you are going to convert your forum from phpbb2 to phpbb3, then click on Convert and follow the steps.

If you have some doubts let me know and I will try to help you.

Regards.

 

 

Español:

Si estáis intentando actualizar vuestro Foro desde phpbb2 a phpbb3 y recibíis errores que paran esta actualización, entonces es posible que vuestro problema pueda ser arreglado con esta solución:

editad este archivo:

phpbb3/install/install_convert.php

Luego encontrad estas líneas:

<?php
/** 
*
* @package install
* @version $Id: install_convert.php,v 1.50 2007/07/16 01:06:34 davidmj Exp $
* @copyright (c) 2006 phpBB Group 
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/

/**
*/

Tras estas líneas añadir las siguientes:

@set_time_limit(40);
@ini_set(’memory_limit’, ‘256M’);
@ini_set(’upload_max_filesize’, ‘128M’);
@ini_set(’post_max_size’, ‘256M’);
@ini_set(’max_input_time’, ‘-1′);
@ini_set(’max_execution_time’, ‘-1′);
@ini_set(’expect.timeout’, ‘-1′);
@ini_set(’default_socket_timeout’, ‘-1′);

Luego encontrad esta línea:

var $batch_size = 4000;

y cambiadla por:

var $batch_size = 6000;

Eso es todo. Si habéis instalado previamente (botón install) vuestro Foro desde phpbb2 a phpbb3 y ahora lo que queréis es convertirlo a esta versión, entonces haced click en Convert y seguid los pasos.

Si tenéis dudas hacedmelas saber y os ayudaré en lo que pueda.

Saludos.

 

Share and Enjoy:
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google

Something to say?

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.