I tryed the new version.
It didn't work also.
The libraries do not get copied automaticly as stated in the documentation.
This should work according to the documentation:
SpiderBasic library path
The library path where all SpiderBasic dependencies should be loaded from. It can be relative to the main HTML file, or be loaded from another server. This should be a raw copy of the 'SpiderBasic/Libraries/JavaScript' directory. If no value is specified, the default JavaScript directory will be "spiderbasic".
Copy SpiderBasic libraries
If enabled, it will copy automatically the 'SpiderBasic/Libraries/JavaScript' content to the directory in 'SpiderBasic library path'. The path has to be relative and the destination directory structure needs to be already created.
It doesn't. Not on Ubuntu. Very strange, when on filesystem started it works, On the server (Apache web server on XAMMP) not working.
The webapp is not complex:
Code: Select all
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="user-scalable=no, width=device-width, height=device-height, initial-scale=1, minimum-scale=1, maximum-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script type="text/javascript">var spider = {}; spider.nbModules = 1; spider.nbLoadedModules = 0;</script>
<title>Rekenmachine</title>
<script type="text/javascript">function onLoad() { spiderCheckBrowser(); }</script>
<script type="text/javascript" src="./javascript/platform.js"></script>
<script type="text/javascript" src="./javascript/init.js"></script>
<script type="text/javascript">dojoConfig.baseUrl = './javascript/'; </script>
<script type="text/javascript" src="./javascript/dojo/dojo.js"></script>
<script type="text/javascript" src="./javascript/main.js?t=1770302805"></script>
<link rel="stylesheet" href="./javascript/dojo/themes/claro/claro.css" />
<link rel="stylesheet" href="./javascript/dojo/dgrid/css/dgrid.css" />
<script type="text/javascript" src="./javascript/xdate.min.js"></script>
<link rel="stylesheet" title="Default" href="./javascript/themes/flat/window.css" type="text/css"/>
<script type="text/javascript" src="rekenmachine.js?t=1770302805"></script>
<link rel="icon" type="image/png" href="favicon.png"/>
</head>
<body oncontextmenu="return false;" class="claro" id="spiderbody" onload="onLoad()">
</body>
</html>