Nuevo calendario

Re: Nuevo calendario

de Tatiana Vizcaino -
Número de respuestas: 0
Hola
tengo un problema con el calendario
instalo el modulo de la siguiente manera
lo descomprimo en moodle/mod
despues copio lo que event/lang/en en mi carpeta lang
y me sale este error qu eesty haciendo mal
nstalando el módulo de tablas  
spacer.gif

event


(mysql): CREATE TABLE `mdl_event` ( `id` int(10) NOT NULL auto_increment, `module` int(10) NOT NULL default '0', `instance` int(10) NOT NULL default '0', `name` varchar(255) NOT NULL default '', `description` text, `course` int(10) NOT NULL default '1', `timestart` int(10) NOT NULL default '0', `duration` int(10) NOT NULL default '0', `calid` int(10) NOT NULL default '0', `timemodified` int(10) NOT NULL default '0', PRIMARY KEY (`id`)) TYPE=MyISAM COMMENT='for everything with a time associated to it'  
1050: Table 'mdl_event' already exists
         
   
 

Error


(mysql): /* * Description: * This file is used to create all tables used by WebCalendar and * initialize some of those tables with the required data. * * The comments in the table definitions will be parsed to * generate a document (in HTML) that describes these tables. * * History: * 21-Oct-2002 Added this file header and additional comments * below. *//* * Defines a WebCalendar user. */CREATE TABLE webcal_user ( /* the unique user login */ cal_login VARCHAR(25) NOT NULL, /* the user's password. (not used for http or ldap authentication) */ cal_passwd VARCHAR(32), /* user's last name */ cal_lastname VARCHAR(25), /* user's first name */ cal_firstname VARCHAR(25), /* is the user a WebCalendar administrator ('Y' = yes, 'N' = no) */ cal_is_admin CHAR(1) DEFAULT 'N', /* user's email address */ cal_email VARCHAR(75) NULL, PRIMARY KEY ( cal_login ))