dont use docker but if you install 2.1.0 and go into you container and relace all the files in the bin directory with the files from 3.2.3.1 it should work.
cd /storage/.kodi/addons/docker.linuxserver.webgrabplus
find -name "WebGrab+Plus.exe"
i assume this is in this directory somewhere.
version 2.1.0 may not have as many files as the bin directory of 3.2.3.1 does.
just copy everything from the bin directory of 3.2.3.1 to wherever the webgrab exe is in your docker container.
I found the wg ++ folder
/storage/.kodi/userdata/addon_data/service.system.docker/docker/overlay2/c4d60ab9d8b264f9c18a7400724491a51f9fabadef7d61e3164198b884a647dd/diff/app/wg++/
thats for the 4.2.2.0 dotnet version.
u cannot replace the files there because the sh file to run the dotnet webgrab version uses different filename...WebGrabPlus.dll
u need to find a 3.x or even 2.x docker image.
these all use the WebGrab+Plus.exe
only other thing u can do is dont install it as a docker image.
the default install path will be in /home/.wg++
for you i assume this will be /storage/.wg++
what i would do is simply extract the .wg++ folder from 3.2.3.1 and copy it to /storage
then in the .wg++ directory create a new sh file,say webgrab.sh
inside that put..
We couldn't continue yesterday. Web page
was unavailable.
The only thing I managed was that I installed version 3.2.3 in the dock and somehow it started to work. It took me a long time to understand how the docker works.
The problem with your instructions is that version 4 does not use mono but dotnet. I didn't know how to put it together.
Or I misunderstood your instructions.
Installation of WebGrab + Plus in the LibreElec and CoreElec System.
1. Install Addon Docker
Install from repository/All repositories/Services DOCKER
I wrote them all because some use LibreElec and others use CoreElec.
Open the terminal ssh:
2. Install WebGrab+Plus
Copy the entire code and paste it into the terminal. WebGrab+Plus is downloaded and configured automatically.
Code:
---
docker run -d \
--name=webgrabplus \
--hostname="Your WebGrab+Plus registered name" \
--mac-address="MAC address of your (already) registered PC at WebGrab+Plus" \
-e PUID=0 \
-e PGID=0 \
-e TZ=Europe/Amsterdam \
--restart unless-stopped \
linuxserver/webgrabplus:3.2.3
---
Replace Code and everything in them with your data.
Install;
3. There are two other folders in the volumes folder. They have a long name. (A mixture of letters and numbers)
Both folders contain one folder "_data"
One is empty (automatically there save guide.xml) and in the second are the WebGrab+Plus configuration files.
/storage/.kodi/userdata/addon_data/service.system.docker/docker/volumes/9a861848d91ffaae41779e1196a9e308d3c0b044fbe7fab240b22dde5bec8804/_data/
That folder name is unique and different for everyone!
How to configure "WebGrab ++. Config.xml" I will not deal with here. I guess that's clear.
All you have to do is use "license enforcement" in the login line. "f" Then when it clicks, remove the letter!
We couldn't continue yesterday. Web page
was unavailable.
The only thing I managed was that I installed version 3.2.3 in the dock and somehow it started to work. It took me a long time to understand how the docker works.
The problem with your instructions is that version 4 does not use mono but dotnet. I didn't know how to put it together.
Or I misunderstood your instructions.
dont worry about version 4 for now.
its doesnt work for this site,i posted above that i tried it.
version 4 uses a different grab engine that still needs some work.
cant provide any help with "it dont work"
upload your webgrab log.
Sorry.
There is my log.
try V4.2.2.3
https://github.com/SilentButeo2/webgrabplus-siteinipack/tree/master/eval...
its uses a new grab engine that may fix this problem.
Update:
i just tried it with 4.2.2.3 and it didnt work.
use V3.2.3.1(needs mono) or the latest V3.x.x docker image avail.
it works ok.
It will probably be a bit of a problem. I use
ODROID N2+ 4G, CoreElec - 19.4-Matrix
Addon WebGrab+Plus(LinuxServer.io)LinuxServer.io-2.1.0
I don't know how to change the wg ++ version there.
dont use docker but if you install 2.1.0 and go into you container and relace all the files in the bin directory with the files from 3.2.3.1 it should work.
Talk about the folder
/storage/.kodi/addons/docker.linuxserver.webgrabplus/bin/ ??
there are only two files - docker.linuxserver.webgrabplus and file - stop
The problem is that I don't know where the specific wg ++ files are. I can't find them anywhere
cd /storage/.kodi/addons/docker.linuxserver.webgrabplus
find -name "WebGrab+Plus.exe"
i assume this is in this directory somewhere.
version 2.1.0 may not have as many files as the bin directory of 3.2.3.1 does.
just copy everything from the bin directory of 3.2.3.1 to wherever the webgrab exe is in your docker container.
maybe the files are also mounted from outside the container
also try
cd /storage
find -name "WebGrab+Plus.exe"
i think your docker compose file should have the directory
I found the wg ++ folder
/storage/.kodi/userdata/addon_data/service.system.docker/docker/overlay2/c4d60ab9d8b264f9c18a7400724491a51f9fabadef7d61e3164198b884a647dd/diff/app/wg++/
thats for the 4.2.2.0 dotnet version.
u cannot replace the files there because the sh file to run the dotnet webgrab version uses different filename...WebGrabPlus.dll
u need to find a 3.x or even 2.x docker image.
these all use the WebGrab+Plus.exe
I can't find wg ++ .exe anywhere, I found the installer
only other thing u can do is dont install it as a docker image.
the default install path will be in /home/.wg++
for you i assume this will be /storage/.wg++
what i would do is simply extract the .wg++ folder from 3.2.3.1 and copy it to /storage
then in the .wg++ directory create a new sh file,say webgrab.sh
inside that put..
!#/bin/sh
mono /storage/.wg++/bin/WebGrab+Plus.exe /storage/.wg++
exit
make it executeable
chmod +x /storage/.wg++/webgrab.sh
to run webgrab..
/storage/.wg++/webgrab.sh
you may need to edit the above if mono is not in your path variable
/path/to/mono/mono /storage/.wg++/bin/WebGrab+Plus.exe /storage/.wg++
We couldn't continue yesterday. Web page
was unavailable.
The only thing I managed was that I installed version 3.2.3 in the dock and somehow it started to work. It took me a long time to understand how the docker works.
The problem with your instructions is that version 4 does not use mono but dotnet. I didn't know how to put it together.
Or I misunderstood your instructions.
Installation of WebGrab + Plus in the LibreElec and CoreElec System.
1. Install Addon Docker
Install from repository/All repositories/Services DOCKER
I wrote them all because some use LibreElec and others use CoreElec.
Open the terminal ssh:
2. Install WebGrab+Plus
Copy the entire code and paste it into the terminal. WebGrab+Plus is downloaded and configured automatically.
Code:
---
docker run -d \
--name=webgrabplus \
--hostname="Your WebGrab+Plus registered name" \
--mac-address="MAC address of your (already) registered PC at WebGrab+Plus" \
-e PUID=0 \
-e PGID=0 \
-e TZ=Europe/Amsterdam \
--restart unless-stopped \
linuxserver/webgrabplus:3.2.3
---
Replace Code and everything in them with your data.
Install;
3. There are two other folders in the volumes folder. They have a long name. (A mixture of letters and numbers)
Both folders contain one folder "_data"
One is empty (automatically there save guide.xml) and in the second are the WebGrab+Plus configuration files.
/storage/.kodi/userdata/addon_data/service.system.docker/docker/volumes/9a861848d91ffaae41779e1196a9e308d3c0b044fbe7fab240b22dde5bec8804/_data/
That folder name is unique and different for everyone!
How to configure "WebGrab ++. Config.xml" I will not deal with here. I guess that's clear.
All you have to do is use "license enforcement" in the login line. "f" Then when it clicks, remove the letter!
Autostart is set in the "wg3-cron" file
4. Restart Docker.
https://github.com/jojoxyz/Installation-of-WebGrab-Plus-in-the-LibreElec...
dont worry about version 4 for now.
its doesnt work for this site,i posted above that i tried it.
version 4 uses a different grab engine that still needs some work.
No problem. I made v3.2.3 and it works fine. I put the instructions on GitHub.
the issue with 4.x versions has been fix in V4.2.2.5 if u prefer to use dotnet
https://github.com/SilentButeo2/webgrabplus-siteinipack/tree/master/eval...
Thank you for the information.