我配置了neo4j数据库并将其添加到用户名和密码中。 当我使用localhost运行时:7474它使用身份验证。 但是我在Laravel中为配置文件添加了用户名和密码,但它没有工作。
这是我的neo4j配置。
'neo4j' => array(
'transport' => 'curl',
'host' => 'localhost',
'port' => '7474',
'debug' => true,
'proxy_dir' => '/tmp',
'cache_prefix' => 'neo4j',
'meta_data_cache' => 'array',
'annotation_reader' => null,
'username' => 'username',
'password' => 'password',
'pathfinder_algorithm' => null,
'pathfinder_maxdepth' => null
)