How to Fix an FBML Static Error
If you recently received a "FBML Static Error - Failed to Fetch Required Static File" error message while running or using your FBML-based application, then there is a specific reason this is happening. The error message only appears when you link to a missing file, such as an external JavaScript or CSS file. It's easy to correct this mistake and get your FBML app working again.
Instructions
-
-
1
Open your FBML source code file in a text editor program.
-
2
Review the source code file and look for every instance where the file calls a JS or CSS file. Verify that each JS or CSS file can be opened external in a Web browser. If the file is missing on the host server, then that is the file causing the "FBML Static Error" message.
-
-
3
Remove the line of code that calls the missing JS or CSS file. For example, the file inclusion code may look like "<script src="js/example.js"></script>". You would either delete this line entirely from the source code or upload the appropriate file to your hosting server so it's no longer missing.
-
1