Recent posts

#11
Apache 2.4 / Re: Connecting to PostgreSQL: ...
Last post by mario - January 18, 2024, 10:37:41 AM
Quote from: kimbo on January 12, 2024, 08:42:41 PMWhy not? It baffles me. Apache on windows offers only ODBC when everyone recommends not to use ODBC as its slower

???

Because is are only a very few windows maintainers for windows. And those don't / didn't set their focus on PostgreSQL. Sadly I can't reach Gregg. He was the only one who was able to build it.
#12
Apache 2.4 / Re: Apache 2.4.59 release date
Last post by mario - January 18, 2024, 10:31:35 AM
We never did any Linux builds.

However there is no fix date when 2.4.59 will come out.
#13
Apache 2.4 / Apache 2.4.59 release date
Last post by Manikandan V - January 18, 2024, 08:06:43 AM
Hi All,
       Can you please share the Apache 2.4.59 release date for Linux & Windows.

Thanks,
Mani
#14
Apache 2.4 / Re: mod_session sends duplicat...
Last post by kimbo - January 12, 2024, 10:40:13 PM
A most basic configuration to reproduce the issue

ServerRoot "C:/Apache24"
Listen 80

LoadModule access_compat_module modules/mod_access_compat.so
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authz_host_module modules/mod_authz_host.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule dbd_module modules/mod_dbd.so
LoadModule session_module modules/mod_session.so
LoadModule session_dbd_module modules/mod_session_dbd.so
LoadModule dir_module modules/mod_dir.so

<Directory />
    AllowOverride none
    Require all denied
</Directory>

DBDriver odbc
DBDParams "odbc_connection_string"
DBDKeep     10
DBDMax      10
DBDMin      3

DBDPrepareSQL "select value from sessions where token = %s and (expiry = 0 or expiry > %lld)" selectsession
DBDPrepareSQL "delete from sessions where token = %s" deletesession
DBDPrepareSQL "insert into sessions (value, expiry, token) values (%s, %lld, %s)" insertsession
DBDPrepareSQL "update sessions set value = %s, expiry =  %lld, token = %s where token = %s" updatesession
DBDPrepareSQL "delete from sessions where expiry != 0 and expiry < %lld" cleansession

DocumentRoot "C:/Apache24/htdocs"
<Directory "C:/Apache24/htdocs">
    Require all granted
    Session On
    SessionDBDCookieName test path=/
    SessionMaxAge 604800
    SessionEnv on
    SessionHeader X-Replace-Session
</Directory>


<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>
#15
Apache 2.4 / Re: Connecting to PostgreSQL: ...
Last post by kimbo - January 12, 2024, 08:42:41 PM
Sorry to necro, this is the most relevant thread

Quote from: Gregg on January 04, 2018, 08:10:23 PMActually, no. I know of no Windows distro that includes this connector. At least nothing after 2.2.25.

Why not? It baffles me. Apache on windows offers only ODBC when everyone recommends not to use ODBC as its slower

???
#16
Apache 2.4 / mod_session sends duplicate Se...
Last post by kimbo - January 11, 2024, 08:40:45 PM
This issue has been open for 11 years

mod_session sends duplicate Set-Cookie headers, and it also sends set-cookie on every single request, despite session ID not changing once

It's sad to see issues like this go on so long with zero attention

Anyone got any suggestions on how to get it fixed? I have also tried the latest builds from ApacheLounge and this issue is present there too

 :(
#17
Third-party Modules / Re: SSO Mod windows Where to f...
Last post by a.moret@seipra - January 11, 2024, 09:21:44 AM
Thanks a lot !
#18
Third-party Modules / Re: SSO Mod windows Where to f...
Last post by scjo - January 03, 2024, 06:40:11 PM
Thank you so much  :)
#19
Third-party Modules / Re: Upload file to excel
Last post by mario - January 01, 2024, 09:45:39 PM
Hi Jose.
do you "upload" the file or do you copy the file into an apache directory? Is xampp running locally on the client or on a other computer / server?

If xampp / apache is running on a other server you have to have a script or maybe webdav to receive the file on the apache side.
#20
Third-party Modules / Upload file to excel
Last post by JOSE - December 24, 2023, 07:25:13 PM
Greetings guys,

I am new to the forum, I have an application developed in Delphi and unigui,
I am distributing with XAMP, everything works perfectly.
With this application I load information to my database from an Excel file.

How do I do it?: I copy the file to be loaded from the client side to a folder (temp) that is within the root of my project, from there I consume the Excel file (I have office installed on the server), with XAMP everything It works like a charm.
My problem is that for several reasons I have to work with apachehous (for Windows), I configure it and my entire application works perfectly except for loading the file in Excel, this gives me the following error.

Microsoft Excel cannot access the file 'C:\ApacheSigecob\App\temp\template load and update cases.xlsx'. There may be several reasons:
 • The file name or path does not exist.
 • Another program is using the file
 • The workbook you are trying to save has the same name as another workbook that is currently open

I think it must be some adjustment to the httpd.conf file since I remind you that with XAMP everything works perfectly.

Note: My language is Spanish, this text is translated with Google Translate, I don't know if it is mandatory to ask in English.

I hope I have explained myself well,
I also hope that someone can help me, this is urgent for me.