The HTML is:
<link href="../styles/mycssfile.css" rel="stylesheet" type="text/css" />
<script language="JavaScript1.2" type="text/javascript" src="../js/myjsfile.js"></script>
The javascript console in Firefox gives these messages:
Warning: The stylesheet http://mydomain.com/path/page.php/styles/mycssfile.css was loaded as CSS even though its MIME type, "text/html", is not "text/css".
and
Error: syntax error
Source File: http://mydomain.com/path/page.php/js/myjsfile.js
Line: 1
Source Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" />
The second one shows the first line of the page rather than the js file.
All the pages on the website work properly, it's just the ones in the popup that don't. Curious thing is that the popups work perfectly on my development machine (Windows/Apache), but not when they're served from my live machine (Linux/Apache).
Any ideas, anyone?
Debbie