Hi guys,
I'm working on an Sencha Touch app, and I can successfully authenticate using Sencha.io, however when I try to sync the store, I'm getting RPC timeouts.
Here's my store:
PHP Code:
Ext.define('Checkers.store.Game',
{ extend: 'Ext.data.Store',
config: {
storeId: 'gamelist',
model: 'Checkers.model.Game',
proxy: {
type: 'syncstorage',
id: 'games',
access: 'public',
owner: 'user'
},
autoLoad: true,
autoSync: true
}
}
);
And here's a screenshot of the console output:
console_error.jpg
Is there a problem with the Sencha.io server or am I doing something wrong?
Thanks!