On my Website with TYPO3 I want some PHP scripts to show some data on my Homepage. Without TYPO3 it works well, however using TYPO3 it does not show results.
I have some JS files included via TypoScript, which runs PHP files with the use of ajax.
I use the following AJAX call to my PHP scripts:
$.ajax({
url : 'fileadmin/php/loadprices.php',
type : 'POST',
dataType : 'json',
beforeSend: function(){
$('#loadingSpin').show();
},
....
The JS is executed properly, so it isn't the issue for that. Without TYPO3, the PHP script is running properly too. On a local server (apache), the PHP script is executed.
On the IIS 6 Server the PHP script does not work.
Does anybody know some tips? greets