StephenSkelly
Forum Replies Created
-
Forum: Plugins
In reply to: [Ozpital WPWeTransfer] Transfer failedIve just solved this error i think.
After looking at the curl request sent to the wetransfer auth end point i noticed that it was sending a “content-length: -1” header which was being refused by the server and returing a 400 error.
in /app/services/OWPWT_CurlService.php i just changed the following:
`public static function auth() {
Error::post();$url = ‘authorize’;
$response = self::fetch(‘POST’, $url);
echo $response;
die();
}`public static function auth() {
Error::post();$url = ‘authorize’;
$response = self::fetch(‘POST’, $url, array(‘content-length: 0’));
echo $response;
die();
}- This reply was modified 6 years, 11 months ago by StephenSkelly.
Forum: Plugins
In reply to: [Ozpital WPWeTransfer] Usage inside a formAh great,
Yes was looking at that method as a solution but hoped for something a little more elegant.
Thanks all the same will use that for now!
Forum: Plugins
In reply to: [Ozpital WPWeTransfer] Usage inside a formHi, is this resolved, as i still seem to be having this issue. (im trying to integrate into gravity forms, but facing the exact same problem)
Thanks in advance!
Forum: Plugins
In reply to: [Easy PayPal Events & Tickets] Orders don't appear and emails are not sent…Im also having this same question and would like to know how it was resolved.
Forum: Fixing WordPress
In reply to: 3.02 upgrade issues!Right, ive just done the same thing as above, but dont have backups. neither do my web hosts.
Does this mean there is absolutely no way of restoring my files?