I haven't tested it 100% yet but one part of the problem is definitely that khinsider.com changed the "/add_album" URLs inside their html code.
They're now represented as relative URLs vs absolute URLs and the provided LinkCrawler Rule was made for absolute URLs only.
This would be the new rule:
Code:
[
{
"cookies" : [
[
"xf_session",
"CENSORED"
]
],
"deepPattern" : "(/cp/add_album/\\d+)\"",
"formPattern" : null,
"maxDecryptDepth" : 1,
"name" : "downloads.khinsider.com loggedin 1: Grab add_album URL",
"packageNamePattern" : null,
"passwordPattern" : null,
"pattern" : "https?://downloads\\.khinsider\\.com/[^/]+/album/[^/]+",
"rule" : "DEEPDECRYPT",
"enabled" : true,
"logging" : true,
"updateCookies" : true
},
{
"cookies" : [
[
"xf_session",
"CENSORED"
]
],
"deepPattern" : "\"(https?://[^\"]+\\.zip)\">Click here",
"formPattern" : null,
"maxDecryptDepth" : 1,
"name" : "downloads.khinsider.com loggedin 2: Grab .zip files",
"packageNamePattern" : null,
"pattern" : "https?://downloads\\.khinsider\\.com/cp/add_album/\\d+",
"rule" : "DEEPDECRYPT",
"enabled" : true,
"logging" : true,
"updateCookies" : true
}
]
Rule as plaintext for easier copy & paste:
pastebin.com/raw/Si4bfhjm
I've highlighted the relevant changed part.