Dear Dutch, dear Maurizio,
Thanks very much. Your assessments and explanations have helped me a lot and put me on the right track.
I have the advantage for my conversion that I can use mod harbour.
As a first step, I start the existing WINHOTEL from the web browser and I program the new things with mod harbour.
In the screenshot, you can see that when I start the Browser in localhost, that I have access to the entire WINHOTEL.
If I start the WEB browser and access via the domain, I only see those programs that are already available as WEB programs.
I made it easy for us and we make changes, extensions and adjustments in an existing CRM code. The backend we change to mod harbour.
We have already finished many blocks and program parts and will now group them together under the uniform menu structure, as you can see here.
Best regards,
Otto
- Code: Select all Expand view
<script>
const LOCAL_DOMAINS = [ "localhost", "127.0.0.1" ];
if ( LOCAL_DOMAINS.includes(location.hostname) )
{
//alert("local host");
}
</script>