Page 2 of 3

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 9:08 am
by Antonio Linares
Here we have a good list of Apache contributors that hopefully could guide us:

https://httpd.apache.org/contributors/

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 9:15 am
by Antonio Linares
I have just emailed mod_lua developer (all the emails in the previous URL) this email:

Dear Brian,

I have read that you were the developer for mod_lua. Congratulations for your great work and for sharing it.

We have developed a new mod_harbour for Apache and we wonder how could make it part of the default Apache package ?

many thanks for your guidance,

Happy new year


I kindly ask you to take some minutes and email to other members in the list. Lets try it

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 1:12 pm
by Otto
Hi Enrico,
Jean told me on FB that he is working with IIS.
Best regards,
Otto

Jean-François Lefebvre
Otto Atzwanger yes it is, and I even added my own librairy. it work on iis on win server 2019

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 2:41 pm
by Enrico Maria Giordano
So? I don't see the point.

EMG

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 4:55 pm
by Otto
Enrico,
The point.
Since you are a professional software developer, I think that only dedicated hosting is an option for you and yes, mod harbour and IIS work wonderfully there.

Best regards,
Otto

https://www.verizon.com/business/small-business-essentials/resources/dedicated-hosting-vs-shared-hosting-pros-cons-173704513/

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 5:31 pm
by Enrico Maria Giordano
Unfortunately not. As I already wrote, I must use the existing customers company servers or web spaces. It's not my choice.

EMG

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 6:55 pm
by Otto
This is a pity. Then you will have to go the stony PHP way. That's what happened to me with ASP classic. It was just discontinued.

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 7:56 pm
by Enrico Maria Giordano
Actually, I have no problem at all with web developing. But I'm always open to improve things.

EMG

Re: mod_harbour for non dedicated servers

PostPosted: Fri Dec 31, 2021 8:53 pm
by Otto
But then it might have been better - in terms of the economic efficiency of the scarce resources - you might have been able to formulate your questions a little differently.

Re: mod_harbour for non dedicated servers

PostPosted: Sat Jan 01, 2022 11:51 am
by cnavarro
Enrico Maria Giordano wrote:I'm not talking about dedicated servers but web spaces. Aruba doesn't allow to run CGI EXEs from their web spaces. Most of my customers have web spaces from various providers or company web servers that doesn't allow CGI EXE to run for company policy.

EMG

Sorry, this server linux ( BASIC ) is a dedicated server?
https://hosting.aruba.it/es/hosting/linux.aspx

Re: mod_harbour for non dedicated servers

PostPosted: Sat Jan 01, 2022 12:01 pm
by Enrico Maria Giordano
If mod_harbour works for you I'm very happy. It can't work for me as of today.

EMG

Re: mod_harbour for non dedicated servers

PostPosted: Sat Jan 01, 2022 8:16 pm
by Otto
Enrico,
Yes, it works fine for me. I also have such a wonderful tool for the backend.
Thank you for this tool.
Best regards,
Otto

Image

Re: mod_harbour for non dedicated servers

PostPosted: Wed Jan 12, 2022 10:11 am
by Antonio Linares
Dear Enrico,

Doing tests on non dedicate servers, we have found that we can run modharbour (CGI version) on any public HTML folder this simple way:

info.php
Code: Select all  Expand view
<?php
   print( shell_exec( "./modharbour info.prg" ) );
?>


See how you are running Harbour here from a folder which it is not cgi-bin:
https://www.fivetechsoft.com/counter/info.php

In other words, this means that we could use modharbour CGI from any shared hosting :-)

Re: mod_harbour for non dedicated servers

PostPosted: Wed Jan 12, 2022 10:40 am
by Enrico Maria Giordano
Can you send me the modharbour folder so I can upload it to my webspace and test it, please?

EMG

Re: mod_harbour for non dedicated servers

PostPosted: Wed Jan 12, 2022 1:00 pm
by Antonio Linares
Dear Enrico,

Please let me know what Linux version your host is using so we can build it specifically for it

version.php
Code: Select all  Expand view
<?php
   print( shell_exec( "lsb_release -a" ) );
?>