• Dev
  • Can't manage to install the development version: 503 Service Unavailable

I am trying to get the latest GIT changes so I can test them and this is how I change from beta to the dev version:

  1. I run composer create-project flarum/flarum forum/ --stability=dev
  2. In composer.json I change version to "dev-master as 0.1.0-beta.4" for core and extensions
  3. Run cd forum and ( cd vendor/flarum/core && ./scripts/compile.sh )
  4. Then I compile every extension with a command like this:

    for extension in akismet approval auth-facebook auth-github auth-twitter bbcode emoji english flags likes lock markdown mentions pusher sticky subscriptions suspend tags; do
        cd extensions/flarum-$extension
        bash scripts/compile.sh
        cd ../../
    done
  1. I install vagrant box and create database
  2. Open flarum.dev and see installer
  3. Input all the required data and click on the button. After installation I get 503 Service Unavailable error

What am I doing wrong? What I see is that all tables are empty after installation. Shouldn't there be some settings or basic data stored in them?
Also, are there any logs or some ways to display the real error behind this?

Additional Info
So, the error is triggered from file /vendor/flarum/core/src/Forum/Server.php at line 51.

if (! $app->isInstalled()) {
        $app->register('Flarum\Install\InstallServiceProvider');

        $pipe->pipe($path, $app->make('Flarum\Http\Middleware\StartSession'));
        $pipe->pipe($path, $app->make('Flarum\Http\Middleware\DispatchRoute', ['routes' => $app->make('flarum.install.routes')]));
        $pipe->pipe($path, new HandleErrors($errorDir, true));
    } elseif ($app->isUpToDate() && ! $app->isDownForMaintenance()) {
        $pipe->pipe($path, $app->make('Flarum\Http\Middleware\ParseJsonBody'));
        $pipe->pipe($path, $app->make('Flarum\Http\Middleware\StartSession'));
        $pipe->pipe($path, $app->make('Flarum\Http\Middleware\RememberFromCookie'));
        $pipe->pipe($path, $app->make('Flarum\Http\Middleware\AuthenticateWithSession'));
        $pipe->pipe($path, $app->make('Flarum\Http\Middleware\SetLocale'));

        event(new ConfigureMiddleware($pipe, $path, $this));

        $pipe->pipe($path, $app->make('Flarum\Http\Middleware\DispatchRoute', ['routes' => $app->make('flarum.forum.routes')]));
        $pipe->pipe($path, new HandleErrors($errorDir, $app->inDebugMode()));
    } else {
        // Here is where the error response is generated
        $pipe->pipe($path, function () use ($errorDir) {
            return new HtmlResponse(file_get_contents($errorDir.'/503.html', 503));
        });
    }

Like I said, after the installation I can see that the tables are created and the config.php file, too. The only problem is that $app->isUpToDate() returns false

If I go further, in vendor/flarum/core/src/Foundation/Application.php, at line 113 we have isUpToDate(), where $settings->get('version') returns null

Apparently, the installation failed somehow. Can you try again, but this time run the installation by running php flarum install in the console? (You need to delete all database tables before you try that.)

    I'm glad it did. 😉

    It's still strange, though. I said this hoping that it would show a clearer error message (because apparently the installation failed). But I'm guessing you didn't see any error message?

      Franz but not for a long time. Did it again and this is what I get

      PHP Fatal error: Call to a member function until() on null in /vagrant/vendor/flarum/core/src/Database/AbstractModel.php on line 125
      PHP Stack trace:
      PHP 1. {main}() /vagrant/flarum:0
      PHP 2. Flarum\Console\Server->listen() /vagrant/flarum:18
      PHP 3. Symfony\Component\Console\Application->run() /vagrant/vendor/flarum/core/src/Console/Server.php:23
      PHP 4. Symfony\Component\Console\Application->doRun() /vagrant/vendor/symfony/console/Application.php:123
      PHP 5. Symfony\Component\Console\Application->doRunCommand() /vagrant/vendor/symfony/console/Application.php:192
      PHP 6. Symfony\Component\Console\Command\Command->run() /vagrant/vendor/symfony/console/Application.php:844
      PHP 7. Flarum\Console\Command\AbstractCommand->execute() /vagrant/vendor/symfony/console/Command/Command.php:259
      PHP 8. Flarum\Install\Console\InstallCommand->fire() /vagrant/vendor/flarum/core/src/Console/Command/AbstractCommand.php:37
      PHP 9. Flarum\Install\Console\InstallCommand->install() /vagrant/vendor/flarum/core/src/Install/Console/InstallCommand.php:93
      PHP 10. Flarum\Install\Console\InstallCommand->runMigrations() /vagrant/vendor/flarum/core/src/Install/Console/InstallCommand.php:164
      PHP 11. Flarum\Database\Migrator->run() /vagrant/vendor/flarum/core/src/Install/Console/InstallCommand.php:241
      PHP 12. Flarum\Database\Migrator->runMigrationList() /vagrant/vendor/flarum/core/src/Database/Migrator.php:92
      PHP 13. Flarum\Database\Migrator->runUp() /vagrant/vendor/flarum/core/src/Database/Migrator.php:117
      PHP 14. Flarum\Core\Migration\AddSlugToDiscussions->up() /vagrant/vendor/flarum/core/src/Database/Migrator.php:135
      PHP 15. Flarum\Core\Discussion::chunk() /vagrant/vendor/flarum/core/migrations/2016_02_04_095452_add_slug_to_discussions.php:32
      PHP 16. Illuminate\Database\Eloquent\Model::callStatic() /vagrant/vendor/flarum/core/migrations/2016_02_04_095452_add_slug_to_discussions.php:32
      PHP 17. call_user_func_array:{/vagrant/vendor/illuminate/database/Eloquent/Model.php:3513}() /vagrant/vendor/illuminate/database/Eloquent/Model.php:3513
      PHP 18. Flarum\Core\Discussion->chunk() /vagrant/vendor/illuminate/database/Eloquent/Model.php:3513
      PHP 19. Flarum\Database\AbstractModel->
      call() /vagrant/vendor/illuminate/database/Eloquent/Model.php:3513
      PHP 20. Flarum\Database\AbstractModel->getCustomRelation() /vagrant/vendor/flarum/core/src/Database/AbstractModel.php:181

      Is anybody able to run the dev version?

        I have installed dev version couple of time, this is what I do:

        clone Flarum into flarum folder

        git clone git@github.com:flarum/flarum.git flarum

        replace all ^0.1.0 with dev-master in composer.json

        cd flarum; sed -i -e 's/\^0\.1\.0/dev\-master/g' composer.json 

        run composer install

        composer install

        recompile the core javascripts

        bash vendor/flarum/core/scripts/compile.sh 

        recompile the extension javascripts with your own code

        for extension in akismet approval auth-facebook auth-github auth-twitter bbcode emoji english flags likes lock markdown mentions pusher sticky subscriptions suspend tags; do
            cd extensions/flarum-$extension
            bash scripts/compile.sh
            cd ../../
        done

        p.s. I don't use vagrant and I'm mac user, but I also tested it in ubuntu 14.04

          alexbnc Ah, yes, I encountered that error locally, too, yesterday. Just forgot to push the fix. Will do that in a second.

          sijad replace all 0.1.0 with dev-master in composer.json

          By the way, it's easier to change the minimum-stability from "beta" to "dev" instead. Scratch that, that will also affect other packages.

          Works fine now. I can install the dev version from browser. Thanks so man guys. This way I can test and contribute