The first error was that (a paraphrase sorry I didn’t copy verbatim) it couldn’t find config.xml so I just deleted the config.xml that was preexisting.
Then I tried to edit an event and it said that the rows that get updtae in the following sql install weren’t present. So I went looking in your files and found the sql files:
I changed
--
-- Database updates for release 0.1.3b
--
INSERT IGNORE INTO `#__mxcalendar_config`(id,param,value)
VALUES
(55,'mxcCustomFieldTypes',''),
(56,'mxcEventDetailStateDateStamp','%b %e'),
(57,'mxcEventDetailStateTimeStamp','%I:%M %p'),
(58,'mxcEventDetailEndDateStamp','%b %e'),
(59,'mxcEventDetailEndTimeStamp','%I:%M %p'),
(60,'mxcEventMonthUrlClass','tt mxModal'),
(61,'mxcEventMonthUrlStyle','color:inherit;display:block;position:relative;padding:3px;'),
(62,'mxcMonthNoEventClass','mxcDayNoEvents')##
ALTER TABLE `#__mxcalendar_config` CHANGE `value` `value` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ##
ALTER TABLE `#__mxcalendar_events` ADD `customFields` TEXT NOT NULL##
To:
--
-- Database updates for release 0.1.3b
--
INSERT IGNORE INTO `yourtablenameprefix_mxcalendar_config`(id,param,value)
VALUES
(55,'mxcCustomFieldTypes',''),
(56,'mxcEventDetailStateDateStamp',''),
(57,'mxcEventDetailStateTimeStamp',''),
(58,'mxcEventDetailEndDateStamp',''),
(59,'mxcEventDetailEndTimeStamp','');
-- ALTER TABLE `yourtablenameprefix_mxcalendar_config` CHANGE `value` `value` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ;
-- ALTER TABLE `yourtablenameprefix_mxcalendar_events` ADD `customFields` TEXT NOT NULL;
You’ll notice that I added semicolons to the last three lines and hardrdcoded in my tableprefix name in three places...
I hope this helps.
-Noah