how to put on the web - Resolved

Everything else that doesn't fall into one of the other categories.
Cool Dji
Posts: 11
Joined: Fri Mar 07, 2014 6:20 pm

how to put on the web - Resolved

Post by Cool Dji »

Hello,

At first, sorry for my bad english (...)

I have a web site with all the Spiderbasics libraries (Catalogs, Complilers...)
and i put SpiderBasic_Compilation0.html and SpiderBasic.js and data (of course) like that:

Spiderbasics (folder)
SpiderBasic_Compilation0.html
SpiderBasic.js

at http://www.jeuxvideobesancon.fr/SpiderB ... tion0.html

but it's not ok
i try with src"../Spiderbasic" on SpiderBasic_Compilation0.html, but no progress

I have use phaser and its more simple : i don't understant its not easy to do the same thing with SpiderBasic.html and js files...

http://jeuxvideobesancon.fr/factory.html coding with phaser

Thank you for help, i need to know what Spiderbasic libraries pu on my web site...
Last edited by Cool Dji on Sat May 31, 2014 9:05 pm, edited 1 time in total.
User avatar
Peter
Posts: 1086
Joined: Mon Feb 24, 2014 10:17 pm
Location: 127.0.0.1:9080
Contact:

Re: how to put on the web

Post by Peter »

take a look at my SpiderBasicCopier - Tool:

http://forums.spiderbasic.com/viewtopic.php?f=9&t=100

perhaps it fits your needs.

Greetings ... Peter
User avatar
MrTAToad
Posts: 291
Joined: Sun Apr 20, 2014 11:43 am
Location: Chichester, England
Contact:

Re: how to put on the web

Post by MrTAToad »

There is a slight "mistake" in the filenames, whereby the code wants something lowercase and the actual file is (partly) upper case.

Once that is sorted, everything should be okay.
Cool Dji
Posts: 11
Joined: Fri Mar 07, 2014 6:20 pm

Re: how to put on the web

Post by Cool Dji »

Thank Peter & MrTAToad for answer.
I try again & again ;) but my poor english can't help me on the SpiderBasic's Forum, but on day, it will be ok !!

I have put all the files like that :
Image
I think the directory inside SpiderBasic_Compilation0.html are not ok...

Code: Select all

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" type="image/png" href="favicon.png"/>
<title>SpiderBasic</title>
<script type="text/javascript">var spider = {}; spider.nbModules = 0; spider.nbLoadedModules = 0;</script>

<script type="text/javascript" data-main="/spiderbasic/libraries/javascript/main.js" src="/spiderbasic/libraries/javascript/require.js"></script>
<script type="text/javascript" src="/spiderbasic/libraries/javascript/library.js"></script>

<script type="text/javascript" src="/spiderbasic/libraries/javascript/xdate.dev.js"></script>
<script type="text/javascript" src="/spiderbasic/libraries/javascript/pixi.js"></script>
<link rel="stylesheet" title="Default" href="/spiderbasic/libraries/javascript/windows-7/windows-7.css" type="text/css" media="screen" />
<script type="text/javascript" src="SpiderBasic.js"></script>

</head>

<body class="claro" id="SpiderBody" onLoad="SpiderMain();">

</body>
</html>
User avatar
MrTAToad
Posts: 291
Joined: Sun Apr 20, 2014 11:43 am
Location: Chichester, England
Contact:

Re: how to put on the web

Post by MrTAToad »

Try using "spiderbasic" instead of "SpiderBasic" for the directory name - remember it's all case sensitive!
Cool Dji
Posts: 11
Joined: Fri Mar 07, 2014 6:20 pm

Re: how to put on the web - Resolved

Post by Cool Dji »

Yes, of course...Thank you MrTAToad, 'SpiderBasic/Libraries' to 'spiderbasic/libraries' and all is ok... :)
Post Reply