You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2018. It is now read-only.
On PHP v5.5, you get the error message:
Deprecated: curl_setopt(): The usage of the @filename API for file uploading is deprecated. Please use the CURLFile class instead in .../EpiOAuth.php on line 270.
There needs to be a check for PHP v5.5 along the lines of:
if (function_exists('curl_file_create')) {
.... Curlfile() class code
} else {
.... Existing code
}
On PHP v5.5, you get the error message:
Deprecated: curl_setopt(): The usage of the @filename API for file uploading is deprecated. Please use the CURLFile class instead in .../EpiOAuth.php on line 270.
There needs to be a check for PHP v5.5 along the lines of:
However, what is the correct code to use?