[Gambas-user] Apache + Gambas Web form how to
Martin
mbelmonte at belmotek.net
Thu Jun 23 10:12:07 CEST 2022
I made this very simple style.css file
--------------------------------------
@media screen and (max-width: 800px) {
.only-desktop {
width: 1px;
display: none;
}
}
--------------------------------------
Then, the behavior is not the same
Embedded IDE http server, the
<head>
...
<link rel="stylesheet" href="/style:0.0.32.css">
<link rel="icon" href="/favicon.png" type="image/png">
<script type="text/javascript"
src="/lib:./.public/style.css:0.0.32.js"></script>
<title>Login</title>
...
</head>
style:0.0.31.css has 1093 lines after has added the content in style.css
in gambas project.
https://imgur.com/xacVS94
Apache 2 server
<head>
...
<link rel="stylesheet" href="/cgi-bin/base/style:0.0.31.css">
<link rel="icon" href="/cgi-bin/base/favicon.png" type="image/png">
<script type="text/javascript"
src="/cgi-bin/base/lib:./.public/style.css:0.0.31.js"></script>
...
</head>
style:0.0.31.css is empty. Something happen (or not happen) at the
moment of creation of this file.
https://imgur.com/8bIHdoj
Best regards
More information about the User
mailing list