Unable to parse JSON data: JSON_ERROR_SYNTAX - php-7

On a newly installed server running CakePHP 3.2.14, a call to debug($myEntity) displays the following error after displaying the entity without any visible problem:
An Internal Error Has Occurred
Error: Error executing command: Unable to parse JSON data: JSON_ERROR_SYNTAX - Syntax error, malformed JSON
Any idea?
EDIT According to my tests, I get this error runing PHP7.0. I don't have this error running PHP5.6.
What does it mean?

Sorry guys, after deeper searchs I found that te problem comes from a plugin.

Related

ERROR #wdio/runner: Error: Unable to load spec files quite likely because they rely on `browser` object that is not fully initialised

After running npm install getting the following error: ERROR #wdio/runner: Error: Unable to load spec files quite likely because they rely on browser object that is not fully initialised
The code was running fine, only after npm install getting this error.
I after long trouble shooting it turned out to be one of my script had one line not correctly commented out, instead of // I had /. Now all is working.

Unable to resolve module `some-name` from `Path/To/Project/script.js`

I tried to require("some-name"); in my script.js. This gave me the following error:
Unable to resolve module some-name from Path/To/Project/script.js: Module does not exist in the module map.
So I removed the require("some-name"); in the script.js. The same error occurred.
So I went to a previous state of the app. The error keeps happening and there is nowhere in the code that I request the "some-name" file nor I have the file in my directory.
Here an image where I search in my code to the old file name:
The screen shot of the error in react-native.
I tried the steps shown in the error message and it did not resolve the problem.
It is possible to add more information if it is unclear.
The problem is the cache.
This problem was fixed by:
renaming the file where the error came from.
restarting the server.
Due to the file renaming the server took the updated project with out the error. This problem was solved with the help of Nikhil Parmar in this chat.
The error was already fixed in the code but the server still used the cached project. A normal cache clear and server restart did not work.

I'm receiving an error: DataReader.GetFieldType(33) returned null

when trying to run my site on my server I receive the following error. Works fine locally. I have tried referencing the Microsoft.SqlServer.Type and installing the NuGet Package: Microsoft.SqlServer.Type but still recieve the error on my server.
"DataReader.GetFieldType(33) returned null."
This field is a geometry field.

ClickOnce running an error when publishing Application

whenever I try to publish my application and it gives me this error:
Failed to connect to '\localhost\users\Dylan Garcia\Desktop\8.2.1_File\' with the following error: unable to create the Web site '\localhost\users\Dylan Garcia\Desktop\8.2.1_File\'. The path '\localhost\users\Dylan Garcia\Desktop\8.2.1_File\' does not exist or you do not have access. The specified path is invalid.
how could i resolve this issue?
Hope you have already fixed this error.
First make sure that you have created the folder 8.2.1_File on your desktop, then try either one of the following
\\\localhost\users\Dylan Garcia\Desktop\8.2.1_File\
or
C:\users\Dylan Garcia\Desktop\8.2.1_File\

Error when using "Get Column Information" within Entity Framework 4

I'm trying to use "Get Column Information" within Model Browser but I keep getting this error
An exception of type 'system.io.filenotfoundexception' occurred while attempting to get column information could not load file or assembly microsoft.sqlserver.management.sdk.sfc
I have Googled this error but with no avail, has anyone has this issue before? is so how did you resolved it?
I had this issue recently and found this question, with no answer.
I did manage to resolve the issue with the following guide:
http://www.advancesharp.com/blog/1113/could-not-load-file-or-assembly-microsoft-sqlserver-management-sdk-sfc
I suspect this is to do with my machine having SQL Server 2014 installed on it, but Visual Studio expecting 2012 for Edit Function Import.
Hope this helps someone else.