thank you very much for your help, but it still not working and i had the same error, this my config.js :
/*** * APE JSF Setup */ APE.Config.baseUrl = 'http://ape.ape-test.local/ape-jsf'; //APE JSF APE.Config.domain = 'auto'; //Your domain, must be the same than the domain in aped.conf of your server APE.Config.server = 'ape.ape-test.local'; //APE server URL (function(){ for (var i = 0; i < arguments.length; i++) APE.Config.scripts.push(APE.Config.baseUrl + '/Source/' + arguments[i] + '.js'); })('mootools-core', 'Core/APE', 'Core/Events', 'Core/Core', 'Pipe/Pipe', 'Pipe/PipeProxy', 'Pipe/PipeMulti', 'Pipe/PipeSingle', 'Request/Request','Request/Request.Stack', 'Request/Request.CycledStack', 'Transport/Transport.longPolling','Transport/Transport.SSE', 'Transport/Transport.XHRStreaming', 'Transport/Transport.JSONP', 'Core/Utility', 'Core/JSON'); On Wed, Mar 30, 2011 at 10:39 AM, blueklein76 <[email protected]> wrote: > There's a bug in the server side JS. > > Open up <server>/scripts/framework/mootools.js and you'll see at the > top the declarations for: > > setTimeout = Ape.setTimeout; > setInterval = Ape.setInterval; > > Just add in 2 extra lines: > > clearTimeout = Ape.clearTimeout; > clearInterval = Ape.clearInterval; > > and everything will work fine. > > > > On Mar 30, 4:37 am, Pablo <[email protected]> wrote: > > While developig a server module i successfully used the JS function > > 'setInterval' but when i tried o used 'clearInterval' i got an error > > > > JS:ReferenceError: clearInterval is not defined > > > > could the mootools library be causing this error? or the JS engine? > > -- > You received this message because you are subscribed to the Google > Groups "APE Project" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/ape-project?hl=en > --- > APE Project (Ajax Push Engine) > Official website : http://www.ape-project.org/ > Git Hub : http://github.com/APE-Project/ > -- You received this message because you are subscribed to the Google Groups "APE Project" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/ape-project?hl=en --- APE Project (Ajax Push Engine) Official website : http://www.ape-project.org/ Git Hub : http://github.com/APE-Project/
