Página 1 de 1

Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 16:59
por zoby
El Mod me lo descargue de aquí
https://github.com/phpbb/customisation-db
Ya renombre el config.php, y fui al instalador, sin embargo ...
Imagen
Imagen
Imagen

Que puede estar mal ?¿

Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 18:01
por leviatan21
zoby escribió:Ya renombre el config.php,
No es cuestion de renombar el config, sino editarlo y hacer los cambios necesarios para que refleje los datos según tu ubicación del propio Titania y del foro.

Lee los archivos dentro de la carpeta titania/docs para saber como se configura sobre todo el Read Me.txt y Installation and Requirements.txt

Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 18:26
por zoby
El Titania/Config.php lo tengo bien configurado (Creo)

Código: Seleccionar todo

<?php
/**
*
* @package Titania
* @version $Id$
* @copyright (c) 2009 phpBB Customisation Database Team
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
*
* Customisation Database (Titania) Configuration File.
*/

/**
 * @ignore
 */
if (!defined('IN_TITANIA'))
{
	exit;
}

$config = array(
	/**
	* phpBB versions array
	*
	* @param array(
	*	(release branch) => array(
	*		'latest_revision' => (revision number)
	* 		'allow_uploads' => (allow submission of revisions for this version of phpBB?),
	*	),
	* ),
	*/
	'phpbb_versions' => array(
		'20'	=> array('latest_revision' => '23', 'name' => 'phpBB 2.0.x', 'allow_uploads' => false),
		'30'	=> array('latest_revision' => '8', 'name' => 'phpBB 3.0.x', 'allow_uploads' => true),
	),

	/**
	* Relative path to the phpBB installation.
	*
	* @param	string	$phpbb_root_path	Path relative from the titania root path.
	*/
	'phpbb_root_path' => '/../',

	/**
	* Relative path from the server root (generate_board_url(true))
	*
	* @param	string	Path to the phpBB folder
	*/
	'phpbb_script_path' => '/../',

	/**
	* Relative path from the server root (generate_board_url(true))
	*
	* @param	string	Path to the titania folder
	*/
	'titania_script_path' => '/../titania',

	/**
	* Prefix of the sql tables.  Not the prefix for the phpBB tables, prefix for the Titania tables only.
	* This MUST NOT be the same as the phpBB prefix!
	*
	* @param	string	$titania_table_prefix	Table prefix
	*/
	'table_prefix' => 'customisation_',

	/**
	* Path to the style demo board you would like styles to be installed on upon validation
	* (there is a checkbox option for styles to be installed on the demo board when approving)
	*
	* @param bool|string false to not use a style demo board, path to the board root
	*/
	'demo_style_path' => false,

	/**
	* Full URL to the demo style.  We will perform sprintf(demo_style_full, $style_id), so please write the url properly
	* Example (from phpbb.com) http://www.phpbb.com/styles/demo/3.0/?style_id=%s
	*
	* @param bool|string false to not use a style demo board
	*/
	'demo_style_url' => false,

	/**
	* Style Path (titania/style/ *path* /)
	*/
	'style' => 'default',

	/**
	* Team groups (members will get TITANIA_TEAMS_ACCESS)
	*/
	'team_groups' => array(5),

	/**
	* IDs of database forum
	*/
	'forum_mod_database'		=> 0,
	'forum_style_database'		=> 0,
	'forum_converter_database'	=> 0,

	/**
	* IDs of account used for topic/post release in database forum
	*/
	'forum_mod_robot'		=> 0,
	'forum_style_robot'		=> 0,
	'forum_converter_robot' => 0,

	/**
	* Show the support/discussion panel in each contribution to the public?
	*/
	'support_in_titania' => true,

	/**
	* If the type of post made is in this array we will increment their postcount as posts are made within titania
	*/
	'increment_postcount'	=> array(TITANIA_SUPPORT),

	/**
	* Note: There are still more configuration settings!
	*
	* This example file does not contain all the configuration settings because there are quite a few more trivial settings most probably will not worry about.
	*
	* To see the additiona settings available, please see includes/core/config.php
	*/
);
En Cuando a los requerimientos
Requirements:
phpBB 3.0.6+ Lo Cumplo
PHP 5.2+ (5.3+ if using Windows) lo cumplo
Mod Rewrite creo que lo cumplo
MultiViews must be disabled! no se si lo cumplo ...
For the Styles Demo board:
If not installing on the main board, it must be on the same server, on a different database, and with the same database prefix
as the main board uses (limitation of current code using table constants).

y para instalarlo me dice
How to install:
1. Get and install the latest version of phpBB
2. Copy the titania directory to the location you want on your server (will be refered to as titania/ from now on)
3. Make the files/ and store/ directories (and subdirectories) writable by the server
4. Copy titania/config.example.php to config.php; edit settings as required
5. Visit any page in titania/ in your browser and run the installer script (you will be redirected to it)
6. Done!
y todos esos pasos ya los he hecho

y en el Read Me no entiendo nada :?

Re: Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 18:41
por leviatan21
Me parece que todo los path están mal, pero todo depende de donde lo has instalado

Código: Seleccionar todo

	'phpbb_root_path' => '/../',
creo que debe ser :

Código: Seleccionar todo

	'phpbb_root_path' => '../',

Código: Seleccionar todo

	'phpbb_script_path' => '/../',
creo que debe ser :

Código: Seleccionar todo

	'phpbb_script_path' => '/',

Código: Seleccionar todo

	'titania_script_path' => '/../titania',
creo que debe ser :

Código: Seleccionar todo

	'titania_script_path' => 'titania/',

A todo esto, me pregunto : ¿ Para que quieres Titania ? ¿ Acaso eres autor de MODs o vas a distribuir phpBB, traducciones de phpBB, MODS o traducciones de MODs ?

Re: Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 19:15
por zoby
leviatan21 escribió:Me parece que todo los path están mal, pero todo depende de donde lo has instalado

Código: Seleccionar todo

	'phpbb_root_path' => '/../',
creo que debe ser :

Código: Seleccionar todo

	'phpbb_root_path' => '../',

Código: Seleccionar todo

	'phpbb_script_path' => '/../',
creo que debe ser :

Código: Seleccionar todo

	'phpbb_script_path' => '/',

Código: Seleccionar todo

	'titania_script_path' => '/../titania',
creo que debe ser :

Código: Seleccionar todo

	'titania_script_path' => 'titania/',
Muchas Gracias, ahora si conseguí instalarlo
leviatan21 escribió: A todo esto, me pregunto : ¿ Para que quieres Titania ? ¿ Acaso eres autor de MODs o vas a distribuir phpBB, traducciones de phpBB, MODS o traducciones de MODs ?
1- Para tener las ''descargas'' mas organizado
2- Hice un MOD, aunque necesita muchisimo desarollo, y quien sabe, a lo mejor llego hacer algun MOD importante, como los tuyos :D

Me Salen algunos errores al acceder al titania
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: Undefined variable: phpbb_root_path
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: Undefined variable: phpEx
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include(includes/abbcode.) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include(includes/abbcode.) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include() [function.include]: Failed opening 'includes/abbcode.' for inclusion (include_path='.')

Fatal error: Class 'abbcode' not found in /home/vol14/zobyhost.com/zoby_6743272/espartapsp.zobyhost.com/htdocs/includes/bbcode.php on line 29

Re: Ayuda a instalar el mod Titania  Tema Solucionado

Publicado: 04 Feb 2011, 19:26
por leviatan21
zoby escribió:1- Para tener las ''descargas'' mas organizado
2- Hice un MOD, aunque necesita muchisimo desarollo, y quien sabe, a lo mejor llego hacer algun MOD importante, como los tuyos :D
El problema con eso es que titania no es un administrador de descargas, sino algo muchísimo mas complejo, cada nueva inclusión se validan los archivos, el código contra la version de phpbb, si pasa esos chequeos, se someta a cola de aprobación y un administrador debe revisarlo y aprobarlo para que la descarga esté disponible.
Evitar todo eso, es difícil y no está documentado en ningún lugar y no se si existe alguien que pueda ayudar en eso 8-)

zoby escribió:Me Salen algunos errores al acceder al titania
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: Undefined variable: phpbb_root_path
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: Undefined variable: phpEx
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include(includes/abbcode.) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include(includes/abbcode.) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include() [function.include]: Failed opening 'includes/abbcode.' for inclusion (include_path='.')

Fatal error: Class 'abbcode' not found in /home/vol14/zobyhost.com/zoby_6743272/espartapsp.zobyhost.com/htdocs/includes/bbcode.php on line 29
Fácil de solucionar :
Abrir :

Código: Seleccionar todo

raíz/titania/includes/core/phpbb.php
Buscar :

Código: Seleccionar todo

		include(PHPBB_ROOT_PATH . 'includes/' . $file . '.' . PHP_EXT);
Antes, agregar :

Código: Seleccionar todo

		$phpbb_root_path = PHPBB_ROOT_PATH;
		$phpEx = PHP_EXT;

Re: Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 19:46
por zoby
leviatan21 escribió:
zoby escribió:1- Para tener las ''descargas'' mas organizado
2- Hice un MOD, aunque necesita muchisimo desarollo, y quien sabe, a lo mejor llego hacer algun MOD importante, como los tuyos :D
El problema con eso es que titania no es un administrador de descargas, sino algo muchísimo mas complejo, cada nueva inclusión se validan los archivos, el código contra la version de phpbb, si pasa esos chequeos, se someta a cola de aprobación y un administrador debe revisarlo y aprobarlo para que la descarga esté disponible.
Evitar todo eso, es difícil y no está documentado en ningún lugar y no se si existe alguien que pueda ayudar en eso 8-)

zoby escribió:Me Salen algunos errores al acceder al titania
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: Undefined variable: phpbb_root_path
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: Undefined variable: phpEx
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include(includes/abbcode.) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include(includes/abbcode.) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /includes/bbcode.php on line 22: include() [function.include]: Failed opening 'includes/abbcode.' for inclusion (include_path='.')

Fatal error: Class 'abbcode' not found in /home/vol14/zobyhost.com/zoby_6743272/espartapsp.zobyhost.com/htdocs/includes/bbcode.php on line 29
Fácil de solucionar :
Abrir :

Código: Seleccionar todo

raíz/titania/includes/core/phpbb.php
Buscar :

Código: Seleccionar todo

		include(PHPBB_ROOT_PATH . 'includes/' . $file . '.' . PHP_EXT);
Antes, agregar :

Código: Seleccionar todo

		$phpbb_root_path = PHPBB_ROOT_PATH;
		$phpEx = PHP_EXT;
Gracias, Ahora me sale esto
Error General
template->_tpl_load_file(): File ./styles/default/template/index_body.html does not exist or is empty

FILE:
LINE:
CALL: titania_msg_handler()

FILE: includes/functions_template.php
LINE: 63
CALL: trigger_error()

FILE: includes/template.php
LINE: 437
CALL: template_compile->_tpl_load_file()

FILE: includes/template.php
LINE: 224
CALL: template->_tpl_load()

FILE: titania/includes/core/phpbb.php
LINE: 273
CALL: template->display()

FILE: titania/includes/core/titania.php
LINE: 442
CALL: phpbb::page_footer()

FILE: titania/index.php
LINE: 385
CALL: titania::page_footer()
leviatan21 escribió: Evitar todo eso, es difícil y no está documentado en ningún lugar y no se si existe alguien que pueda ayudar en eso 8-)
Siempre existe alguien para todo, espero que no sea una exepción en esta ocasión :chulo:

Re: Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 19:57
por leviatan21
zoby escribió:Gracias, Ahora me sale esto
Error General
template->_tpl_load_file(): File ./styles/default/template/index_body.html does not exist or is empty
Mismo tipo de error que sucede en phpbb, al parecer los archivos del estilo no están en el servidor.

zoby escribió:
leviatan21 escribió:Evitar todo eso, es difícil y no está documentado en ningún lugar y no se si existe alguien que pueda ayudar en eso 8-)
Siempre existe alguien para todo, espero que no sea una exepción en esta ocasión :chulo:
El equipo que desarrolla Titania, no da soporte, porque no es una herramienta liberada, sólo es para "ellos" :evil:

Re: Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 20:11
por zoby
Bueno, ya solucione el error, y solo es para ''ellos'', para que ponen links de descargas ... :?:
Doy el tema como solucionado :D
Off Topic:
Los Bugs me siguen saliendo, seguimos en el tema de los bugs, por que del titania, tampoco son ...

Re: Ayuda a instalar el mod Titania

Publicado: 04 Feb 2011, 20:19
por leviatan21
zoby escribió:Bueno, ya solucione el error, y solo es para ''ellos'', para que ponen links de descargas ... :?:
Que yo sepa no es para que cualquiera lo descargue, sino para compartir el código entre los programadores GITHUB es una herramienta para que quieren pueden hacer sus aportes, pero no mas que eso