JDownloader Community - Appwork GmbH
 

Notices

 
 
Thread Tools Display Modes
  #1  
Old 13.09.2009, 05:51
moka001
Guest
 
Posts: n/a
Default uploading.com not supported

i cant download from uploading.com ?im getting errors and it's impossible to download anylink from this server ...;plz is there any solution?thannx in advance

Last edited by Jiaz; 14.09.2009 at 00:20.
  #2  
Old 13.09.2009, 13:53
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

Example links pls!
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
  #3  
Old 13.09.2009, 16:15
moka001
Guest
 
Posts: n/a
Default exemple

here is an exemple
**External links are only visible to Support Staff****External links are only visible to Support Staff**
  #4  
Old 14.09.2009, 00:16
Oxyphoton
Guest
 
Posts: n/a
Default

The latest version of Jdownloader 0.8.324 still couldn't connected to the Uploading.com server: "Invalid Account" error (Premium account). I logged in Uploading.com ok w/ the browser. Thanks...

Last edited by Oxyphoton; 14.09.2009 at 00:18.
  #5  
Old 14.09.2009, 00:19
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

wait for update, just fixed it
__________________
JD-Dev & Server-Admin
  #6  
Old 15.09.2009, 09:48
derdieter
Guest
 
Posts: n/a
Default uploading.com free download not working [Patch]

Right now the uploading.com plugin fails to work (in free mode at least) due to two reasons:
  • The hoster actively blocks jdownloader. It seems it does so by checking the User-Agent, maybe the cookies too. Sending a valid UA will allow to connect again.
  • The uploading.com page was slightly altered so that requestFileInformation() now fails.

The trunk source doesn't work, too.

Patch against svn:trunk
Code:
### Eclipse Workspace Patch 1.0
#P jd
Index: src/jd/plugins/hoster/UploadingCom.java
===================================================================
--- src/jd/plugins/hoster/UploadingCom.java	(revision 8523)
+++ src/jd/plugins/hoster/UploadingCom.java	(working copy)
@@ -21,7 +21,6 @@
 
 import jd.PluginWrapper;
 import jd.http.Browser;
-import jd.http.RandomUserAgent;
 import jd.nutils.encoding.Encoding;
 import jd.parser.Regex;
 import jd.parser.html.Form;
@@ -38,6 +37,7 @@
 @HostPlugin(revision = "$Revision$", interfaceVersion = 2, names = { "uploading.com" }, urls = { "**External links are only visible to Support Staff** }, flags = { 2 })
 public class UploadingCom extends PluginForHost {
     private static int simultanpremium = 1;
+    private static String UA = "Mozilla/5.0 (Windows; U; Windows NT 5.2; de; rv:1.9.1.3) Gecko/20090824 Firefox/3.5.3";
 
     public UploadingCom(PluginWrapper wrapper) {
         super(wrapper);
@@ -58,7 +58,7 @@
 
     public void login(Account account) throws IOException, PluginException {
         this.setBrowserExclusive();
-        br.getHeaders().put("User-Agent", RandomUserAgent.generate());
+        br.getHeaders().put("User-Agent", UA);
         br.setCookie("**External links are only visible to Support Staff**, "_lang", "en");
         br.setCookie("**External links are only visible to Support Staff**, "setlang", "en");
         br.getPage("**External links are only visible to Support Staff**);
@@ -135,12 +135,11 @@
     }
 
     public AvailableStatus requestFileInformation(DownloadLink downloadLink) throws Exception {
+        br.getHeaders().put("User-Agent", UA);
         setBrowserExclusive();
         br.setFollowRedirects(true);
-        br.setCookie("**External links are only visible to Support Staff**, "_lang", "en");
-        br.setCookie("**External links are only visible to Support Staff**, "setlang", "en");
         br.getPage(downloadLink.getDownloadURL());
-        Regex info = br.getRegex(Pattern.compile("ico_big_download_file.gif\" class=\"big_ico\" alt=\"\"/>.*<h2>(.*?)</h2><br/>.*<b>Size:</b>(.*?)<br/><br/>", Pattern.DOTALL));
+        Regex info = br.getRegex(Pattern.compile("ico_big_download_file.gif.*?<h2>(.*?)</h2>.*?<b>Size:\\s*</b>(.*?)<", Pattern.DOTALL));
         String filesize = info.getMatch(1);
         String filename = info.getMatch(0);
         if (filesize == null || filename == null) throw new PluginException(LinkStatus.ERROR_FILE_NOT_FOUND);

Last edited by Jiaz; 16.09.2009 at 00:52.
  #7  
Old 15.09.2009, 09:55
manolo86
Guest
 
Posts: n/a
Default Uploading.com & letiitbit

Letitbit says plug in out of date

and uploading.com keeps the status on the link grabber as not checked and if press continue in the doenload section says disconect?

**External links are only visible to Support Staff****External links are only visible to Support Staff**

**External links are only visible to Support Staff****External links are only visible to Support Staff**

Last edited by Jiaz; 30.09.2009 at 02:39.
  #8  
Old 15.09.2009, 15:42
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

We know this but they're just hurting themselves by doin that.
JDownloader also supports downloading with premium accounts so when they change the page again and again they will also lose premium users.
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?

Last edited by pspzockerscene; 15.09.2009 at 16:06. Reason: Typo
  #9  
Old 16.09.2009, 00:47
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

we need a logfile
__________________
JD-Dev & Server-Admin
  #10  
Old 16.09.2009, 00:51
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

thanks for patch
fixed plugin

uploading only hurts itself by blocking useragents, because this way normal users also might get blocked by using browser
__________________
JD-Dev & Server-Admin
  #11  
Old 16.09.2009, 15:50
kim.t
Guest
 
Posts: n/a
Default

I also have the problem with "plugin out of date" with Letitbit.
Attached is my logfile.
Attached Files
File Type: txt logfile.txt (15.7 KB, 738 views)
  #12  
Old 17.09.2009, 01:16
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

both fixed, wait for update
__________________
JD-Dev & Server-Admin
  #13  
Old 19.09.2009, 01:06
Oxyphoton
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by pspzockerscene View Post
We know this but they're just hurting themselves by doin that.
JDownloader also supports downloading with premium accounts so when they change the page again and again they will also lose premium users.
Darn it, now I understand why. Registered their Premium account about 3 weeks ago (for 3 months) and still haven't been able to used a single time w/ JDownloader, even after updated to the latest version. This is the 1st and the last time I'm w/ Uploading.com, too much hectic. In a mean time, does anyone making it work or how to get around it? Thanks...
  #14  
Old 19.09.2009, 01:44
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

@Oxyphoton
Yes we do make it work again but the problem is that they change the page so the filecheck or other important parts of the plugin don't work but as you can see this just leads to problems on both sides, you can't download with jdownloader and they earn less because they change the page.

GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
  #15  
Old 22.09.2009, 16:26
Ivan_rulez
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Jiaz View Post
thanks for patch
fixed plugin

uploading only hurts itself by blocking useragents, because this way normal users also might get blocked by using browser
how can i fix this plugin for JD program on my pc?
  #16  
Old 22.09.2009, 20:43
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

@Ivan_rulez
Wait for the next update!!
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
  #17  
Old 23.09.2009, 12:15
Ivan_rulez
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by pspzockerscene View Post
@Ivan_rulez
Wait for the next update!!
ok, i'll wait :D

thank you for the answer:biggrin:
  #18  
Old 25.09.2009, 12:48
subdaman
Guest
 
Posts: n/a
Default

Yes uploading.com seems to be a problem still...don't know why..

When i put in the account details, it keeps showing "unlimited account" (i have a premium account) but then after a while it becomes "invalid account"... don't know why and don't understand why...any help in this matter will be greatly appreciated. Thanks.
  #19  
Old 25.09.2009, 22:31
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

update is not public yet, but i think next week there will the update
__________________
JD-Dev & Server-Admin
  #20  
Old 26.09.2009, 19:34
Cold0ne
Guest
 
Posts: n/a
Default Uploading.com error

Cant seem to download files from Uploading.to with version 8.323.
here is a URL for example which wont download but works in browser:
http uploading com /files/get/4e11ffd6/


Jdownload says "Disconnected, waiting 5 mins to retry" or something, weird error. it doesnt even start the download the file at all. I think they changed their page layout maybe and jdownloader needs to be updated so it supports it. Also please dont give me the "use the nightly version" thats lame. make official releases more
  #21  
Old 27.09.2009, 15:07
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

Moved->Hoster-Plugins!

GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
  #22  
Old 30.09.2009, 02:31
jack76
Guest
 
Posts: n/a
Default

same problem with 0.8.763...
  #23  
Old 30.09.2009, 02:38
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

they keep changing the website, dont know why
http://svn.jdownloader.org/issues/show/622
__________________
JD-Dev & Server-Admin
  #24  
Old 30.09.2009, 09:04
KREAT0R
Guest
 
Posts: n/a
Thumbs up

For letitbit Download: mediafire.com/?nkwwmzhlhfz

Close JD, and paste in "Jdownloader/jd/plugins/hoster/" reeplaze the original

Run JD, cancel update (1).


GL Bye.


sorry my english!


*
  #25  
Old 30.09.2009, 10:13
asdalol
Guest
 
Posts: n/a
Default

hello! update is done.. now we have 0.8.763..but is still impossible to download from uploading.com

check it please!
  #26  
Old 30.09.2009, 10:14
asdalol
Guest
 
Posts: n/a
Default

update is done.. now we have 0.8.763..but is still impossible to download from uploading.com

check it please!
  #27  
Old 30.09.2009, 10:39
KREAT0R
Guest
 
Posts: n/a
Default

Sorry delete this post :S

Last edited by KREAT0R; 30.09.2009 at 11:10.
  #28  
Old 30.09.2009, 10:40
KREAT0R
Guest
 
Posts: n/a
Exclamation

Sorry delete this post :S

Last edited by KREAT0R; 30.09.2009 at 11:10.
  #29  
Old 30.09.2009, 13:33
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

Note that we won't give any support for *unofficial* plugins!

GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
  #30  
Old 30.09.2009, 13:59
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

fixed again, they changed their page again
__________________
JD-Dev & Server-Admin
  #31  
Old 30.09.2009, 14:00
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

they just changed something again, wait for update today
__________________
JD-Dev & Server-Admin
  #32  
Old 30.09.2009, 14:14
Oxyphoton
Guest
 
Posts: n/a
Default

I'm running jDownloader 0.8.763, it gave me error "OFFLINE: FILE NOT FOUND". Manually download via uploading.com website is ok (Premium account). After about 3 weeks and 2 main updates already and still didn't work. Uploading.com is really getting on my nerve and I don't want to give them another cent for their lousy services.
  #33  
Old 30.09.2009, 14:43
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

@Oxyphoton
You really shouldn't give them a cent.
I dunno if they got a downloadmanager for their clients but preventing their premium users from using a downloadmanager is the worst they can so.
The plugin is fixed again by me, this time i really tried to make it more stable (the available check) but there are no gurantees for uploading not changing their site.

I hope my English was understandable^^

GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
  #34  
Old 30.09.2009, 19:06
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

you could email uploading support and ask why they keep changing page and you (premium user) cannot use their service with jd
maybe they stop changing page if enough ppl email them
__________________
JD-Dev & Server-Admin
  #35  
Old 30.09.2009, 19:36
pspzockerscene's Avatar
pspzockerscene pspzockerscene is offline
Community Manager
 
Join Date: Mar 2009
Location: Deutschland
Posts: 70,922
Default

Wel it will be interesting to see what they'll do next to kill the plugin:rolleyes:

GreeZ pspzockerscene
__________________
JD Supporter, Plugin Dev. & Community Manager

Erste Schritte & Tutorials || JDownloader 2 Setup Download
Spoiler:

A users' JD crashes and the first thing to ask is:
Quote:
Originally Posted by Jiaz View Post
Do you have Nero installed?
  #36  
Old 30.09.2009, 22:27
Oxyphoton
Guest
 
Posts: n/a
Default

Thanks ALL,

Still same prob as described in the last msg after updated to NIGHTLY. Status in JDownloader is "Free Membership, unlimited". The reason that uploading.com getting on my nerve was that if they couldn't afforded their own download manager then don't try to block the 3rd parties such as jDownloader. I emailed them to ask for my money back but I guess that' a 1-way ticket for a roughly ride with lots of headache.

The funny thing is that from their FAQs:

"...W offer ad-financed free and affordable premium online storage/remote backup capacity, plus sophisticated uploading and downloading tools...."

I don't know what exactly was the "sophisticated downloading tools" that they mentioning after verified to me in one of their emails that they didn't have any download manager utils for their Premium customers. Is that FALSE ADVERTISING or what?

Last edited by Oxyphoton; 30.09.2009 at 22:36.
  #37  
Old 30.09.2009, 22:34
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,286
Default

can you pm or jiaz@jdownloader.org
then i can fix the premium acc
__________________
JD-Dev & Server-Admin
  #38  
Old 03.10.2009, 21:12
asdalol
Guest
 
Posts: n/a
Default

all updates are done!
but uploading.com don't work with jdownloader
  #39  
Old 03.10.2009, 21:13
asdalol
Guest
 
Posts: n/a
Default

all updates are done!
but uploading.com don't work with jdownloader
  #40  
Old 03.10.2009, 21:14
asdalol
Guest
 
Posts: n/a
Default

all updates are done!
but uploading.com don't work with jdownloader
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 21:14.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.