Flow Posted January 20, 2020 Report Share Posted January 20, 2020 Hi there, i am new to Ketarin and try to learn how it works. now i am stucked with Real Temp: https://www.techpowerup.com/download/techpowerup-real-temp/ i figured out the id & server_id from post data, but when i try to load the content in the variables screen, all i got is: "PK" the Plugin from the Database from 2018 shows the same error. I searched the forum, but maybe i missed something. Can you give me a hint? XML: <?xml version='1.0' encoding='utf-8'?> <Jobs> <ApplicationJob xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Guid="94f45156-e18e-4eb2-a0c0-b02426151c28"> <WebsiteUrl>http://www.techpowerup.com/gpuz/</WebsiteUrl> <UserAgent /> <UserNotes /> <LastFileSize>5260456</LastFileSize> <LastFileDate>2018-09-25T12:45:17.8899107</LastFileDate> <IgnoreFileInformation>false</IgnoreFileInformation> <DownloadBeta>Default</DownloadBeta> <DownloadDate>2018-09-26T22:19:09</DownloadDate> <CheckForUpdatesOnly>false</CheckForUpdatesOnly> <VariableChangeIndicator>version</VariableChangeIndicator> <HashVariable /> <HashType>None</HashType> <CanBeShared>false</CanBeShared> <ShareApplication>true</ShareApplication> <ExclusiveDownload>false</ExclusiveDownload> <HttpReferer /> <SetupInstructions /> <Variables> <item> <key> <string>url</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>Textual</VariableType> <Regex>(?<=Alternate Sources.*?\<a .*?href\=\").+?(?=\")</Regex> <Url>http://www.techpowerup.com/downloads/{url1}/mirrors.php</Url> <TextualContent>{download}</TextualContent> <Name>url</Name> </UrlVariable> </value> </item> <item> <key> <string>version</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex><h3>(.+?) <span></Regex> <Url>https://www.techpowerup.com/download/techpowerup-real-temp/</Url> <StartText>TechPowerUp GPU-Z v</StartText> <EndText><</EndText> <Name>version</Name> </UrlVariable> </value> </item> <item> <key> <string>appcat</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>Textual</VariableType> <Regex /> <TextualContent>{appname:regexreplace: \(.*\):}</TextualContent> <Name>appcat</Name> </UrlVariable> </value> </item> <item> <key> <string>appfile</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>Textual</VariableType> <Regex /> <TextualContent>{appname:multireplace:|:(|)| :|_|_}</TextualContent> <Name>appfile</Name> </UrlVariable> </value> </item> <item> <key> <string>server</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>(?<=server_id.*?value\=\").+?(?=\".*?closest to you)</Regex> <PostData>id=%7bid%7d</PostData> <Url>https://www.techpowerup.com/download/techpowerup-real-temp/#</Url> <Name>server</Name> </UrlVariable> </value> </item> <item> <key> <string>id</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>(?<=file clearfix expanded.*?value\=\").+?(?=\")</Regex> <Url>https://www.techpowerup.com/download/techpowerup-real-temp/</Url> <Name>id</Name> </UrlVariable> </value> </item> <item> <key> <string>download</string> </key> <value> <UrlVariable> <RegexRightToLeft>false</RegexRightToLeft> <VariableType>RegularExpression</VariableType> <Regex>(http[^']*zip)</Regex> <PostData>id=%7bid%7d&server_id=%7bserver%7d</PostData> <Url>https://www.techpowerup.com/download/file clearfix expanded/#</Url> <Name>download</Name> </UrlVariable> </value> </item> </Variables> <ExecuteCommand /> <ExecutePreCommand /> <ExecuteCommandType>Batch</ExecuteCommandType> <ExecutePreCommandType>Batch</ExecutePreCommandType> <Category>System</Category> <SourceType>FixedUrl</SourceType> <PreviousLocation /> <DeletePreviousFile>true</DeletePreviousFile> <Enabled>true</Enabled> <FileHippoId /> <LastUpdated>2018-09-25T12:45:17.8899107</LastUpdated> <TargetPath /> <FixedDownloadUrl>{url}</FixedDownloadUrl> <Name>Real Temp (Portable )</Name> </ApplicationJob> </Jobs> Link to comment Share on other sites More sharing options...
shawn Posted January 24, 2020 Report Share Posted January 24, 2020 It looks like this is a problem with that specific site. The content returned in {download} is the actual file so parsing for http[^']*zip isn't going to get you anywhere. Unfortunately, since that request is being POSTed to the server Ketarin can't (currently) perform the download natively. You can shell use the pre-download script to download it using an external system like wget, curl, powershell, or any other utility that has the ability to POST and download. Link to comment Share on other sites More sharing options...
Flow Posted January 28, 2020 Author Report Share Posted January 28, 2020 Thank you for your advice. im still learning the regex and was not sure if it was my fault. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now