Página 1 de 1

Problemas Con IM Portal 120

Publicado: 29 Ene 2007, 16:26
por Knshi
  • Dirección: www.usuarios.lycos.es/pnw
  • Servidor: lycos
  • Información de Versión: phpBB 2.0.22
  • MODs Instalados: EasyMod, IM Portal120 (sin utilización aun, mirar problema abajo).
  • Estilo empleado: Aphrodite
    Bien, el problema es con las tablas 'SQL', y al modificar 'page_header' de la carpeta 'includes'.
Empiezo por el problema de 'includes'. No se si es porque no está la tabla SQL puesta, o cualquier otra causa, pero no me deja hacer lo siguiente:

Código: Seleccionar todo

# 
#-----[ OPEN ]------------------------------------------ 
#

includes/page_header.php

# 
#-----[ FIND ]------------------------------------------ 
#

define('HEADER_INC', TRUE);

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#

//
// IM Portal http://www.integramod.com
//
if(!defined('PORTAL_INIT'))
{
	include($phpbb_root_path . 'includes/functions_portal.' . $phpEx);
	portal_config_init($portal_config);
	include_once($phpbb_root_path . 'includes/lite.'.$phpEx);
	$options = array(
		'cacheDir' => $phpbb_root_path . 'var_cache/',
		'fileLocking' => $portal_config['md_cache_file_locking'],
		'writeControl' => $portal_config['md_cache_write_control'],
		'readControl' => $portal_config['md_cache_read_control'],
		'readControlType' => $portal_config['md_cache_read_type'],
		'fileNameProtection' => $portal_config['md_cache_filename_protect'],
		'automaticSerialization' => $portal_config['md_cache_serialize']
	);
	$var_cache = new Cache_Lite($options);
	define('PORTAL_INIT', TRUE);
}
Al hacerlo, en el indice de mi foro, me aparece el siguiente error en el indice del foro:

Código: Seleccionar todo

phpBB : Critical Error 

Could not query portal config table

DEBUG MODE

SQL Error : 1146 Table 'pnw_es_db.phpbb_Kportal_config' doesn't exist

SELECT * FROM phpbb_Kportal_config

Line : 47
File : functions_portal.php 
Tengo fuctions portal.php correctamente puesto en el archivo 'includes'. Tambien he creado todas las tablas sql que me pide en el otro documento .txt, lo subí directamente, y al ver que me daba el error de sql en el indice del foro, lo volví a subir, pero nada.

A mi me queda, al poner lo que me pide el mod, el trozo modificado y lo que hay por arriba y por abajo de esta manera:

Código: Seleccionar todo

/***************************************************************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 ***************************************************************************/

if ( !defined('IN_PHPBB') )
{
	die("Hacking attempt");
}


define('HEADER_INC', TRUE);

if(!defined('PORTAL_INIT'))
{
	include($phpbb_root_path . 'includes/functions_portal.' . $phpEx);
	portal_config_init($portal_config);
	include_once($phpbb_root_path . 'includes/lite.'.$phpEx);
	$options = array(
		'cacheDir' => $phpbb_root_path . 'var_cache/',
		'fileLocking' => $portal_config['md_cache_file_locking'],
		'writeControl' => $portal_config['md_cache_write_control'],
		'readControl' => $portal_config['md_cache_read_control'],
		'readControlType' => $portal_config['md_cache_read_type'],
		'fileNameProtection' => $portal_config['md_cache_filename_protect'],
		'automaticSerialization' => $portal_config['md_cache_serialize']
	);
	$var_cache = new Cache_Lite($options);
	define('PORTAL_INIT', TRUE);
}


//
// gzip_compression
//
$do_gzip_compress = FALSE;
if ( $board_config['gzip_compress'] )
{
	$phpver = phpversion();

	$useragent = (isset($HTTP_SERVER_VARS['HTTP_USER_AGENT'])) ? $HTTP_SERVER_VARS['HTTP_USER_AGENT'] : getenv('HTTP_USER_AGENT');

	if ( $phpver >= '4.0.4pl1' && ( strstr($useragent,'compatible') || strstr($useragent,'Gecko') ) )
	{


Pero no solo ese es el error, sino que desde el ACP, en las opciones del portal, en cada una me aparecen errores, cada una con esto:

Blocks Management:

Código: Seleccionar todo

Warning: opendir(): SAFE MODE Restriction in effect. The script whose uid is 106103637 is not allowed to access /data/members/free/tripod/es/p/n/w/pnw/htdocs owned by uid 0 in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300

Warning: opendir(./../var_cache/): failed to open dir: No such file or directory in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300
Y:

Código: Seleccionar todo

Could not query layout table

DEBUG MODE

SQL Error : 1146 Table 'pnw_es_db.phpbb_Klayout' doesn't exist

SELECT lid, name FROM phpbb_Klayout ORDER BY lid

Line : 989
File : admin_blocks.php
Blocks Variable

Código: Seleccionar todo

phpBB : Critical Error 

Could not query blocks variables information

DEBUG MODE

SQL Error : 1146 Table 'pnw_es_db.phpbb_Kblock_variable' doesn't exist

SELECT * FROM phpbb_Kblock_variable ORDER BY block, bvid

Line : 338
File : admin_blocks_var.php 
Blocks Position Tag

Código: Seleccionar todo

Warning: opendir(): SAFE MODE Restriction in effect. The script whose uid is 106103637 is not allowed to access /data/members/free/tripod/es/p/n/w/pnw/htdocs owned by uid 0 in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300

Warning: opendir(./../var_cache/): failed to open dir: No such file or directory in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300

Warning: opendir(): SAFE MODE Restriction in effect. The script whose uid is 106103637 is not allowed to access /data/members/free/tripod/es/p/n/w/pnw/htdocs owned by uid 0 in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300

Warning: opendir(./../var_cache/): failed to open dir: No such file or directory in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300
phpBB : Critical Error 

Could not query layout information

DEBUG MODE

SQL Error : 1146 Table 'pnw_es_db.phpbb_Klayout' doesn't exist

SELECT lid, name FROM phpbb_Klayout

Line : 261
File : admin_blocks_pos.php 
Delete Caches Files

Aquí me funciona todo correctamente, excepto un error que vuelve a aparecer, pero funcionar, funciona:

Código: Seleccionar todo

Warning: opendir(): SAFE MODE Restriction in effect. The script whose uid is 106103637 is not allowed to access /data/members/free/tripod/es/p/n/w/pnw/htdocs owned by uid 0 in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300

Warning: opendir(./../var_cache/): failed to open dir: No such file or directory in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300
Page Management

Código: Seleccionar todo

Warning: opendir(): SAFE MODE Restriction in effect. The script whose uid is 106103637 is not allowed to access /data/members/free/tripod/es/p/n/w/pnw/htdocs owned by uid 0 in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300

Warning: opendir(./../var_cache/): failed to open dir: No such file or directory in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300

Warning: opendir(): SAFE MODE Restriction in effect. The script whose uid is 106103637 is not allowed to access /data/members/free/tripod/es/p/n/w/pnw/htdocs owned by uid 0 in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300

Warning: opendir(./../var_cache/): failed to open dir: No such file or directory in /data/members/free/tripod/es/p/n/w/pnw/htdocs/includes/lite.php on line 300
phpBB : Critical Error 

Could not query portal config table

DEBUG MODE

SQL Error : 1146 Table 'pnw_es_db.phpbb_Kportal_config' doesn't exist

SELECT config_value FROM phpbb_Kportal_config WHERE config_name = 'default_portal'

Line : 81
File : admin_layout.php 
Portal Configuration

Código: Seleccionar todo

phpBB : Critical Error 

Could not query portal config information

DEBUG MODE

SQL Error : 1146 Table 'pnw_es_db.phpbb_Kblock_variable' doesn't exist

SELECT * FROM phpbb_Kblock_variable ORDER BY bvid

Line : 49
File : admin_portal.php 
Bien, esos son los errores que me da desde el ACP en cada una de las opciones del portal, al clickear en cada una, esos errores.

Espero que me puedan ayudar, se que el error puede ser dificil de solucionar, pero lo agradeceré ^^

Respuesta: Problemas Con IM Portal 120

Publicado: 29 Ene 2007, 18:42
por Nazcar
El error,bueno los dos errores no son nada difíciles,eso si informarte que hay un problema con tu copyright de phpbb.Phpbb en su copyright tal como puedes leer,pone claramente que como mínimo aparezca y claramente phpbb con un link a la web de phpbb.Hasta que no arregles eso,no se te puede dar ningún tipo de soporte.Eso si cuando lo tengas avisa a un moderador/administrador para que te abra el post y así poder darte soporte.

Respuesta: Problemas Con IM Portal 120

Publicado: 29 Ene 2007, 20:36
por Knshi
Venga va, post abierto ya, gracias de antemano por la ayuda ^^

Respuesta: Problemas Con IM Portal 120

Publicado: 30 Ene 2007, 19:34
por Nazcar
Tu bbdd se llama pnw_es_db tu prefijo es phpbb_ tienes las tablas llamadas Kportal_xxx en esa bbdd ? No lo creo.Pasemos al 2 error,ese mas grave que el 1 puesto que ese error es problema del mismo servidor,ese servidor esta funcionando con suexec habilitado,es un "programa" que trae el apache por defecto con el que solo se puede "ejecutar" ficheros si estos pertenecen a un propietario y/o grupo definido,y lo que indica ese error es que esos ficheros no pertenecen a ese propietario y/o grupo.Eso tiene mal arreglo puesto que no eres tu quien ha de hacerlo si no tu hosting.Ponte en contacto con ellos