13,156 questions
-3
votes
0
answers
75
views
HttpClient and headers
I have a legacy .NET 4.8 framework project.
I have tried to get these headers:
Accept-Encoding
CacheControl
sent to my endpoint.
But looking with Fiddler, they are not sent, even if I explicitly set ...
0
votes
0
answers
25
views
How to translate CI to IC of the header of a in gtsummary table?
How to translate CI to IC (brazilian portuguese) of the header of a gtsummary table? Using theme_gtsummary_language() function, it doesn't work. I tried the modify_header() function too, but doesn't ...
-1
votes
1
answer
79
views
White Screen, Translation Loading Warning, and Header Errors with Medservice Child Theme after WordPress 6.8.3 [closed]
My site shows a white screen and some PHP warnings when I try to:
Activate any plugin
Log in to wp-admin (if logged out)
Save changes in the page builder
This happens only when using the Medservice-...
0
votes
1
answer
53
views
Grid header on the first column instead of the first row
Would it be possible to have the first column of the table or grid to be a grid.header or table.header?
I am trying to make something similar to this:
⁞ SECTION TITLE ⁞ text text text text text text ...
0
votes
0
answers
30
views
Load headers/footers without creating a page
I’m trying to generate a single PDF with multiple headers/footers and different page formats/orientations.
Here’s the situation:
I have a loop that dynamically changes the page format and orientation....
1
vote
1
answer
288
views
How to tell which C/C++ file is including a header that's causing compiler errors
Just wondering how I work out which of my C/C++ files is resulting in me getting an error.
The error is #error: error STL1003: Unexpected compiler, expected C++ compiler. which comes from yvals_core....
0
votes
0
answers
52
views
Session token/headers not detected in production (Vercel)
When deployed, it fails
Cookie validation
Bypass Vercel firewall rules for API routes
even though cookie + header is seen from the browser
middleware.ts
import { NextResponse } from 'next/server';
...
0
votes
0
answers
38
views
Apache CXF: how to change a SOAP Header value programatically?
I have to change the value of "To" element of the soap:Header, like this:
<To xmlns="http://www.w3.org/2005/08/addressing">https://MY_NEW_SERVER_URL</To>
I created an ...
2
votes
4
answers
163
views
Why does including header with a structure definition not lead to a redefinition error?
I have simple program to make a point with x and y coords and function to move it.
There are three files:
main.c
structs.h
structs.c
structs.h Has the definition of structure
typedef struct point{
...
0
votes
0
answers
55
views
Drop shadow on header
headerImgVery new to coding here. I was wondering how would I go about adding a drop shadow to my header with all my links (white box area). Normally in other programs you would make a white rectangle ...
0
votes
0
answers
71
views
_DEBUG definition and imported header units
We have a Visual Studio Project which links to an external precompiled Library which is only available as release version. They use the release version of the standard library. we are on Windows, so ...
1
vote
0
answers
27
views
CORS headers not set for HTML on Flask + Render.com (Cloudflare proxy?), JS/CSS working fine
I have a Flask app on Render.com serving index.html, styles.css, and main.js from https://custom-va-template.onrender.com. My frontend at https://solixa.ai uses fetch("https://custom-va-template....
-2
votes
1
answer
137
views
C++ include file with variables in multiple files
i have code:
main.cpp
#include <iostream>
#include "add.h"
#include "var.h"
using namespace std;
int main() {
std::cout << width << height << std::...
0
votes
1
answer
140
views
How to set Access-Control-Allow-Origin dynamically from incoming Origin header in integration response?
I'm working on an AWS API Gateway setup. I need to dynamically set the Access-Control-Allow-Origin header in the response based on the incoming Origin header from the client request.
This is necessary ...
1
vote
1
answer
134
views
Trying to access header data on REST server passed in from client in Delphi
I am building a small REST server, which will be deployed to about 2 dozen people, and provide some data on an internal network.
I have the GET request setup and can return JSON of the data that I am ...