Moderators: jmacgreg, michael, John
tar xfz externalFeed.tar.gz -C plugins/generic/
php5 tools/dbXMLtoSQL.php -schema execute plugins/generic/externalFeed/schema.xml
rm externalFeed.tar.gz
tar xfz externalFeed.tar.gz -C plugins/generic/
rm externalFeed.tar.gz
michael wrote:Hi newone,
Can you please provide some additional details, in particular which version of OJS you are using and the error that you encountered?
Please note that if installing in OJS 2.3.x, you will need to save the plugin zip file using the provided filename in order to be able to use it via the Install Plugin feature.
Cheers,
Michael
Kaitlin wrote:Is there a way to install this plugin without using command line (which my web host doesn't allow).
CREATE TABLE `external_feeds` (
`feed_id` bigint(20) NOT NULL AUTO_INCREMENT,
`journal_id` bigint(20) NOT NULL,
`url` varchar(255) NOT NULL,
`seq` double NOT NULL DEFAULT '0',
`display_homepage` tinyint(4) NOT NULL DEFAULT '0',
`display_block` smallint(6) NOT NULL DEFAULT '0',
`limit_items` tinyint(4) DEFAULT '0',
`recent_items` smallint(6) DEFAULT NULL,
PRIMARY KEY (`feed_id`),
KEY `external_feeds_journal_id` (`journal_id`)
);
michael wrote:Hi Kaitlin,Kaitlin wrote:Is there a way to install this plugin without using command line (which my web host doesn't allow).
If you're running OJS 2.2.x, you can create the necessary plugin database table manually by executing the following in MySQL:
- Code: Select all
CREATE TABLE `external_feeds` (
`feed_id` bigint(20) NOT NULL AUTO_INCREMENT,
`journal_id` bigint(20) NOT NULL,
`url` varchar(255) NOT NULL,
`seq` double NOT NULL DEFAULT '0',
`display_homepage` tinyint(4) NOT NULL DEFAULT '0',
`display_block` smallint(6) NOT NULL DEFAULT '0',
`limit_items` tinyint(4) DEFAULT '0',
`recent_items` smallint(6) DEFAULT NULL,
PRIMARY KEY (`feed_id`),
KEY `external_feeds_journal_id` (`journal_id`)
);
Cheers,
Michael
CREATE TABLE external_feed_settings (
feed_id BIGINT NOT NULL,
locale VARCHAR(5) NOT NULL DEFAULT '',
setting_name VARCHAR(255) NOT NULL,
setting_value TEXT,
setting_type VARCHAR(6) NOT NULL
);gerbenzaagsma wrote: We find the teasers too long and would prefer a simple list of headers or only a small teaser.
thebigaym wrote:I'm interested in this plug-in. Would someone post URLs to OJS implementations using it so I can see how it looks?
Users browsing this forum: No registered users and 2 guests