Status
Not open for further replies.

brazzO

Active Member
1,286
2009
211
0
Has anyone noticed that when using cURL to upload to fileserve it doesn't work anymore?
I have the PHPuploader setup but now it isn't working all of a sudden
Any help will be greatly appreciated :)
 
44 comments
There is a small update on fileserve, you must need to include REFERER, Do this, if you know where is code to call for fileserve download, add this as REFERER
ofc if you are using curl, it will look something like this
PHP:
curl_setopt($ch, CURLOPT_REFERER, "http://www.fileserve.com/login.php");
Edit: if you dont know just send me ur script file i will add for you
.............
 
Already tried doing that myself here

PHP:
$ch = curl_init($link);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HEADER, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_REFERER, "http://www.fileserve.com/login.php");  
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));
    if($postfields)
    {
 
There are way to many files to show you the entire code. It is just the PHPuploader open source code but with a few modifictions by me, i just cant seem to figure out where to put this referer.. i have scanned the functions.php for the code i add it but it just tells me to make sure the folder is chmodded, i check that it is so that is not the reason. Was working perfect until this fileserve change :(
 
You are a little late.
It was working between 5 August and 8 August. They've changed their code again.

I am working on it. I'll find a way out.
 
thanks ajinkya9 i have had a look around everywhere on the code but this does not work. Looked up about changing parts aswel but still nothing. Any help would be appreciated :D
 
Make sure you're not banned like me.
If you've got root:

wget http://fileserve.com
--2011-08-09 12:14:03-- http://fileserve.com/
Resolving fileserve.com... 209.222.23.222, 209.222.23.221
Connecting to fileserve.com|209.222.23.222|:80... failed: Connection refused.
Connecting to fileserve.com|209.222.23.221|:80... failed: Connection refused.

on my other box:
wget http://fileserve.com
--2011-08-09 12:57:00-- http://fileserve.com/
Resolving fileserve.com... 209.222.23.221, 209.222.23.222
Connecting to fileserve.com|209.222.23.221|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: `index.html'

[ <=> ] 22,482 137K/s in 0.2s

2011-08-09 12:57:01 (137 KB/s) - `index.html' saved [22482]
 
In my case it's probably because of the huge amounts of traffic I created with http://file-remoter.com

The banned server was my most used server.
It's funny how they banned it after I stopped allowing new members/renewals.

I'm on the leaseweb network btw.
 
I don't think they banned the Leaseweb range.
Would suck if they did. But not only for us, but also for them.

They'd lose a bunch of uploaders
 
Status
Not open for further replies.
Back
Top