Foros del Web » Programación para mayores de 30 ;) » Bases de Datos General »

Problema Mysql instalando joomla, ayuda!

Estas en el tema de Problema Mysql instalando joomla, ayuda! en el foro de Bases de Datos General en Foros del Web. Hola, tengo un problema, yo no entiendo mucho de esto, tal vez sea facil. Tengo instalado el xampp que conecta bien, cuando trato de instalar ...
  #1 (permalink)  
Antiguo 08/03/2011, 09:35
 
Fecha de Ingreso: marzo-2011
Mensajes: 4
Antigüedad: 13 años, 1 mes
Puntos: 0
Problema Mysql instalando joomla, ayuda!

Hola, tengo un problema, yo no entiendo mucho de esto, tal vez sea facil. Tengo instalado el xampp que conecta bien, cuando trato de instalar el joomla no tengo problema hasta que llega la base de datos, la creo en mysql, parece no dar problema, ahora cuando estoy en la instalacion del joomla me sale lo siguiente:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MyISAM CHARACTER SET `utf8`' at line 29 SQL=CREATE TABLE `jom_banner` ( `bid` int(11) NOT NULL auto_increment, `cid` int(11) NOT NULL default '0', `type` varchar(30) NOT NULL default 'banner', `name` varchar(255) NOT NULL default '', `alias` varchar(255) NOT NULL default '', `imptotal` int(11) NOT NULL default '0', `impmade` int(11) NOT NULL default '0', `clicks` int(11) NOT NULL default '0', `imageurl` varchar(100) NOT NULL default '', `clickurl` varchar(200) NOT NULL default '', `date` datetime default NULL, `showBanner` tinyint(1) NOT NULL default '0', `checked_out` tinyint(1) NOT NULL default '0', `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00', `editor` varchar(50) default NULL, `custombannercode` text, `catid` INTEGER UNSIGNED NOT NULL DEFAULT 0, `description` TEXT NOT NULL DEFAULT '', `sticky` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0, `ordering` INTEGER NOT NULL DEFAULT 0, `publish_up` datetime NOT NULL default '0000-00-00 00:00:00', `publish_down` datetime NOT NULL default '0000-00-00 00:00:00', `tags` TEXT NOT NULL DEFAULT '', `params` TEXT NOT NULL DEFAULT '', PRIMARY KEY (`bid`), KEY `viewbanner` (`showBanner`), INDEX `idx_banner_catid`(`catid`) ) TYPE=MyISAM CHARACTER SET `utf8`
alguien me puede decir que es lo que tengo que hacer?!?!?!
gracias espero respuesta urgente!!!!!!!!
  #2 (permalink)  
Antiguo 08/03/2011, 11:58
Avatar de gnzsoloyo
Moderador criollo
 
Fecha de Ingreso: noviembre-2007
Ubicación: Actualmente en Buenos Aires (el enemigo ancestral)
Mensajes: 23.324
Antigüedad: 16 años, 4 meses
Puntos: 2658
Respuesta: Problema Mysql instalando joomla, ayuda!

En realidad es simple: El error es el Nro 1101: BLOB/TEXT column 'description' can't have a default value.
Esto sginifica: Una columna BLOB o TEXT no puede tener valor por defecto.

Otro detalle es que la cláusula TYPE ya no existe. Fue reemplazada por ENGINE:

Código MySQL:
Ver original
  1. DROP TABLE IF EXISTS `jom_banner`;
  2. CREATE TABLE IF NOT EXISTS `jom_banner`
  3.   (`bid` int(11) NOT NULL auto_increment,
  4.   `cid` int(11) NOT NULL default '0',
  5.   `type` varchar(30) NOT NULL default 'banner',
  6.   `name` varchar(255) NOT NULL default '',
  7.   `alias` varchar(255) NOT NULL default '',
  8.   `imptotal` int(11) NOT NULL default '0',
  9.   `impmade` int(11) NOT NULL default '0',
  10.   `clicks` int(11) NOT NULL default '0',
  11.   `imageurl` varchar(100) NOT NULL default '',
  12.   `clickurl` varchar(200) NOT NULL default '',
  13.   `date` datetime default NULL,
  14.   `showBanner` tinyint(1) NOT NULL default '0',
  15.   `checked_out` tinyint(1) NOT NULL default '0',
  16.   `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  17.   `editor` varchar(50) default NULL,
  18.   `custombannercode` text,
  19.   `description` TEXT NOT NULL,
  20.   `sticky` TINYINT(1) UNSIGNED NOT NULL DEFAULT 0,
  21.   `ordering` INTEGER NOT NULL DEFAULT 0,
  22.   `publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
  23.   `publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
  24.   `tags` TEXT NOT NULL,
  25.   `params` TEXT NOT NULL,
  26.   PRIMARY KEY (`bid`),
  27.   KEY `viewbanner` (`showBanner`),
  28.   INDEX `idx_banner_catid`(`catid`)
  29.   ) ENGINE=MyISAM CHARACTER SET `utf8`;
__________________
¿A quién le enseñan sus aciertos?, si yo aprendo de mis errores constantemente...
"El problema es la interfase silla-teclado." (Gillermo Luque)
  #3 (permalink)  
Antiguo 08/03/2011, 13:25
 
Fecha de Ingreso: marzo-2011
Mensajes: 4
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Problema Mysql instalando joomla, ayuda!

bueno, eso ya lo cambie y siguio instalando correctamente, pero al final de la instalacion, cuando quise ir al home me salio esto que copio y pego y mucho mas:
Strict Standards: Non-static method JLoader::import() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\import.php on line 29

Strict Standards: Non-static method JLoader::register() should not be called statically in C:\xampp\htdocs\joomla\libraries\loader.php on line 71

Strict Standards: Non-static method JLoader::import() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\import.php on line 32

Strict Standards: Non-static method JLoader::register() should not be called statically in C:\xampp\htdocs\joomla\libraries\loader.php on line 71

Strict Standards: Non-static method JLoader::load() should not be called statically in C:\xampp\htdocs\joomla\libraries\loader.php on line 161

Strict Standards: Non-static method JLoader::register() should not be called statically in C:\xampp\htdocs\joomla\libraries\loader.php on line 138

Strict Standards: Non-static method JRequest::clean() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\import.php on line 33

Strict Standards: Non-static method JRequest::_cleanArray() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\environmen t\request.php on line 463

Strict Standards: Non-static method JRequest::_cleanArray() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\environmen t\request.php on line 464

Strict Standards: Non-static method JRequest::_cleanArray() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\environmen t\request.php on line 465

Strict Standards: Non-static method JRequest::_cleanArray() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\environmen t\request.php on line 466

Strict Standards: Non-static method JRequest::_cleanArray() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\environmen t\request.php on line 467

Strict Standards: Non-static method JRequest::_cleanArray() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\environmen t\request.php on line 468

Strict Standards: Non-static method JLoader::import() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\import.php on line 35

Strict Standards: Non-static method JLoader::register() should not be called statically in C:\xampp\htdocs\joomla\libraries\loader.php on line 71



Que es lo que he hecho mal?'?? cual es el error?? y por favor explicarme con detenimiento porque yo no entiendo nada!
  #4 (permalink)  
Antiguo 08/03/2011, 15:01
Avatar de gnzsoloyo
Moderador criollo
 
Fecha de Ingreso: noviembre-2007
Ubicación: Actualmente en Buenos Aires (el enemigo ancestral)
Mensajes: 23.324
Antigüedad: 16 años, 4 meses
Puntos: 2658
Respuesta: Problema Mysql instalando joomla, ayuda!

Esos ya son errores en el script de PHP, por lo que no son tema de este foro, sino al Foro de PHP. Postea el problema allá y ellos te ayudarán mejor y más rápido que aquí.
Aquí, a pesar de la insistencia de algunos usuarios, el tema no es programación, sino SQL (normas del foro).
__________________
¿A quién le enseñan sus aciertos?, si yo aprendo de mis errores constantemente...
"El problema es la interfase silla-teclado." (Gillermo Luque)
  #5 (permalink)  
Antiguo 09/03/2011, 04:37
 
Fecha de Ingreso: marzo-2011
Mensajes: 4
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Problema Mysql instalando joomla, ayuda!

bueno, gracias igualmente ya lo arregle, gracias por las respuestas
  #6 (permalink)  
Antiguo 15/03/2011, 23:41
 
Fecha de Ingreso: marzo-2011
Ubicación: argentina
Mensajes: 3
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Problema Mysql instalando joomla, ayuda!

como resolviste los errores en el script de php al instar joomla, a mi me salen los mismos errores. Podes ayudarme.
  #7 (permalink)  
Antiguo 16/03/2011, 05:13
Avatar de gnzsoloyo
Moderador criollo
 
Fecha de Ingreso: noviembre-2007
Ubicación: Actualmente en Buenos Aires (el enemigo ancestral)
Mensajes: 23.324
Antigüedad: 16 años, 4 meses
Puntos: 2658
Respuesta: Problema Mysql instalando joomla, ayuda!

Son problemas de Joomla y/o PHP. Pregunta en el foro de PHP.
__________________
¿A quién le enseñan sus aciertos?, si yo aprendo de mis errores constantemente...
"El problema es la interfase silla-teclado." (Gillermo Luque)
  #8 (permalink)  
Antiguo 19/03/2011, 06:58
 
Fecha de Ingreso: marzo-2011
Mensajes: 4
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Problema Mysql instalando joomla, ayuda!

Cita:
Iniciado por gnzsoloyo Ver Mensaje
Son problemas de Joomla y/o PHP. Pregunta en el foro de PHP.
hola, la verdad es que no me acuerdo, estuve toqueteando todo, no se mucho de programacion, solo toco, a veces rompo a veces arreglo, lo siento pero no puedo ayudarte, no se que hice!!!
  #9 (permalink)  
Antiguo 03/05/2011, 13:11
 
Fecha de Ingreso: enero-2010
Mensajes: 389
Antigüedad: 14 años, 3 meses
Puntos: 4
Respuesta: Problema Mysql instalando joomla, ayuda!

Cita:
Iniciado por maci1976 Ver Mensaje
bueno, eso ya lo cambie y siguio instalando correctamente, pero al final de la instalacion, cuando quise ir al home me salio esto que copio y pego y mucho mas:
Strict Standards: Non-static method JLoader::import() should not be called statically in C:\xampp\htdocs\joomla\libraries\joomla\import.php on line 29

Strict Standards: Non-static method JLoader::register() should not be called statically in C:\xampp\htdocs\joomla\libraries\loader.php on line 71
....


Que es lo que he hecho mal?'?? cual es el error?? y por favor explicarme con detenimiento porque yo no entiendo nada!
El primer error que comentas y este se debe a la incompatibilidad de versiones de MySQL y PHP respectivamente. Para solucionarlo, aunque sea algo chapucero, baja la versión de PHP de tu servidor local Error en la instalación de Joomla con XAMPP 1.7.4

Saludos ;)
  #10 (permalink)  
Antiguo 17/08/2011, 12:02
 
Fecha de Ingreso: agosto-2011
Mensajes: 1
Antigüedad: 12 años, 8 meses
Puntos: 0
Respuesta: Problema Mysql instalando joomla, ayuda!

Cita:
Iniciado por maci1976 Ver Mensaje
bueno, gracias igualmente ya lo arregle, gracias por las respuestas
hola quisiera saber como lo arreglaste llevo dias intentando solucionar ese problema. De antemano gracias!

Etiquetas: joomla, mysql, bases-de-datos
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 11:35.