Hi everyone,
I successfully installed the FileBrowser widget on my website, and now I'd like to turn it into a portal (iGoogle like) widget but I encounter some issues.
Here's the html I use for my portal widget:
<head> <script src="http://myremoteserver.org/meteora/src/meteora.js" type="text/javascript"></script> </head>
<body>
<script type="text/javascript"> Meteora.uses('Meteora.Filebrowser'); Meteora.showDebug(true);Meteora.onStart( function() { new Filebrowser( 'filebrowser-div', 'filebrowser.php', { 'path': '/' } ); } ); </script> </body>
Firebug gives me 2 errors:
“Meteora.options is undefined” in Meteora.js at line 376 --> “ if (Meteora.options.debug.startOpened) { ”
And the second one:
Meteora.uses is not a function in the html code above at line 20 --> “ Meteora.uses('Meteora.Filebrowser'); ”
It may be worth to mention that the server-side script “filebrowser.php” is basically the script that is given in the test folder, and that the portal and the meteora library are hosted on 2 different servers.
Thanks a lot for your help!