mysql schema typo, do the install check for store before chcking smarty, as that is where the dir is created, change install doc to point to install/schema_xxxxx.sql instead of database.sql

This commit is contained in:
friendica 2015-03-15 15:36:01 -07:00
parent cc2c7bbcd8
commit 6537a65053
4 changed files with 6 additions and 6 deletions

View File

@ -154,8 +154,8 @@ website.
If not, edit htconfig.php and change system settings. Rename
to .htconfig.php
- Database is populated.
If not, import the contents of "database.sql" with phpmyadmin
or mysql command line
If not, import the contents of "install/schema_xxxxx.sql" with phpmyadmin
or mysql command line (replace 'xxxxx' with your DB type).
7. At this point visit your website again, and register your personal account.
Registration errors should all be recoverable automatically.

View File

@ -34,7 +34,7 @@ CREATE TABLE IF NOT EXISTS `abook` (
KEY `abook_dob` (`abook_dob`),
KEY `abook_connected` (`abook_connected`),
KEY `abook_rating` (`abook_rating`),
KEY `abook_channel_closeness` (`book_channel`,`abook_closeness`)
KEY `abook_channel_closeness` (`abook_channel`,`abook_closeness`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------

View File

@ -233,10 +233,10 @@ function setup_content(&$a) {
check_htconfig($checks);
check_smarty3($checks);
check_store($checks);
check_smarty3($checks);
check_keys($checks);
if(x($_POST,'phpath'))

View File

@ -1 +1 @@
2015-03-14.971
2015-03-15.972