I've got problems after I moved my files in a structered directory list (I used relative links in all files).
A quick overview:
www
js
functions.js
php
ajax.send.php include ('./functions.php');
ajax.delete.php include ('./functions.php');
functions.php
other dirs that have no influence
index.php include ('./php/functions.php'); and ofc js embedding <script type="text/javascript" src="./js/functions.js"></script>
The ajax stuff on the startpage works, but the php functions within ajax.send.php and ajax.delete.php aren't working correctly (but the path is correct?!) I've tried every possible path in theses two files but there's no way to get this stuff to work.
Have I missed something? I'm at the end of my rope.
Greetings Fabio