* Plugin Name: GLM Associate - OpenSearchServer Add-On
* Plugin URI: http://www.gaslightmedia.com/
* Description: Gaslight Media Members Database.
- * Version: 2.0.1
+ * Version: 2.0.2
* Author: Gaslight Media
* Author URI: http://www.gaslightmedia.com/
* License: GPL2
* so that we're sure the other add-ons see an up to date
* version from this plugin.
*/
-define('GLM_MEMBERS_SEARCH_PLUGIN_VERSION', '2.0.1');
+define('GLM_MEMBERS_SEARCH_PLUGIN_VERSION', '2.0.2');
define('GLM_MEMBERS_SEARCH_PLUGIN_DB_VERSION', '0.0.5');
// This is the minimum version of the GLM Members DB plugin require for this plugin.
1. Activate the plugin through the 'Plugins' menu in WordPress
== Changelog ==
+= 2.0.2 =
+
+* Updated create database script to correct version.
+
= 2.0.1 =
* Fixed missing selected URL filter (Search only...) when clicking "Previous" and "Next" results links.
+++ /dev/null
--- Gaslight Media Members Database - Search
--- File Created: 12/02/15 15:27:15
--- Database Version: 0.0.1
--- Database Creation Script
---
--- To permit each query below to be executed separately,
--- all queries must be separated by a line with four dashes
-
--- Search Management Settings
-CREATE TABLE {prefix}management (
- id INT NOT NULL AUTO_INCREMENT,
- server TINYTEXT NULL, -- OSS Search Server URL
- search_index TINYTEXT NULL, -- OSS Search Index to use (normally "Index_1")
- website TINYTEXT NULL, -- Hostname for the Website
- exclude_home_page BOOLEAN NULL, -- Flag to say whether to exclude home page from search results
- numb_rows SMALLINT NULL, -- Number of rows to show per page in results
- login TINYTEXT NULL, -- OSS API Login
- login_key TINYTEXT NULL, -- OSS API Login Key
- url_filters text NULL, -- URL filters that may be selected by user (one per line as "Title, {urlfilter}"
- PRIMARY KEY (id)
-);
-
-----
-
--- Set default package management entry
-INSERT INTO {prefix}management
- ( id, search_index, website, exclude_home_page, numb_rows, login, login_key )
- VALUES
- ( 1, 'Index_2', 'www.gaslightmedia.com', true, 20, 'WebsiteServices', '829800701e8440b67a78e3afbefa1049' )
-;
--- /dev/null
+-- Gaslight Media Members Database - Search
+-- File Created: 12/02/15 15:27:15
+-- Database Version: 0.0.1
+-- Database Creation Script
+--
+-- To permit each query below to be executed separately,
+-- all queries must be separated by a line with four dashes
+
+-- Search Management Settings
+CREATE TABLE {prefix}management (
+ id INT NOT NULL AUTO_INCREMENT,
+ server TINYTEXT NULL, -- OSS Search Server URL
+ search_index TINYTEXT NULL, -- OSS Search Index to use (normally "Index_1")
+ website TINYTEXT NULL, -- Hostname for the Website
+ exclude_home_page BOOLEAN NULL, -- Flag to say whether to exclude home page from search results
+ numb_rows SMALLINT NULL, -- Number of rows to show per page in results
+ login TINYTEXT NULL, -- OSS API Login
+ login_key TINYTEXT NULL, -- OSS API Login Key
+ url_filters text NULL, -- URL filters that may be selected by user (one per line as "Title, {urlfilter}"
+ PRIMARY KEY (id)
+);
+
+----
+
+-- Set default package management entry
+INSERT INTO {prefix}management
+ ( id, search_index, website, exclude_home_page, numb_rows, login, login_key )
+ VALUES
+ ( 1, 'Index_2', 'www.gaslightmedia.com', true, 20, 'WebsiteServices', '829800701e8440b67a78e3afbefa1049' )
+;