Comments on: [ FSyncMS ] Version 0.13 – Database upgrade https://www.ohnekontur.de/2013/07/05/fsyncms-version-0-13-database-upgrade/ ohne Linien und Kanten und trotzdem gefangen Fri, 28 Nov 2014 09:52:58 +0000 hourly 1 https://wordpress.org/?v=6.4.5 By: admin https://www.ohnekontur.de/2013/07/05/fsyncms-version-0-13-database-upgrade/comment-page-1/#comment-6179 Wed, 25 Sep 2013 12:24:44 +0000 http://www.ohnekontur.de/?p=2299#comment-6179 In reply to Thomas.

This should be done in settings.php which is created during Setup (setup.php)

]]>
By: admin https://www.ohnekontur.de/2013/07/05/fsyncms-version-0-13-database-upgrade/comment-page-1/#comment-6178 Wed, 25 Sep 2013 12:22:50 +0000 http://www.ohnekontur.de/?p=2299#comment-6178 In reply to mario.

Also zu erst einmal gibt es garkein Benutzername/Passwort problem, sondern nur leute die ganz ganz komische Konfigs haben.
Was das .htaccess tut von dem du sprichst ist Username/Passwort auf die Variablen zu legen auf denen sie standartmäßig liegen.

Unter Nginx ist klar das .httaccess nicht funktioniert !

Muss es aber eigentlich auch garnicht,
ich verwende selber einen nginx und der setzte die Environements für die PHP scripte von alleine komplett passend.
An deiner Stelle würde ich erstmal schauen ob das vorliegende Problem tatsächlich an der Übermittlung von Username / Passwort oder nicht vielleicht an problemen mit der db oder ähnlichem liegt.

]]>
By: mario https://www.ohnekontur.de/2013/07/05/fsyncms-version-0-13-database-upgrade/comment-page-1/#comment-6177 Wed, 25 Sep 2013 12:00:00 +0000 http://www.ohnekontur.de/?p=2299#comment-6177 hi,

auf github gibt es workarounds für das benutzername/passwort problem, gibts da auch was für nginx? hatte ja früher auch immer apache, aber nun halt ngins und eben das selbe problem mit dem sync server wie auf github beschrieben.

und wie immer, danke für die super arbeit

]]>
By: Thomas https://www.ohnekontur.de/2013/07/05/fsyncms-version-0-13-database-upgrade/comment-page-1/#comment-5810 Fri, 06 Sep 2013 18:34:34 +0000 http://www.ohnekontur.de/?p=2299#comment-5810 Oh, and it seems one has to specify

define("SQLITE_FILE", "weave_db");

or similar – this is not optional, it will try to access a file named ‘SQLITE_FILE’ otherwise, and fail.

]]>
By: Thomas https://www.ohnekontur.de/2013/07/05/fsyncms-version-0-13-database-upgrade/comment-page-1/#comment-5808 Fri, 06 Sep 2013 18:23:38 +0000 http://www.ohnekontur.de/?p=2299#comment-5808 SQLite does only support a subset of ALTER TABLE.

This sequence should work:

$ cp -av weave_db weave_db.orig
$ sqlite3 weave_db
sqlite> begin transaction;
sqlite> create temporary table users_backup(username varchar(255), md5 varchar(64), primary key (username));
sqlite> insert into users_backup select username, md5 from users;
sqlite> drop table users;
sqlite> create table users (username varchar(255), md5 varchar(124), primary key (username));
sqlite> insert into users select username, md5 from users_backup;
sqlite> drop table users_backup;
sqlite> commit;

]]>
By: S0M30N3 https://www.ohnekontur.de/2013/07/05/fsyncms-version-0-13-database-upgrade/comment-page-1/#comment-5130 Sun, 11 Aug 2013 20:32:46 +0000 http://www.ohnekontur.de/?p=2299#comment-5130 > After adapting the DB, you may enable bcrypt by adding […] to your config.php

must be settings.php

]]>