Mikrotik- Custom hotspot HTTP-CHAP - mikrotik

i have create some custom page for my mikrotik hotspot
but i have problem with it
with default hotspot theme when i checked "HTTP-CHAP" client users login without any error
but with my custom error client users can't login into hotspot and they saw this error "web browser did not send challenge response (try again, enable JavaScript)"
this is my custom HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<!--META-->
<link href="css/font-awesome.min.css" type="text/css" rel="stylesheet">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="expires" content="-1" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"/>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<title>ورود کاربر</title>
</head>
$(if chap-id)
<form name="sendin" action="$(link-login-only)" method="post">
<input type="hidden" name="username" />
<input type="hidden" name="password" />
<input type="hidden" name="dst" value="$(link-orig)" />
<input type="hidden" name="popup" value="true" />
</form>
<script type="text/javascript" src="/md5.js"></script>
<script type="text/javascript">
<!--
function doLogin() {
document.sendin.username.value = document.login.username.value;
document.sendin.password.value = hexMD5('$(chap-id)' + document.login.password.value + '$(chap-challenge)');
document.sendin.submit();
return false;
}
//-->
</script>
$(endif)
<!--STYLESHEETS-->
<!--SCRIPTS-->
<script type="text/javascript" src="/jquery.min.js"></script>
<!--Slider-in icons-->
<body id="login-body">
<form name="login-form" class="login-form" action="" method="post">
<div class="header">
<center><p style="text-align: center;"><img src="images/logo.png" /></p></center><!--END TITLE-->
</div>
<div class="content">
<form name="login" action="$(link-login-only)" method="post"
$(if chap-id) onSubmit="return doLogin()" $(endif)>
<input type="hidden" name="dst" value="$(link-orig)" />
<input type="hidden" name="popup" value="true" />
<input name="username" type="text" required="required" placeholder="نام کاربری خود را وارد نمایید" class="login-input" onfocus="this.value=''" size="30" /><!--END USERNAME-->
<input name="password" type="password" required="required" placeholder="رمز عبور خود را وارد نمایید" class="login-input" onfocus="this.value=''" size="30" /><!--END PASSWORD-->
<button class="login-btn" type="submit">اتصال <i class="fa fa-sign-in fa-lg"></i></button>
<font color="#AC2925"><center>$(if error) $(error) $(endif)</center></font>
</div>
</form>
</body>
<script type="text/javascript">
<!--
document.login.username.focus();
//-->
</script>
</html>

Related

SpringBoot - I tried to pass parameters from a view to controller, and I tried to display result in another view, but it doesn't work

I tried to build a form in home.jsp
<form method="POST" action="uploadfile" th:action="#{/uploadfile}" enctype="multipart/form-data">
<input type="file" name="file" accept=".xls"/> <br/><br/>
<label for="fname">order address:</label>
<input type="text" id="address" name="address" size="50">
<label for="lname">order account:</label>
<input type="text" id="account" name="account" size="50"><br/><br/>
<label for="lname">:</label>
<button type="submit">summit/button>
</form>
result.jsp
<%# page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/style.css" rel="stylesheet">
<meta charset="UTF-8">
<title>result</title>
</head>
<body>
<div th:if="${message}">
<h2 th:text="${message}"/></div>
<form action="/download" method="post">
<text name="filename" type="text" value="${downloadfile}"/><br/>
<input type="submit" value="download XML" />
</form>
</body>
</html>
here is my controller
#PostMapping("/uploadfile")
public ModelAndView uploadFile(#RequestParam("file") MultipartFile file,
#RequestParam(name="address", required = false) String myaddress,
#RequestParam(name="account", required = false) String myaccount
)
{
....................
..................
ModelAndView model = new ModelAndView("result"); //tried to return this parameters
model.addObject("excecontentslist",tempExcelcontentList); //tried to show the contents of Excel
model.addObject("message",consequencemsg);//tried to show the message we have
model.addObject("downloadfile",xmlfilename); //tried to show the xml which is gonna download
return model;//got 404 error when all things has been done
}
all I trying to do was to send datas which is model to result.jsp to show the data out there,but it doesn't work,just showed the 404 error ,any idea?

java.lang.ClassNotFoundException: org.unbescape.uri.UriEscape

I get this error when ever I try to load this web page:
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<link rel="stylesheet" type="text/css" th:href="#{/webjars/bootstrap/3.3.7/css/bootstrap.min.css}"/>
<link rel="stylesheet" type="text/css" th:href="#{/css/main.css}"/>
<title>Competition</title>
</head>
<body>
<div>
<p th:text="'Name: ' + ${competition.name}" />
<p th:text="'Date: ' + ${competition.date}" />
<p th:text="'Venue: ' + ${competition.Venue}" />
<div th:if="${competition.competitors != null}">
<h3>Competitors</h3>
<ul>
<li th:each="item : ${competition.competitors}" th:text="${item}"></li>
</ul>
</div>
<h4>Add Competitor.</h4>
<form action="#" th:action="#{/competitions/{id}(id=${competition.id})}" th:object="${email}" method="post">
<p>User email: <input type="text" th:field="*{text}" /></p>
<p><input type="submit" value="Submit" /> <input type="reset" value="Reset" /></p>
</form>
</div>
<p th:text="${competition.id}"></p>
</body>
</html>
I added the org.unbescape dependency to my pom.xml.
I started getting this error when I added the the URL to the form
(This line:)
th:action="#{/competitions/{id}(id=${competition.id})}"
It looks like you are using a older version of org.unbescape. The class UriEscape was introduced in versin 1.1.0. Ref here
Can you try by upgrading the org.unbescape version to 1.1.1 as follows?
<dependency>
<groupId>org.unbescape</groupId>
<artifactId>unbescape</artifactId>
<version>1.1.1.RELEASE</version>
</dependency>

Navigate to new page after log-in using vbs script

I am new to vb scripts and I am having problems creating a vb script that firstly logs-in the user and then navigates to a certain page once logged in.
The script below opens IE then navigates to the log-in page and enters the UserName and Password and clicks the 'Log-In' button.
Please can someone advise how I can add to this script? I would like to send the user to a certain page once they are logged in.
WScript.Quit Main
Function Main
Set IE = WScript.CreateObject("InternetExplorer.Application", "IE_")
IE.Visible = True
IE.Navigate "http://examplewebsite.com"
Wait IE
With IE.Document
.getElementByID("UserName").value = "username"
.getElementByID("Password").value = "password"
IE.Document.All.Item("login-submit-button").Click
End With
End Function
Sub Wait(IE)
Do
WScript.Sleep 500
Loop While IE.ReadyState < 4 And IE.Busy
Do
WScript.Sleep 500
Loop While IE.ReadyState < 4 And IE.Busy
End Sub
Sub IE_OnQuit
On Error Resume Next
WScript.StdErr.WriteLine "IE closed before script finished."
WScript.Quit
End Sub
I have tried adding the code below but it didn't work:
WScript.Sleep 10000
IE.Navigate "http://the_required_page.html"
The log-in is successful and I can manually navigate to the required page by clicking the link for the required page, but I cannot seem to automate navigating to the page within the script.
Any assistance is gratefully received.
Many thanks,
James
Edit - source code for website
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Trakline Dashboard Portal</title>
<link rel="shortcut icon" href="http://london.trakline-ats.co.uk/resources/images/favicon48.ico" type="image/x-icon" />
<link rel="shortcut icon" type="image/png" href="http://london.trakline-ats.co.uk/resources/images/CustomIcons/96px/favicon.png" />
<!-- For iPhone 4 with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/resources/images/mobile/home114.png" />
<!-- For first-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/resources/images/mobile/home72.png" />
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: 57x57-->
<link rel="apple-touch-icon-precomposed" href="/resources/images/mobile/home57.png" />
<meta name="application-id" content="Ats" />
<meta name="application-name" content="Trakline Dashboard" />
<meta name="msapplication-task" content="name=Dashboard;action-uri=http://london.trakline-ats.co.uk/Home/Index/1;icon-uri=http://london.trakline-ats.co.uk/resources/images/favicon48.ico" />
<meta name="msapplication-task" content="name=Driver;action-uri=http://london.trakline-ats.co.uk/Driver/Index;icon-uri=http://london.trakline-ats.co.uk/resources/images/favicon48.ico" />
<meta name="msapplication-task" content="name=Place;action-uri=http://london.trakline-ats.co.uk/Place/Index;icon-uri=http://london.trakline-ats.co.uk/resources/images/favicon48.ico" />
<meta name="msapplication-task" content="name=Resource;action-uri=http://london.trakline-ats.co.uk/Resource/Index;icon-uri=http://london.trakline-ats.co.uk/resources/images/favicon48.ico" />
<meta name="msapplication-task" content="name=Tracking;action-uri=http://london.trakline-ats.co.uk/Tracking/Index;icon-uri=http://london.trakline-ats.co.uk/resources/images/favicon48.ico" />
<meta name="msapplication-task" content="name=Job Management Summary;action-uri=http://london.trakline-ats.co.uk/Work/JobManagementSummary;icon-uri=http://london.trakline-ats.co.uk/resources/images/favicon48.ico" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" type="text/css" href="/Content/bundles/DefaultCss?v=5yfqfmmmlZJHRL7LnThimyGpnaudP_rjY0267sKWKCs1" />
<link rel="stylesheet" type="text/css" href="/Content/bundles/BootstrapCss?v=U8XMYNxuaH-VgydGMd0j-UlPVtSRmGgzgAeLpBb9PzA1" />
<link rel="stylesheet" type="text/css" href="/Content/bundles/MapCss?v=_NG0UPFwckHnB0mbnxCHfABwf4bb0swcSlUOmSbgnpg1" />
<link rel="stylesheet" type="text/css" href="/Content/bundles/DataTablesCss?v=RfwLQxGDTuOKhHht1soeL-FFxjkoS9dp2lDPjjt4Q-g1" />
<!--[if lte IE 9]>
<link rel="stylesheet" type="text/css" href="/Content/default/Bootstrap/css/bootstrap-ie9.css" />
<![endif]-->
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="/Content/default/Bootstrap/css/bootstrap-ie8.css" />
<![endif]-->
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="/Content/default/Bootstrap/css/bootstrap-ie7.css" />
<![endif]-->
<link href="/Zip/Style/8_12_0_HF01?Path=dAAAAB%2BLCAAAAAAABADsvQdgHEmWJSYvbcp7f0r1StfgdKEIgGATJNiQQBDswYjN5pLsHWlHIymrKoHKZVZlXWYWQMztnbz33nvvvffee%2B%2B997o7nU4n99%2F%2FP1xmZAFs9s5K2smeIYCqyB8%2FfnwfPyLunlTLNl%2B2d6vLvK6LWX73rKnaOnt796d%2F0Tqvr7fXxfbueHdnfG88XTdttRhPm%2BZnht%2F6wQ9%2BELaY5efZumzvNvl0XeczfPn%2FBAAA%2F%2F%2Fyf7AEdAAAAA%3D%3D" type="text/css" rel="stylesheet" />
<!--[if lt IE 9]><link href="/Zip/Style/8_12_0_HF01?Path=JgAAAB%2BLCAAAAAAABADsvQdgHEmWJSYvbcp7f0r1StfgdKEIgGATJNiQQBDswYjN5pLsHWlHIymrKoHKZVZlXWYWQMztnbz33nvvvffee%2B%2B997o7nU4n99%2F%2FP1xmZAFs9s5K2smeIYCqyB8%2FfnwfPyLunlTLNl%2B2d2f5ebYu27tPq6vlRZ3N8id1ddXk9cF42jT%2FTwAAAP%2F%2FM%2FnnIiYAAAA%3D" type="text/css" rel="stylesheet" /><![endif]-->
<!--[if lt IE 8]><link href="/Zip/Style/8_12_0_HF01?Path=JgAAAB%2BLCAAAAAAABADsvQdgHEmWJSYvbcp7f0r1StfgdKEIgGATJNiQQBDswYjN5pLsHWlHIymrKoHKZVZlXWYWQMztnbz33nvvvffee%2B%2B997o7nU4n99%2F%2FP1xmZAFs9s5K2smeIYCqyB8%2FfnwfPyLunlTLNl%2B2d2f5ebYu27tPq6vlRZ3N8id1ddXk9YPxtGn%2BnwAAAP%2F%2F4m63oCYAAAA%3D" type="text/css" rel="stylesheet" /><![endif]-->
<!--[if lt IE 7]><link href="/Zip/Style/8_12_0_HF01?Path=JgAAAB%2BLCAAAAAAABADsvQdgHEmWJSYvbcp7f0r1StfgdKEIgGATJNiQQBDswYjN5pLsHWlHIymrKoHKZVZlXWYWQMztnbz33nvvvffee%2B%2B997o7nU4n99%2F%2FP1xmZAFs9s5K2smeIYCqyB8%2FfnwfPyLunlTLNl%2B2d2f5ebYu27tPq6vlRZ3N8id1ddXk9afjadP8PwEAAP%2F%2FUkfXnSYAAAA%3D" type="text/css" rel="stylesheet" /><![endif]-->
</head>
<body class="secured">
<div class="page">
<div id="header">
<h1>
</h1>
</div>
<div id="main">
<p>
<img src="/resources/images/default/logo.png" alt="Trakline" title="Trakline" />
</p>
<p>
Please enter your username and password.
</p>
<form action="/Account/Logon" id="login-form" method="post"><input data-val="true" data-val-required="The IsForgottenPassword field is required." id="IsForgottenPassword" name="IsForgottenPassword" type="hidden" value="False" /><input Value="0" data-val="true" data-val-number="The field LogOnAttemptCount must be a number." data-val-required="The LogOnAttemptCount field is required." id="LogOnAttemptCount" name="LogOnAttemptCount" type="hidden" value="0" /><input Value="0" data-val="true" data-val-number="The field CaptchaAuthenticationId must be a number." data-val-required="The CaptchaAuthenticationId field is required." id="CaptchaAuthenticationId" name="CaptchaAuthenticationId" type="hidden" value="0" /><input Value="False" data-val="true" data-val-required="The ShowCaptcha field is required." id="ShowCaptcha" name="ShowCaptcha" type="hidden" value="False" /> <fieldset class="ui-state-default ui-corner-all">
<div class="editor-label">
<label for="UserName">Username</label>
</div>
<div class="editor-field">
<input data-val="true" data-val-required="The Username field is required." id="UserName" maxlength="32" name="UserName" type="text" value="" />
<span class="field-validation-valid" data-valmsg-for="UserName" data-valmsg-replace="true"></span>
</div>
<div class="editor-label">
<label for="Password">Password</label>
</div>
<div class="editor-field">
<input autocomplete="off" data-val="true" data-val-required="The Password field is required." id="Password" name="Password" type="password" />
<span class="field-validation-valid" data-valmsg-for="Password" data-valmsg-replace="true"></span>
</div>
<input type="submit" value="Log On" id="login-submit-button" />
<a id="forgotten-submit-button" href="#">Forgotten Password</a>
</fieldset>
<div id="downgradeCompatWarning"></div>
</form>
<div id="footer">
</div>
</div>
</div>
<div id="buildDetails">
<div id="buildDetailsSummaryLink">
?
</div>
<div id="buildDetailsSummary">
<dl>
<dd>BuildVersion: "8.12.71.429"</dd>
<dd>HotFix: "8_12_0_HF01"</dd>
<dd>BuildDate: "12/22/2014 00:32:04"</dd>
<dd>RenderDate: "02/24/2015 16:03:54"</dd>
</dl>
</div>
</div>
<script type="text/javascript" src="/Zip/Script/8_12_0_HF01?Path=BAIAAB%2BLCAAAAAAABADsvQdgHEmWJSYvbcp7f0r1StfgdKEIgGATJNiQQBDswYjN5pLsHWlHIymrKoHKZVZlXWYWQMztnbz33nvvvffee%2B%2B997o7nU4n99%2F%2FP1xmZAFs9s5K2smeIYCqyB8%2FfnwfPyLuvp7Wxapt7k7XTVst7p4uL4u6Wi7yZev%2F%2FpNZXWSTMm%2FGP938jH3np3%2FROq%2Bvt3fHD8c7kS%2FG62U1aet1U1zm29lPZ%2B%2FGi2IZa3eZlcUsa%2FOxILGxiQczaKf4S%2FOviu2XdV5W2SyG77oglHd3OjgrgFVdtVV7veoMtWiqts7eGgxnRVZWF7H3szKv2%2BCL7%2FwEej191%2BbLpqiWdkgvs6a5qurZ67bOlxftPAZtUldXTV4%2Fzdt82tLLw0MeGwxXCjbW9FXeVOt6mjfut%2FFPN%2F9PAAAA%2F%2F9Zc2F%2FBAIAAA%3D%3D"></script><script type="text/javascript" src="/Zip/Script/8_12_0_HF01?Path=dQAAAB%2BLCAAAAAAABADsvQdgHEmWJSYvbcp7f0r1StfgdKEIgGATJNiQQBDswYjN5pLsHWlHIymrKoHKZVZlXWYWQMztnbz33nvvvffee%2B%2B997o7nU4n99%2F%2FP1xmZAFs9s5K2smeIYCqyB8%2FfnwfPyLuNtO6WLXN3em6aavF3VV2kTd3j6fTar1s777Mmuaqqmcn82x5kY9%2FuvmZze2fVxfVkpu9Dps9WRfl7E11cVECyv8TAAD%2F%2F2%2FH3511AAAA"></script>
<script type="text/javascript" src="/Zip/Script/8_12_0_HF01?Path=FwAAAB%2BLCAAAAAAABADsvQdgHEmWJSYvbcp7f0r1StfgdKEIgGATJNiQQBDswYjN5pLsHWlHIymrKoHKZVZlXWYWQMztnbz33nvvvffee%2B%2B997o7nU4n99%2F%2FP1xmZAFs9s5K2smeIYCqyB8%2FfnwfPyLuvp7Wxapt7k7XTVst7p5UdT7%2B6eb%2FCQAA%2F%2F9BgP%2BAFwAAAA%3D%3D"></script>
</body>
</html>
Try like this :
Option Explicit
Dim IE,Helem
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = 1
IE.navigate "http://www.example.com/login"
Do While (IE.Busy)
WScript.Sleep 10
Loop
Set Helem = IE.document.getElementById("UserName")
Helem.Value = "NomUtilisateur"
Set Helem = IE.document.getElementById("Password")
Helem.Value = "MotDePasse"
Set Helem = IE.document.Forms(0)
Helem.Submit

Odd behavoir from validation script

I have this script and form that I alteret so that I can pass a variable. The original was called by onSubmit='return validateForm()'. After altering the script, only onClick will work. If using onSubmit, it just submits thr form no matter checked og not.
Can anybody tell me why the difference in behavior?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script type="text/javascript">
function validateForm(a) {
var radios = document.getElementsByName('tjek' + [a]);
var radiosChecked = false;
var i = 0;
while (!radiosChecked && i < radios.length) {
if (radios[i].checked) radiosChecked = true;
i++;
}
if (!radiosChecked) {
alert("Du skal vælge en mulighed!")
return false;
}
}
</script>
</head>
<body>
<form name="Form" action="http://google.com" method="get">
<input name="tjek1" type="radio" value="" />
<input name="tjek1" type="radio" value="" />
<input type="submit" value="Send" onClick="return validateForm(1)" />
</form>
<form name="Form" action="http://bing.com" method="get">
<input name="tjek2" type="radio" value="" />
<input name="tjek2" type="radio" value="" />
<input type="submit" value="Send" onClick="return validateForm(2)" />
</form>
</body>
</html>
I see no difference in behavior: live demo.
The used code, in which I essentially only changed the onclick to onsubmit, and only in the first form:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script type="text/javascript">
function validateForm(a) {
var radios = document.getElementsByName('tjek' + [a]);
var radiosChecked = false;
var i = 0;
while (!radiosChecked && i < radios.length) {
if (radios[i].checked) radiosChecked = true;
i++;
}
if (!radiosChecked) {
alert("Du skal vælge en mulighed!")
return false;
}
}
</script>
</head>
<body>
<form name="Form" onsubmit="return validateForm(1)" action="http://google.com" method="get">
<input name="tjek1" type="radio" value="" />
<input name="tjek1" type="radio" value="" />
<input type="submit" value="Send" />
</form>
<form name="Form" action="http://bing.com" method="get">
<input name="tjek2" type="radio" value="" />
<input name="tjek2" type="radio" value="" />
<input type="submit" value="Send" onClick="return validateForm(2)" />
</form>
</body>
</html>

Adding button to jQuery Mobile page shows blank page on Windows Phone 7

I'm experimenting with jQuery Mobile and have run into a problem on my Windows Phone 7 browser.
Whenever I add a button to the page, either <input type='button'> or <button>, the whole page doesn't render in the WP7 IE.
When I view the same page in IE7 (using IETester) I get a Script Error "Object doesn't support this property or method" Line 17 Char 45703, and then the page doesn't render.
Here's the html that's generated for my page:
<!DOCTYPE html>
<html>
<head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1" /><link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
<title>
iplan
</title></head>
<body>
<div data-role="page" data-theme="b">
<div data-role="header">
<h1>
mobile login</h1>
</div>
<div data-role="content">
ello
<form name="aspnetForm" method="post" action="default.aspx" id="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTIzNjAxMDE2M2Rk5Yr3L4N9Yyh0TZrUHAh3ZX6rJck=" />
</div>
<label for="ctl00_ContentPlaceHolder1_txtUsername" id="ctl00_ContentPlaceHolder1_lblUsername">Username</label>
<input name="ctl00$ContentPlaceHolder1$txtUsername" type="text" id="ctl00_ContentPlaceHolder1_txtUsername" />
<br />
<label for="ctl00_ContentPlaceHolder1_txtPassword" id="ctl00_ContentPlaceHolder1_Label1">Password</label>
<input name="ctl00$ContentPlaceHolder1$txtPassword" type="password" id="ctl00_ContentPlaceHolder1_txtPassword" />
<br />
<input type="submit" name="ctl00$ContentPlaceHolder1$btnLogin" value="Login" id="ctl00_ContentPlaceHolder1_btnLogin" />
<span id="ctl00_ContentPlaceHolder1_Label2">Boo</span>
</form>
</div>
<div data-role="footer">
© 2011</div>
</div>
</body>
</html>
When I remove that <input type="submit" ... the page renders correctly.
Any ideas?
I had the same problem. Turned out I was using an out of date version of jQuery.
Solved this by using the most recent version.

Resources