21278 Posts in 5728 Topics by 2599 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 591 Views |
-
[SOLVED] WHERE TO PUT PHP SCRIPT

15 March 2011 at 5:07am
Hello
I'm trying to do the following :
I have a flash embed using swfObject.
In this swf I'm trying to call a simple php script that as nothing to with php for page type it is just there to store a variable in a textfile
The script is located in mysite/code/mycodes/updatescript.php so the url I use in flash is mysite/code/mycodes/updatescript.php.
The folders and file have the right authorisationsIt works on the same server but not in my ss install
does anyone have a clue
Thanks
-
Re: [SOLVED] WHERE TO PUT PHP SCRIPT

15 March 2011 at 7:20am
Hello again ;)
This is getting weirder :
I can access any file (txt, other swfs) but not the php file I need
Do I miss something regardind authorization or is there a special place for thirdparty scripts.
It seems like something is preventing me from loading it ?
Any ideas suggestion more than welcome
Thanks
-
Re: [SOLVED] WHERE TO PUT PHP SCRIPT

15 March 2011 at 9:06am
This is because SilverStripe contains a default .htaccess in mysite that prevents people from directly accessing PHP files. To get around this, create a .htaccess in mysite/code/mycodes that looks like:
<Files updatescript.php>
allow from all
</Files>
| 591 Views | ||
|
Page:
1
|
Go to Top |

