I downloaded the apoc library, but I receive this error message when I run my cypher codes.

I created and added the apoc file to the conf folder because I could not find the file at first. I even added these to the neo4j conf file, but still receiving the errors .
dbms.security.procedures.allowlist=apoc.coll.,apoc.load.,gds.*
dbms.unmanaged_extension_classes=apoc=/:/apoc
@olayememmanuel
the image is not rendering so hard offer a suggestion.
Can you either repost image or post as a text description of the error
Additionally can you please let us know what version of Neo4j.
ERROR
Neo.ClientError.Procedure.ProcedureCallFailed
Failed to invoke procedure `apoc.load. json : Caused by: java. lang. RuntimeException: Import from files not enabled, please set
apoc. import.file.enabled=true in your apoc.conf
I am using the version 1.6.1
@olayememmanuel
Version 1.6.1 is presumably the version of Neo4j Desktop. But Desktop can run nay/multiple version of Neo4j.
As to the error, your config of
dbms.security.procedures.allowlist=apoc.coll.,apoc.load.,gds.*
dbms.unmanaged_extension_classes=apoc=/:/apoc
seems to be at fault.
The 1st line above suggest the only allowed procedure is
a. a procedure named apoc.col1 and a procedure named apoc.load, and a procedure which is gds.*
But it appears given the error you are trying to run apoc.load.json and to which this does not match the procedures names that are allowed.
Not sure how/why the line is defined as described. if you define as
dbms.security.procedures.allowlist=apoc.*, gds.*
and in your conf/apoc.conf you define
apoc. import.file.enabled=true i
is the error addressed.