<turbo-stream action="append" target="posts_list"><template>    <div class="postbit" id="101783" data-post-id="101783">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="OvermindDL1" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/OvermindDL1/120/2677_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  OvermindDL1
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="NobbZ" data-post="30" data-topic="17495">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/nobbz/48/27235_2.png" class="avatar"> NobbZ:</div>
<blockquote>
<p>I’m pretty sure <a class="mention" href="/u/overminddl1" rel="nofollow">@OvermindDL1</a> does already, as he usually is on most recent stable usually, if not on master…</p>
</blockquote>
</aside>
<pre data-code-wrap="elixir"><code class="lang-elixir">╰─➤  asdf current elixir
1.7.3-otp-21
</code></pre>
<p>Yep, though now on 1.7.4-otp-21 on that server.  ^.^</p>
<aside class="quote no-group" data-username="kattair0ta8" data-post="31" data-topic="17495" data-full="true">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/letter_avatar_proxy/v4/letter/k/eb8c5e/48.png" class="avatar"> kattair0ta8:</div>
<blockquote>
<p>Show your “config/” directory</p>
</blockquote>
</aside>
<p>Entirely stock/standard, everything is unchanged from the standard phx_new setup:</p>
<pre data-code-wrap="zsh"><code class="lang-zsh">╰─➤  find config -type f
config/prod.secret.exs
config/config.exs
config/test.exs
config/dev.exs
config/prod.exs
</code></pre>
<p>Here are the contents of the two files that matter (since I ran in standard dev mode):</p>
<p><code>config.exs</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir"># This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
#
# This configuration file is loaded before any dependency and
# is restricted to this project.

# General application configuration
use Mix.Config

config :test_fourteen_bug,
  ecto_repos: [TestFourteenBug.Repo]

# Configures the endpoint
config :test_fourteen_bug, TestFourteenBugWeb.Endpoint,
  url: [host: "localhost"],
  secret_key_base: "m37BfboSxMkut6vHe/N8Qhns2qZZ48knfMJeIHjHdUYPFn5yXzIYfweaLBDh++X/",
  render_errors: [view: TestFourteenBugWeb.ErrorView, accepts: ~w(html json)],
  pubsub: [name: TestFourteenBug.PubSub, adapter: Phoenix.PubSub.PG2]

# Configures Elixir's Logger
config :logger, :console,
  format: "$time $metadata[$level] $message\n",
  metadata: [:request_id]

# Use Jason for JSON parsing in Phoenix
config :phoenix, :json_library, Jason

# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env()}.exs"
</code></pre>
<p><code>dev.exs</code>:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">use Mix.Config

# For development, we disable any cache and enable
# debugging and code reloading.
#
# The watchers configuration can be used to run external
# watchers to your application. For example, we use it
# with webpack to recompile .js and .css sources.
config :test_fourteen_bug, TestFourteenBugWeb.Endpoint,
  http: [port: 4000],
  debug_errors: true,
  code_reloader: true,
  check_origin: false,
  watchers: [
    node: [
      "node_modules/webpack/bin/webpack.js",
      "--mode",
      "development",
      "--watch-stdin",
      cd: Path.expand("../assets", __DIR__)
    ]
  ]

# ## SSL Support
#
# In order to use HTTPS in development, a self-signed
# certificate can be generated by running the following
# Mix task:
#
#     mix phx.gen.cert
#
# Note that this task requires Erlang/OTP 20 or later.
# Run `mix help phx.gen.cert` for more information.
#
# The `http:` config above can be replaced with:
#
#     https: [
#       port: 4001,
#       cipher_suite: :strong,
#       keyfile: "priv/cert/selfsigned_key.pem",
#       certfile: "priv/cert/selfsigned.pem"
#     ],
#
# If desired, both `http:` and `https:` keys can be
# configured to run both http and https servers on
# different ports.

# Watch static and templates for browser reloading.
config :test_fourteen_bug, TestFourteenBugWeb.Endpoint,
  live_reload: [
    patterns: [
      ~r{priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$},
      ~r{priv/gettext/.*(po)$},
      ~r{lib/test_fourteen_bug_web/views/.*(ex)$},
      ~r{lib/test_fourteen_bug_web/templates/.*(eex)$}
    ]
  ]

# Do not include metadata nor timestamps in development logs
config :logger, :console, format: "[$level] $message\n"

# Set a higher stacktrace during development. Avoid configuring such
# in production as building large stacktraces may be expensive.
config :phoenix, :stacktrace_depth, 20

# Initialize plugs at runtime for faster development compilation
config :phoenix, :plug_init_mode, :runtime

# Configure your database
config :test_fourteen_bug, TestFourteenBug.Repo,
  username: "postgres",
  password: "postgres",
  database: "test_fourteen_bug_dev",
  hostname: "localhost",
  pool_size: 10
</code></pre>
<p>All standard from a normal <code>phx_new</code> call.</p>
<p>We really <em>really</em> need that SSCCE so we can just <code>git clone ...</code> it and run it ourselves.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101783" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/32">Post #31</a>
	                </div>
	            </div>
              <div id="likers-container-101783" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101783"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #31"></div>
  </section>
</div>
    <div class="postbit" id="101793" data-post-id="101793">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="meanderingstream" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/meanderingstream/120/12469_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  meanderingstream
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Here is another observable.  With Phoenix 1.3.3, on Windows, mix phx.new some_name.  Set up a dev.exs login.  Compile. Mix phx.server.  The error happens.  It wasn’t happening evening before.</p>
<p>This started last evening EST for me.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101793" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/33">Post #32</a>
	                </div>
	            </div>
              <div id="likers-container-101793" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101793"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #32"></div>
  </section>
</div>
    <div class="postbit" id="101794" data-post-id="101794">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="OvermindDL1" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/OvermindDL1/120/2677_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  OvermindDL1
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="meanderingstream" data-post="33" data-topic="17495">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/meanderingstream/48/12469_2.png" class="avatar"> meanderingstream:</div>
<blockquote>
<p>Phoenix 1.3.3</p>
</blockquote>
</aside>
<p>Doesn’t have support for Cowboy2 nor does it have any Cowboy2 code, so would need an SSCCE for that too.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101794" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/34">Post #33</a>
	                </div>
	            </div>
              <div id="likers-container-101794" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101794"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #33"></div>
  </section>
</div>
    <div class="postbit" id="101796" data-post-id="101796">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="NobbZ" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/NobbZ/120/27235_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  NobbZ
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="OvermindDL1" data-post="32" data-topic="17495">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/overminddl1/48/2677_2.png" class="avatar"> OvermindDL1:</div>
<blockquote>
<p>Entirely stock/standard, everything is unchanged from the standard phx_new setup:</p>
</blockquote>
</aside>
<p>As we are trying to debug <strong>his</strong> app and not yours, I’m not sure if I had answered the question for the config…</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101796" data-batch-url="/posts/batch_likers">
                        1
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/35">Post #34</a>
	                </div>
	            </div>
              <div id="likers-container-101796" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101796"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #34"></div>
  </section>
</div>
    <div class="postbit" id="101798" data-post-id="101798">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="OvermindDL1" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/OvermindDL1/120/2677_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  OvermindDL1
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="NobbZ" data-post="35" data-topic="17495">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/nobbz/48/27235_2.png" class="avatar"> NobbZ:</div>
<blockquote>
<p>As we are trying to debug <strong>his</strong> app and not yours, I’m not sure if I had answered the question for the config…</p>
</blockquote>
</aside>
<p>Yep, but we haven’t got an SSCCE yet so the best we can do is compare our working versions and see how theirs is different.  ^.^</p>
<p>We really need an SSCCE…  &gt;.&gt;</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101798" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/36">Post #35</a>
	                </div>
	            </div>
              <div id="likers-container-101798" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101798"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #35"></div>
  </section>
</div>
    <div class="postbit" id="101805" data-post-id="101805">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="meanderingstream" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/meanderingstream/120/12469_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  meanderingstream
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Please verify the assumption that nothing changed in 1.3 when doing a phx.new.  The errors that I was receiving are very similar to the errors described above.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101805" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/37">Post #36</a>
	                </div>
	            </div>
              <div id="likers-container-101805" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101805"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #36"></div>
  </section>
</div>
    <div class="postbit" id="101809" data-post-id="101809">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="OvermindDL1" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/OvermindDL1/120/2677_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  OvermindDL1
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<aside class="quote no-group" data-username="meanderingstream" data-post="37" data-topic="17495" data-full="true">
<div class="title">
<div class="quote-controls"></div>
<img alt="" width="24" height="24" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/meanderingstream/48/12469_2.png" class="avatar"> meanderingstream:</div>
<blockquote>
<p>Please verify the assumption that nothing changed in 1.3 when doing a phx.new. The errors that I was receiving are very similar to the errors described above.</p>
</blockquote>
</aside>
<p>The 1.3 installer had not changed in a very long time.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101809" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/38">Post #37</a>
	                </div>
	            </div>
              <div id="likers-container-101809" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101809"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #37"></div>
  </section>
</div>
    <div class="postbit" id="101824" data-post-id="101824">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="Gazler" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/Gazler/120/1168_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  Gazler
                  </h3>
		          </div>
						
			          <div class="user-title">
									<span>Phoenix Core Team</span>
			          </div>
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>Regardless of Phoenix version, if you are using Plug 1.7, then you will require <code>{:plug_cowboy, "~&gt; 1.0"}</code>  for cowboy to work.</p>
<p>If you are using Phoenix 1.4, then you can use <code>{:plug_cowboy, "~&gt; 2.0"}</code> or <code>{:plug_cowboy, "~&gt; 1.0"}</code>.</p>
<p>You should be prompted about this when the application starts:</p>
<pre data-code-wrap="elixir"><code class="lang-elixir">warning: please add the following dependency to your mix.exs:

    {:plug_cowboy, "~&gt; 1.0"}

This dependency is required by Plug.Adapters.Cowboy
which you may be using directly or indirectly.
Note you no longer need to depend on :cowboy directly.


[info] Application yolo123 exited: Yolo123.Application.start(:normal, []) returned an error: shutdown: failed to start child: Yolo123Web.Endpoint
    ** (EXIT) shutdown: failed to start child: Phoenix.Endpoint.Handler
        ** (EXIT) {%RuntimeError{message: "no plug_cowboy adapter"}, []}
** (Mix) Could not start application yolo123: Yolo123.Application.start(:normal, []) returned an error: shutdown: failed to start child: Yolo123Web.Endpoint
    ** (EXIT) shutdown: failed to start child: Phoenix.Endpoint.Handler
        ** (EXIT) {%RuntimeError{message: "no plug_cowboy adapter"}, []}
</code></pre> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="101824" data-batch-url="/posts/batch_likers">
                        3
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/39">Post #38</a>
	                </div>
	            </div>
              <div id="likers-container-101824" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="101824"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #38"></div>
  </section>
</div>
    <div class="postbit" id="102070" data-post-id="102070">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="meanderingstream" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/meanderingstream/120/12469_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  meanderingstream
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I’ve figured out a work around for the Windows 1.3.4 fresh phx.new.  Here is the error that I see upon phx.new, …follow proper steps for a Getting Started app …</p>
<pre><code>{:plug_cowboy, "~&gt; 1.0"}
</code></pre>
<p>This dependency is required by Plug.Adapters.Cowboy<br>
which you may be using directly or indirectly.<br>
Note you no longer need to depend on :cowboy directly.</p>
<p>[info] Application crash_r2 exited: CrashR2.Application.start(:normal, <span class="chcklst-box fa fa-square-o"></span>) returned an error: shutdown: failed to start child: CrashR2Web.Endpoint<br>
** (EXIT) shutdown: failed to start child: Phoenix.Endpoint.Handler<br>
** (EXIT) “plug_cowboy dependency missing”<br>
** (Mix) Could not start application crash_r2: CrashR2.Application.start(:normal, <span class="chcklst-box fa fa-square-o"></span>) returned an error: shutdown: failed to start child: CrashR2Web.Endpoint<br>
** (EXIT) shutdown: failed to start child: Phoenix.Endpoint.Handler<br>
** (EXIT) “plug_cowboy dependency missing”</p>
<p>The workaround that allows the application to start:</p>
<p>when performing mix phx.new </p>
<p>The mix.lock file pulls in:<br>
“plug”: {:hex, :plug, “1.7.1”, “8516d565fb84a6a8b2ca722e74e2cd25ca0fc9d64f364ec9dbec09d33eb78ccd”, [:mix], [{:mime, “~&gt; 1.0”, [hex: :mime, repo: “hexpm”, optional: false]}, {:plug_crypto, “~&gt; 1.0”, [hex: :plug_crypto, repo: “hexpm”, optional: false]}], “hexpm”},</p>
<p>When the above is replaced with:<br>
“plug”: {:hex, :plug, “1.6.3”, “43088304337b9e8b8bd22a0383ca2f633519697e4c11889285538148f42cbc5e”, [:mix], [{:cowboy, “~&gt; 1.0.1 or ~&gt; 1.1 or ~&gt; 2.4”, [hex: :cowboy, repo: “hexpm”, optional: true]}, {:mime, “~&gt; 1.0”, [hex: :mime, repo: “hexpm”, optional: false]}], “hexpm”},</p>
<p>The server will start.</p>
<p>This situation happens on a fresh mix phx.new with the latest Phoenix 1.3.4 on a fresh Windows 10 machine.  Is plug 1.7.1 correct for a 1.3.4 Phoenix?</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="102070" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/40">Post #39</a>
	                </div>
	            </div>
              <div id="likers-container-102070" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="102070"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #39"></div>
  </section>
</div>
    <div class="postbit" id="102092" data-post-id="102092">
  <section>
    <div class="post-wrap">


					<div class="post-header">
		        <div class="user-avatar">
		          <img alt="dimitarvp" src="https://forum.elixirforum.com/user_avatar/forum.elixirforum.com/dimitarvp/120/38664_2.png" width="120" height="120" />
		        </div>
					
						<div class="user-details">
		          <div class="user-name">
		            <h3>
                  dimitarvp
                  </h3>
		          </div>
						
						</div>
					
					</div>

	        <div class="thread-main">
	            <div class="post-body" data-turbo="false">
								<p>I am not sure if <a href="https://forum.elixirforum.com/t/phoenix-1-4-0-rc-released/17182/84" rel="nofollow">this pointer to the Phoenix 1.4.0-RC thread</a> (comment by Phoenix’s creator) is explicitly saying you only need Plug 1.7 for the latest version or not, but it might be a clue. Additionally, <a href="https://github.com/elixir-plug/plug#installation" rel="noopener nofollow ugc">Plug’s GitHub installation section</a> seems to require <code>plug_cowboy</code> to be specified as <code>~&gt; 2.0</code>.</p>
<p>Not 100% sure myself but maybe it can help you.</p> 
	            </div>

	            <div class="base-line">
	                <div class="thread-counters">
	                    <span class="thread-count count-likes js-likers-trigger" title="Likes" data-post-id="102092" data-batch-url="/posts/batch_likers">
                        0
                      </span>
                      <!-- <span class="thread-count js-solved-indicator" title="Marked as solution"></span> -->
	                </div>
	                <div class="go-to-post">
	                  <a title="Go to post" alt="Go to post" href="https://forum.elixirforum.com/t/my-app-crashes-at-the-start/17495/41">Post #40</a>
	                </div>
	            </div>
              <div id="likers-container-102092" 
                   class="likers-container"
                   data-first-post="false"
                   data-batch-url="/posts/batch_likers">
                   <div class="likers-placeholder" 
                     data-likers-post-id="102092"
                     data-batch-url="/posts/batch_likers">
                  <div class="post-likers"></div>
                </div>
              </div>
	        </div>
			

    </div>

    <div class="triangle-top-right type-standard-post cat-standard-post" title="Post #40"></div>
  </section>
</div>
</template></turbo-stream><turbo-stream action="replace" target="load-more-container"><template><div id="load-more-container" class="load-more-container">
    <a class="load-more-button" data-turbo-stream="true" href="/topics/17495/load_more?page=5">Load more posts (1 remaining)</a>
</div></template></turbo-stream>