Ok, i got it working, Thank You very much everyone!
No problem 🙂
Remember to mark this thread as resolved using the thread tools.
Also, kindly tell us how you solved your problem (e.g., show the code that was wrong, and then what you did to correct it). This could help another person who has a similiar problem and found this thread.
EDIT:
Ashley Sheridan wrote:So is require_once() converting them to backslashes, which are themselves not escaped?
No, since that would be incorrect translation. I'm fairly sure that part of legrand's code used paths with backslashes, and these needed the escaping, but the other part that used paths with forward slashes were fine.
Ashley Sheridan wrote:Would probably be best to just use double backslashes for peace of mind?
Considering that this is a Windows specific absolute path, I'd say yes, just so as to avoid surprising people (you are a good example :p). On the other hand, if it were relative to $_SERVER['DOCUMENT_ROOT'], using forward slashes would be the better option since that would likely be how the path would be formatted, even on Windows.