JDownloader Community - Appwork GmbH
 

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 29.03.2017, 09:13
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default mvpdj.com - please support multipage

mvpdj.com - please support multipage
Deep-Crawling

User upload mp3
**External links are only visible to Support Staff****External links are only visible to Support Staff**

http:\/\/www\.mvpdj\.com/member/[0-9]/(\d+)
  #2  
Old 29.03.2017, 11:14
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,554
Default

Please use/create Linkcrawler rules for that
__________________
JD-Dev & Server-Admin
  #3  
Old 30.03.2017, 01:16
raztoki's Avatar
raztoki raztoki is offline
English Supporter
 
Join Date: Apr 2010
Location: Australia
Posts: 17,614
Default

we typically do not create entire profile decryption, as it drives loads up on site.

solution is to create a decrypter plugin, it's not hard and many working examples exist already.
or
as Jiaz recommended, linkcrawler rule

raztoki
__________________
raztoki @ jDownloader reporter/developer
http://svn.jdownloader.org/users/170

Don't fight the system, use it to your advantage. :]
  #4  
Old 10.04.2017, 22:20
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

An Error Occured:

Code:
{
"enabled" : true,
"maxDecryptDepth" : 1,
"name" : "mvpdj",
"pattern" : "http:\/\/www\.mvpdj\.com/member/[0-9]/(\d+)",
"rule" : "DEEPDECRYPT"
}
  #5  
Old 11.04.2017, 02:31
raztoki's Avatar
raztoki raztoki is offline
English Supporter
 
Join Date: Apr 2010
Location: Australia
Posts: 17,614
Default

this is USER error.

once again you're not specifying correct regex pattern.
ie Your not specifying how greedy the member name should be.
__________________
raztoki @ jDownloader reporter/developer
http://svn.jdownloader.org/users/170

Don't fight the system, use it to your advantage. :]
  #6  
Old 11.04.2017, 08:16
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Still error:

Code:
{
"enabled" : true,
"maxDecryptDepth" : 1,
"name" : "mvpdj",
"pattern" : "http:\/\/www\.mvpdj\.com/member/112821/(\d+)",
"rule" : "DEEPDECRYPT"
}
  #7  
Old 11.04.2017, 09:16
raztoki's Avatar
raztoki raztoki is offline
English Supporter
 
Join Date: Apr 2010
Location: Australia
Posts: 17,614
Default

original post is incorrect,
Quote:
Originally Posted by djmakinera View Post
**External links are only visible to Support Staff****External links are only visible to Support Staff**

http:\/\/www\.mvpdj\.com/member/[0-9]/(\d+)
then you copied pasted wrong again

Quote:
Originally Posted by djmakinera View Post
An Error Occured:

Code:
{
"enabled" : true,
"maxDecryptDepth" : 1,
"name" : "mvpdj",
"pattern" : "http:\/\/www\.mvpdj\.com/member/[0-9]/(\d+)",
"rule" : "DEEPDECRYPT"
}
this is wrong also

Quote:
Originally Posted by djmakinera View Post
Still error:

Code:
{
"enabled" : true,
"maxDecryptDepth" : 1,
"name" : "mvpdj",
"pattern" : "http:\/\/www\.mvpdj\.com/member/112821/(\d+)",
"rule" : "DEEPDECRYPT"
}

incorrect regex pattern clearly = user error.

you don't need to escape /
when you need to escape, you will need to double escape. once for regex and once for json storage.

I've added rule and it works aok, on the assumption your PATTERN is valid!

raztoki
__________________
raztoki @ jDownloader reporter/developer
http://svn.jdownloader.org/users/170

Don't fight the system, use it to your advantage. :]

Last edited by raztoki; 11.04.2017 at 09:18.
  #8  
Old 11.04.2017, 09:19
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,554
Default

Quote:
Originally Posted by djmakinera View Post
Still error:

Code:
{
"enabled" : true,
"maxDecryptDepth" : 1,
"name" : "mvpdj",
"pattern" : "http:\/\/www\.mvpdj\.com/member/112821/(\d+)",
"rule" : "DEEPDECRYPT"
}
You forgot that it is JSON and you have to escape \

Code:
[{
"enabled" : true,
"maxDecryptDepth" : 1,
"name" : "mvpdj",
"pattern" : "**External links are only visible to Support Staff**,
"rule" : "DEEPDECRYPT"
}]
__________________
JD-Dev & Server-Admin
  #9  
Old 12.04.2017, 22:45
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

Sorry, but it does not work properly

Code:
jd.plugins.PluginException: Unknown server
  #10  
Old 13.04.2017, 08:23
Jiaz's Avatar
Jiaz Jiaz is offline
JD Manager
 
Join Date: Mar 2009
Location: Germany
Posts: 79,554
Default

How about a proper bugreport? no logs, no example links......
__________________
JD-Dev & Server-Admin
  #11  
Old 13.04.2017, 18:12
djmakinera djmakinera is offline
Banned
 
Join Date: May 2010
Location: Poland
Posts: 8,387
Default

This does not work properly. Still can not decrypt the multipage

13.04.17 18.07.01 <--> 13.04.17 18.08.37 jdlog://6211189150841/

**External links are only visible to Support Staff****External links are only visible to Support Staff**
  #12  
Old 14.04.2017, 01:04
raztoki's Avatar
raztoki raztoki is offline
English Supporter
 
Join Date: Apr 2010
Location: Australia
Posts: 17,614
Default

user error once again,
the url you are copying isn't one that matches the pattern.
This is just common sense dj, you must match the pattern you create!
also by default maxdepth is 1 so it wont continue to crawl, you will need to copy those url yourself. ie /1 /2 /3 /4
log shows it working as intended with zero error/faults

raztoki

thread closed.
__________________
raztoki @ jDownloader reporter/developer
http://svn.jdownloader.org/users/170

Don't fight the system, use it to your advantage. :]
Closed Thread

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 04:28.
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.