Is it possible to disable that download of the ini already exists in the main folder?
So basically it download the entire siteini.pack folder and only after checking if its even needed..
[ Info ] Checking Internet ..
[ Info ] Using timezone file: /root/.wg++/AR/reportv.com.ar/timezonesdata.txt
[ Info ] Downloading the latest WG++ siteini.pack
[ Info ] - siteini.pack downloaded successfully
[ Info ] Reading config file: /root/.wg++/AR/reportv.com.ar/WebGrab++.config.xml
[ Info ] For License request/update data, see WGLicense.log.txt
[ Info ] Checking License ..
[ Info ] - Program benefits setting "donator_license"
[ Info ] - If you want more, see http://webgrabplus.com/faq#faq_4768
[ Debug ]
[ Info ] found: /root/.wg++/AR/reportv.com.ar/reportv.com.ar.ini -- Revision 01

currently no.
a way to disable it has been asked for.
what i do is this..
if your running multiple configurations folders.
in each configuration folder create a link from siteini.pack to the siteini.pack folder in your main webgrab configuration that has the actual files.
this will solve both..
1. the need to copy ini files you use to each configuration folder
2. stop the multiple ini.pack downloads.
examples
windows..
i had to use a hard link for windows,soft link wouldnt work for me.
mklink /d destination_directory source_directory
mklink /d C:\Users\[username]\AppData\Local\WebGrab+Plus\folder1\siteini.pack C:\Users\[username]\AppData\Local\WebGrab+Plus\siteini.pack
mklink /d C:\Users\[username]\AppData\Local\WebGrab+Plus\folder2\siteini.pack C:\Users\[username]\AppData\Local\WebGrab+Plus\siteini.pack
linux
you cannot create a directory hard link in linux,soft link worked fine for me.
ln -s source_file link_name
ln -s /home/[username]/.wg++/sinteini.pack /home/[username]/.wg++/folder1/siteini.pack
ln -s /home/[username]/.wg++/sinteini.pack /home/[username]/.wg++/folder2/siteini.pack
Perfect! thank you.