Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.7.3 Query ends prematurely in install SQL file #1354

Closed
brianherbert opened this issue Apr 24, 2014 · 1 comment
Closed

2.7.3 Query ends prematurely in install SQL file #1354

brianherbert opened this issue Apr 24, 2014 · 1 comment

Comments

@brianherbert
Copy link
Contributor

https://github.com/ushahidi/Ushahidi_Web/blob/develop/sql/ushahidi.sql#L1403

Premature semicolon and duplicate primary key.

...
(64,'enable_timeline','0'),
(65,'feed_geolocation_user', '');
(65,'allow_feed_category', '0');

needs to be:

...
(64,'enable_timeline','0'),
(65,'feed_geolocation_user', ''),
(66,'allow_feed_category', '0');
@brianherbert
Copy link
Contributor Author

If you have attempted to install 2.7.3 after it was released and before this patch, go to mysql and run the following query:

INSERT INTO `settings` (`id`, `key`, `value`) VALUES (NULL, 'allow_feed_category', '0');

@aoduor aoduor closed this as completed in 41e66f1 Apr 24, 2014
aoduor added a commit that referenced this issue Apr 24, 2014
Closes #1354. Fix SQL Syntax breaking 2.7.3 installs
@srutto srutto added this to the v2.7.4 milestone Aug 5, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants