Fritzing without Donation

Download Fritzing without donation.

< Feedback on Fritzing without Donation

Review: Good - script works

§
Posted: 2020-06-07

Script works, needs small mod per user

Script works! However, it seems the fritzing website generates a unique address for the download Open up the page source and find the html around the download button. There is a URL under "return" value of the form "https://fritzing.org/download/?d3821=1" My unique code was "?d3821=1", this number needs to be copied into the script for it to run correctly Below is the HTML for the fritzing download page

<form action="https://www.paypal.com/cgi-bin/webscr/?lc=US" method="post" id="donateForm">
<p class="messages"></p>

<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="download@fritzing.org">
<input type="hidden" name="item_name" value="Download Fritzing">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="return" value="https://fritzing.org/download/?d3821=1">
<input type="hidden" name="cancel_return" value="https://fritzing.org/download/?d3821=0">
<input type="hidden" name="image_url" value="https://fritzing.org/static/img/fritzing.png">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="rm" value="2">

And we need to replace this line in the script with your unique download link

    form.action = "https://fritzing.org/download/?d7547=1";
    form.method = "POST";

Post reply

Sign in to post a reply.