2

I tried to install Neos CMS local under Windows 10 with a Wamp Apache Server. After creating the project with a composer and registering the Vhosts, I tried to run neos.demo/setup. Then I get an 500 internal server error with the message "Specified path not found”, for more information, take a look at the screenshot.

I checked the solutions for the exception code 1355480641, but nothing can solve my problem.

Thanks for your recommendations!

Screenshot showing the error message

Tamás Sengel
  • 47,657
  • 24
  • 144
  • 178
preissy
  • 21
  • 2

3 Answers3

0

do you have set Neos.Flow.core.phpBinaryPathAndFilename in Configuration/Settings.yaml to the correct php.exe binary path?

Mario Naether
  • 970
  • 9
  • 21
  • sure. in the documentation is a notice regarding to windows. so i did this before trying to run the installation. i think it's a windows problem. because while developing with laravel under windows 10, i got similiar errors. – preissy Aug 18 '17 at 09:18
  • you can try to start the subprocess from command line " FLOW_CONTEXT=Production ./flow neos.flow:core:compile" and check the stacktrace? – Mario Naether Aug 18 '17 at 11:47
  • 1
    It gives me the same error in my CMD-Tool "System can't find the specified path". – preissy Sep 13 '17 at 09:53
0

This is not an actual solution, this is more of an alternative.

I was having troubles installing neos on windows 10 as well (not the same as you though), a really nice solution that I would recommend as alternative to wamp is bitnami-neos.

George Dimitriadis
  • 1,272
  • 1
  • 15
  • 22
0

I got the same error in the current version of Neos CMS (v4.1). The solution to the problem was for me:

  • Adjust Configuration/Settings.yaml with the php.exe path (which you already did)
  • Launch an administrator cmd
  • Go to the Neos CMS directory
  • Run flow flow:core:compile
  • Run flow flow:cache:warmup

Now I could access Neos with XAMPP.

All credit for this answer goes to the following post: https://discuss.neos.io/t/running-neos-flow-on-windows-10-success/2752

Felix
  • 515
  • 1
  • 5
  • 16