- Posts: 9
- Thank you received: 0
The fix is to upgrade to SermonSpeaker 5.x and Joomla 3.x, which is better anyway.
Migrating and getting error on front end
But, I must have messed something up because now when I go into the options for sermon speaker everything is in one long list without any save, or close links.
Any thoughts of how to fix that?
Also, it looks like none of the recent sermons are showing up on the front end of the site. even when I sort by year. The only way I was able to get them to show up was to resave the articles and then they would start appearing.
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
The sermons which aren't showing up are likely to due missing or corrupt categories. Try using the batch function in the sermons list to assign a category to each sermon. And do the same for series and speakers as well.
Please Log in or Create an account to join the conversation.
When I upgrade Sermon Speaker to the latest version, or any version later than 4.5.4 It screws up the Options of sermon speaker. I tried turning on the error reporting but it wouldn't even show that when I went to the options.
Any thoughts?
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
Sometimes (depending on server setting) the errors don't show at all and are only logged into the server error log. Then you need to check that.
Likely, it's still an issue with the database somehow. Can you verify your database structure looks correct now?
Please Log in or Create an account to join the conversation.
here is what mine has:
DROP TABLE IF EXISTS `j33_sermon_speakers`;
CREATE TABLE IF NOT EXISTS `j33_sermon_speakers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`website` text,
`intro` text,
`bio` longtext,
`pic` text,
`state` tinyint(3) NOT NULL DEFAULT '0',
`ordering` int(11) NOT NULL DEFAULT '0',
`hits` int(11) NOT NULL DEFAULT '0',
`created_by` int(11) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`catid` int(11) NOT NULL,
`alias` varchar(255) NOT NULL,
`metakey` text NOT NULL,
`metadesc` text NOT NULL,
`home` tinyint(3) NOT NULL DEFAULT '0',
`checked_out` int(11) NOT NULL DEFAULT '0',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`language` char(7) NOT NULL DEFAULT '*',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=10022 ;
Thoughts of what I should do with this?
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
Please Log in or Create an account to join the conversation.