When login locally on openerp, everything is fine. When I login remotely, through an http proxy I get the following error message The Chrome and Firefox console show the same error message :
Resource interpreted as Script but transferred with MIME type text/html: "http://MyOpenErpServer:8069/web/webclient/js".
js:1 - Uncaught SyntaxError: Unexpected token <
:8069/:12 - Uncaught ReferenceError: $ is not defined
Here is the firt part of code that is said to cause the issue (for the poste I replaced "://www" by ":--www" because of karma and links)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http:--www.w3.org/TR/html4/loose.dtd">
<html>
Here is the second part of code that is said to cause the issue
<script type="text/javascript">
$(function() {
var s = new openerp.init(["web", "web_kanban", "base", "base_setup", "mail", "board", "hr", "process", "email_template", "edi", "account", "account_voucher", "hr_expense", "web_diagram", "web_graph", "web_view_editor", "web_calendar", "share", "auth_signup", "portal", "web_tests", "web_gantt"]);
var wc = new s.web.WebClient();wc.appendTo($(document.body));
});
</script>
The server has been installed through synology package repositery, the issue was there, and then I updated openerp within the app, but it didn't solve the issue.
It's really weird, I can login remotetly with my smartphone, but using the network of the big company (my client) It doesn't work.
Can someone provide any help on this?
Ben oit: Facing same problem have you get any solution ??