Jump to content

[Support] Djoss - JDownloader 2


Recommended Posts

On 1/4/2024 at 5:22 AM, remiel said:

"It's working again, I didn't do anything, just below the error, a message appeared to search for updates, and then it started working again."

I am having the same problem... But the update did not fix the issue. Says I'm up to date and then the app shuts down.

Edited by Litlgi
Link to comment

Since this morning the WebUI of jdownloader2 shows this error message:

"TypeError: WeakMap key undefined must be an object or an unregistered symbol

executeCommands@http://xxx.xxx.x.x:xxxx/:529:36

commandsListener@http://xxx.xxx.x.x:xxxx/:652:32"

My krusader interface shows a similar message, so that I assume that the error message has something to do with VNC (especially so as all my other containers that - afaik - do not use VNC run without any problem).

Has anyone encountered the same or a similar problem and knows anything about solutions?

Any help will be much appreciated.

Link to comment
57 minutes ago, whauk said:

Since this morning the WebUI of jdownloader2 shows this error message:

"TypeError: WeakMap key undefined must be an object or an unregistered symbol

executeCommands@http://xxx.xxx.x.x:xxxx/:529:36

commandsListener@http://xxx.xxx.x.x:xxxx/:652:32"

My krusader interface shows a similar message, so that I assume that the error message has something to do with VNC (especially so as all my other containers that - afaik - do not use VNC run without any problem).

Has anyone encountered the same or a similar problem and knows anything about solutions?

Any help will be much appreciated.

 

This kind of issue is usually caused by a browser plugin.  Do you see the same problem in an incognito/private window ?  With another browser ?

Link to comment
  • 2 weeks later...
  • 2 months later...

I've been using JDownloader for over 10 years, and the docker for at least 6 and it's always worked very well.

 

I noticed today that I can't open any "explorer" (file open/save) windows in JD. So the options for "add container" or File -> Load Linkcontainer (CTRL-o) do nothing and I can't access my DLC files.

 

When trying to Create DLC, an error pops up instead of the file window and says "Please choose a valid path to save the DLC"

 

Kind of stumped here. I haven't used these features since sometime last year, but I've been using JD pretty steadily the whole time and haven't noticed any other issues come up.

Link to comment
  • 4 weeks later...

Same happend to my container yesterday.

 

I solved it like this:

stopped container

saved my cfg folder

deleted all the jd2 appdatas

deletet container

built new container and started

stopped the again working container and pasted the cfg

 

Link to comment
On 5/5/2024 at 6:32 PM, jojo345 said:

Same happend to my container yesterday.

 

I solved it like this:

stopped container

saved my cfg folder

deleted all the jd2 appdatas

deletet container

built new container and started

stopped the again working container and pasted the cfg

 



No need , just do this
 

Quote

 

Stop the container

Go to your jd2-config folder an delete the file Core.jar and the folder tmp and update

Start the container and wait for the last update to finish

I had to reconnect my instance with my jD-Account once, because it lost it's connection.

 

 

  • Thanks 1
Link to comment
  • 2 months later...

Hello. This feels like a basic question, but here we go... I'm getting an "Invalid download directory" when I try to start downloads from the web interface.

 

I see a "downloads" share in my Shares menu; I think this was added by the JDownloader plugin itself. The Docker's config settings are pointing to /mnt/user/downloads, which I think is correct; I used a similar path when configuring RetroNAS.

 

I tried opening up the container's console to see, and there doesn't appear to be a /mnt/user/downloads path available. The entire /mnt path is empty. Is there something extra I need to do to expose my downloads share to the JDownloader container?

 

docker run
  -d
  --name='MyJDownloader'
  --net='bridge'
  -e TZ="America/Los_Angeles"
  -e HOST_OS="Unraid"
  -e HOST_HOSTNAME="CmitNAS"
  -e HOST_CONTAINERNAME="MyJDownloader"
  -e 'MYJD_USER'='[email protected]'
  -e 'MYJD_PASSWORD'='My@ctualPassw0rd'
  -e 'MYJD_DEVICE_NAME'='Unraid'
  -e 'XDG_DOWNLOAD_DIR'='/mnt/user/downloads/'
  -l net.unraid.docker.managed=dockerman
  -l net.unraid.docker.icon='https://github.com/hussainalhaddad/docker-templates/raw/master/myjdownloader/logo.png'
  -p '3129:3129/tcp'
  -v '/mnt/user/appdata/jdownloader2/cfg':'/opt/JDownloader/cfg':'rw'
  -v '/mnt/user/appdata/jdownloader2/logs':'/opt/JDownloader/logs':'rw'
  -v '/mnt/user/downloads/':'/opt/JDownloader/Downloads':'rw'
  -v '/tmp/JDownloader':'/opt/JDownloader/app/tmp':'rw'
  --restart unless-stopped 'jaymoulin/jdownloader'
35710ee4d82f465e49c74a2ccbb6498a4e3cccdbdd8d36defe1f8e2ee6b69908

 

Thanks.

Edited by Renaissance2K
Link to comment
1 hour ago, jojo345 said:


A docker container does not create any shares by it self.

 

Follow the instructions for your jd2 docker and create the needed shares/folders and route it in the dockers config.

I installed this from the "Apps" menu tab, and it indeed created a "downloads" share as part of the initial installation. By default, the config settings for `XDG_DOWNLOAD_DIR` and `Downloads folder` already point to it by default, unless `/mnt/user/NAME_OF_SHARE` isn't the correct path to use when mounting a share from within a Docker container.

1 hour ago, trurl said:

Post docker run 

Added this to my OP. Thanks.
 

docker run
  -d
  --name='MyJDownloader'
  --net='bridge'
  -e TZ="America/Los_Angeles"
  -e HOST_OS="Unraid"
  -e HOST_HOSTNAME="CmitNAS"
  -e HOST_CONTAINERNAME="MyJDownloader"
  -e 'MYJD_USER'='[email protected]'
  -e 'MYJD_PASSWORD'='My@ctualPassw0rd'
  -e 'MYJD_DEVICE_NAME'='Unraid'
  -e 'XDG_DOWNLOAD_DIR'='/mnt/user/downloads/'
  -l net.unraid.docker.managed=dockerman
  -l net.unraid.docker.icon='https://github.com/hussainalhaddad/docker-templates/raw/master/myjdownloader/logo.png'
  -p '3129:3129/tcp'
  -v '/mnt/user/appdata/jdownloader2/cfg':'/opt/JDownloader/cfg':'rw'
  -v '/mnt/user/appdata/jdownloader2/logs':'/opt/JDownloader/logs':'rw'
  -v '/mnt/user/downloads/':'/opt/JDownloader/Downloads':'rw'
  -v '/tmp/JDownloader':'/opt/JDownloader/app/tmp':'rw'
  --restart unless-stopped 'jaymoulin/jdownloader'
35710ee4d82f465e49c74a2ccbb6498a4e3cccdbdd8d36defe1f8e2ee6b69908

 

Link to comment
3 hours ago, Djoss said:

You are using the wrong thread (this one if for a different container). Under the Docker page, click the container icon and then select "Support".

Eep. Yes, you're right. I downloaded the Djoss one, configured it, and everything is WAI. Sorry for wasting your time. Attaching the Stone of Shame...

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...