91,782 questions
0
votes
0
answers
31
views
Cannot found lastest Subversion working with Apache 2.4 (64bit) compiled with vc17 redistributable [closed]
I'm upgrading (for security reasons) a windows server with apache 2.2, php 5.3 and subversion, mysql 8.0 installed.
I successifully upgraded all but subversion.
Apache cannot start if the <location ...
0
votes
1
answer
61
views
apache fails to import from correct PYTHONPATH
The situation is like this:
in my httpd.conf, I have
SetEnv PYTHONPATH /Users/<MY_NAME_>/PATH_TO/py3
my Python script in a browser runs, prints something like a header, and then I print from it ...
2
votes
1
answer
53
views
"Forbidden You Dont Have Permission to access this Resource" config problem on Apache.conf
My Debian10 server wentdown and I've been trying to install all my pages and Apache2 server on another Debian (Debian 12).
I've already take all the bkps of the pages and put them in the exact same ...
1
vote
0
answers
65
views
WordPress REST API: Large Image Uploads Not Reaching Backend Despite Proper PHP Settings
Problem Description:
I'm developing a chat application with image upload functionality using WordPress REST API. When users attach multiple large images (3 images), the request doesn't reach the ...
0
votes
1
answer
61
views
Apache LDAP authentication has isUserInRole method?
On different servers, I have applications in PHP and Java (other languages too). I am developing all new applications to use LDAP authentication so I don't have to do any user management, but more ...
0
votes
0
answers
13
views
Apache SGW to proxy requests based on header between two backends
I have a code in app1.part file that is located in sites-enabled/ directory. There are many other apps that request Service GW service, and apache should forward requests to the backed.
The AS-IS ...
0
votes
0
answers
65
views
Laravel + Laragon: wrong .env being used for API requests across multiple projects
I’m working locally with Laragon and multiple Laravel projects.
The setup looks like this:
Website A → its own .env (website-a.env), with DB website_a.
Website B → its own .env (website-b.env), with ...
0
votes
0
answers
35
views
Wamp: Apache crashes and restarts when making a https call with GuzzleHttp
I am building a background worker in php for my website, that needs to make a restfull api call to another website. I decided to use GuzzleHttp over a custom curl implementation since it's well ...
0
votes
0
answers
29
views
pyarrow gets error Received RST_STREAM with error code 1 on UTF8 data
pyarrow gets error Received RST_STREAM with error code 1 on UTF8 data why?
i also followed enter link description here this still same.
Flight returned internal error, with message: Received ...
0
votes
1
answer
89
views
Custom document root in XAMPP
I'm currently going through Laracast's PHP for Beginners series, and in episode 30, they make a change to the document root. I'm using XAMPP on Windows, and the default document root in my httpd.conf ...
1
vote
1
answer
70
views
My PHP http_response_code is not sending status 200 but status code 302?
Hi all I am facing an issue with my Webhook response code whereby I am sending a Http response code of 302 (redirect) based on my http server logs.
This 302 redirect is overriding my default HTTP ...
1
vote
2
answers
88
views
Write GET Variables from URL path in HTACCESS [closed]
I am trying to create a semi-serverless SPA w/ a blog but want to have "RESTful" URLs. I have the following .htaccess commands doing the job--in combination with JavaScript History API; but, ...
0
votes
0
answers
37
views
Apache lua_mod setup: "lua: Unable to find function fetch_token_hook in <script directory>"
We're trying to run a lua script to hook into fixups phase of a request in an apache server app, but we keep getting the following:
"[Thu Aug 28 09:55:37.099004 2025] [lua:crit] [pid <<pid&...
0
votes
0
answers
37
views
htaccess rule run on files without folders
the following htaccess rule will redirect files without extension (contact) to (contact.php)
but it also run on folders
I want it to run only on files only and skip running on folders
RewriteEngine on
...
3
votes
2
answers
204
views
If sees environment variable as empty while it is defined in .htaccess
Only thee following directives in the .htaccess file
SetEnvIf _ .* SSS=1
<If "%{ENV:SSS} -eq 1">
Header set MyHeader 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-%{SSS}e'
</If&...