<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>JumboFiles ERROR</title>
        <description> Error when validating or starting download 
Message :: no string between '' and '' was found


To Fix: 
In File JumboFilesFileRunner.java -- 
# 1 - Change function to: 

    private void checkNameAndSize(String content) throws ErrorDuringDownloadingException {
        httpFile.setFileName(PlugUtils.getStringBetween(content, &quot;Download File &quot;, &quot;&quot;));
        PlugUtils.checkFileSize(httpFile, content, &quot; (&quot;, &quot;)&quot;);
        httpFile.setFileState(FileState.CHECKED_AND_EXISTING);
    }

# 2 - Copy and paste these lines, so this happens twice in a row, in function
    public void run() throws Exception {
    . . .
    . . .
        httpMethod = getMethodBuilder()
                .setReferer(fileURL)
                .setBaseURL(fileURL)
                .setActionFromFormWhereTagContains(&quot;method_free&quot;, true)
                .removeParameter(&quot;method_premium&quot;)
                .toPostMethod();

        if (!makeRedirectedRequest(httpMethod)) {
            checkDownloadProblems();//if downloading failed
            logger.warning(getContentAsString());//log the info
            throw new PluginImplementationException();//some unknown problem
        }
        checkDownloadProblems();    
    . . .
    . . .
    }

And in plugin.xml --- 
# 3 - Update version info line
        id=&quot;jumbofiles.com&quot; vendor=&quot;tong2shot+birchie&quot; version=&quot;1.0.1&quot;&amp;gt;</description>
        <link>https://wordrider.net/forum/10/9835/9835/_subject_#msg-9835</link>
        <lastBuildDate>Fri, 10 Apr 2026 10:56:28 +0000</lastBuildDate>
        <generator>Phorum 5.2.10</generator>
        <item>
            <guid>https://wordrider.net/forum/10/9835/9838/_subject_#msg-9838</guid>
            <title>Re: JumboFiles ERROR</title>
            <link>https://wordrider.net/forum/10/9835/9838/_subject_#msg-9838</link>
            <description><![CDATA[ Thanks, birchie! (tu):-)<br />
<br />
I've committed and released the plugin.]]></description>
            <dc:creator>tong2shot</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Wed, 23 May 2012 11:00:11 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/9835/9835/_subject_#msg-9835</guid>
            <title>JumboFiles ERROR</title>
            <link>https://wordrider.net/forum/10/9835/9835/_subject_#msg-9835</link>
            <description><![CDATA[ Error when validating or starting download <br />
Message :: no string between '' and '' was found<br />
<br />
<br />
<b>To Fix:</b> <br />
In File JumboFilesFileRunner.java -- <br />
<b># 1</b> - Change function to: <br />
<br />
    private void checkNameAndSize(String content) throws ErrorDuringDownloadingException {<br />
        httpFile.setFileName(PlugUtils.getStringBetween(content, "<h2>Download File ", "</h2>"));<br />
        PlugUtils.checkFileSize(httpFile, content, "</font> (", ")</font>");<br />
        httpFile.setFileState(FileState.CHECKED_AND_EXISTING);<br />
    }<br />
<br />
<b># 2</b> - Copy and paste these lines, so this happens twice in a row, in function<br />
    public void run() throws Exception {<br />
    . . .<br />
    . . .<br />
        httpMethod = getMethodBuilder()<br />
                .setReferer(fileURL)<br />
                .setBaseURL(fileURL)<br />
                .setActionFromFormWhereTagContains("method_free", true)<br />
                .removeParameter("method_premium")<br />
                .toPostMethod();<br />
<br />
        if (!makeRedirectedRequest(httpMethod)) {<br />
            checkDownloadProblems();//if downloading failed<br />
            logger.warning(getContentAsString());//log the info<br />
            throw new PluginImplementationException();//some unknown problem<br />
        }<br />
        checkDownloadProblems();    <br />
    . . .<br />
    . . .<br />
    }<br />
<br />
And in plugin.xml --- <br />
<b># 3</b> - Update version info line<br />
        id="jumbofiles.com" vendor="tong2shot+birchie" version="1.0.1"&gt;]]></description>
            <dc:creator>birchie</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Wed, 23 May 2012 05:04:16 +0000</pubDate>
        </item>
    </channel>
</rss>
