[Solved] UNABLE TO CREATE USING CSV FILE IN NEO4J

The immediate issue is a syntax error: HEADER should be HEADERS. You may have other issues as well if the actual headers do not have the same capitalization as in your query. 1 solved UNABLE TO CREATE USING CSV FILE IN NEO4J

[Solved] Fatal error: Uncaught Error: using graphaware for PHP

try this: require_once __DIR__.’/vendor/autoload.php’; your code is: require_once __DIR__.’C:/xampp/htdocs/vendor/autoload.php’; you dont need to specify the full path of the files (‘c:/xampp/…’) __DIR__ will give you the current directory of the file you wrote your codes oh and anyway, did you edit the autoload.php? if you use third party classes or plugins, you should not have … Read more