I have a TYPO3 extension to access stored entries in the database (kind of a news-list).
This works well when I directly call the extension. But then I have to load more entries via ajax and this is when everything fails.
I used this tutorial to build the extension: http://www.sklein-medien.de/en/tutorials/detail/building-an-typo3-extension-with-ajax-call/#c83
In my Typoscript, I have
plugin.tx_myext.persistence.storagePid = 123
plugin.tx_myext.settings.typeNum = 12345678
These settings seem to get lost when I make the ajax-call. I have to hardcode the settings into the setup.ts of the extension (myext/Configuration/TypoScript/setup.ts).
The problem is, that when I move the extension to another server, I'd have to edit the extension everytime to adjust the settings, instead of being able to set them via Typoscript.
Any ideas what could be wrong?