13,154 questions
-3
votes
0
answers
85
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
26
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
82
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
55
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
31
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
290
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
53
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
39
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
72
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
29
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
138
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
153
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
138
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 ...
0
votes
0
answers
54
views
How to make stacked sticky headers replaceable by the latest one?
Question: How to make stacked sticky headers replaceable by the latest one?
I am trying to show a list of events for the days of calendar to my users. I near to finishing the view, but I am stuck in ...
1
vote
0
answers
74
views
How to query Discord's well known configuration endpoint directly from Firefox?
I am trying retrieve a user's profile from the front-end from various oauth2 sources. For Discord, the server refuses to process the request, resulting in a CORS error.
I already have my flow ...
0
votes
1
answer
467
views
How to set cache storage time on Github page?
Is there a way to manually set the cache time of some files on GitHub Pages? On my GitHub Page https://orange.github.io/example4/, I would like to set the maximum cache time for Gilroy.woff2 and img....
-1
votes
1
answer
190
views
Why does jetty throw "request headers too large"? [closed]
After upgrading spring boot version. Our jetty http client suddenly throws "request headers too large" error.
we do not have the issue before.
What has changed ?
0
votes
0
answers
50
views
Rotate header of swiftui table column
I am trying to rotate the header of a TableColumn. I would also like it not being truncated or cropped.
This does not work:
TableColumn(Text("Column Name").rotationEffect(Angle(degrees: 45)),...
0
votes
1
answer
125
views
How to get include directories working for c++ projects on neovim
Suppose i have a project with and src folder to keep all my code, and an include folder to store third-party libraries.
Let's say there is a file include/TestLib/lib.hpp with the following code:
// ...
0
votes
1
answer
66
views
Same header on all page files
I would like to get advice here on easy and most efficient way to have a generic or global header and footer for an html code.
Below is my html code - I have different CSS files for styling.
In the ...
0
votes
1
answer
71
views
Disable the checkbox in the column header using C# and ASP.NET
In my gridview, I inserted a column that contains a checkbox in the header:
<asp:TemplateField ItemStyle-HorizontalAlign="Center">
<HeaderTemplate>
<asp:CheckBox ...
1
vote
2
answers
339
views
How to translate the header in Wordpress using Polylang and Editor
I have just finished translating my personal website into French, English and Greek using the Polylang plugin in Wordpress.org, following this method described here: https://stackoverflow.com/beta/...
0
votes
0
answers
21
views
Content Security Policy is not working Angular project (Hosted in IIS and DotnetcoreAPI as backend) as expected
Our project is developed in Angular and uses .netcoreAPI as backend. We hosted the services (both angular as well as the core API) in IIS. We have configured the security headers inside the web.config ...
0
votes
1
answer
83
views
Redirect with Location header using njs subrequest
I need send some request to the app before using it and redirect browser to location from reply of that request in case of status = 302.
nginx.conf:
http {
upstream app {
server localhost:3000;
...
0
votes
0
answers
63
views
Issue with renaming/selecting columns in pyspark
I have an excel file that I'm reading into databricks using pyspark. The data has extra columns at the end that I do not want included. I use the following code to accomplish this:
data_object = ...
0
votes
1
answer
150
views
How to collapse and Fade Header in SwiftUI
I am currently trying to implement a scroll to hide header. How can I shrink the height of the header and fade it in as the user scrolls down. Then do the opposite when the user scrolls up(expand the ...
1
vote
1
answer
183
views
Pragma is added to header even though I removed it from the code
As per security recommendations, I have removed Pragma settings from our site (Angular JS and ASP.Net), however, I still see it in the response headers, could be that the framework is adding it by ...
0
votes
0
answers
79
views
html to pdf with chrome PrintToPdf in document style, with header and footer
I've a simple html document, with header, main Area and footer. The main Area contains content like Texts and Tables.
I would like to print the document only with html and css to pdf. The header and ...
0
votes
0
answers
101
views
How to include common Header and footer in multiple HTML pages using only HTML? [duplicate]
I want to create common header and footer pages that are included on several html pages. I'd like to use javascript. Is there a way to do this using only html and iframe tag I want to load a header ...
0
votes
0
answers
63
views
How can I prevent an envelope in MS Word from printing the header
I have been tasked with updating numerous MS Word doc and docx files. The existing document files have an OLE Object consisting of a linked Word document which allowed all the files to have the ...
0
votes
0
answers
48
views
Tabulator header filter list with optgroup
Using Tabulator 6.3 and header filters, did someone manage to build a list of grouped values ?
I'm already feeding the values with a custom list built from an ajax call, but how to tell Tabulator to ...
0
votes
1
answer
125
views
How to display headers from a quarto with a for loop and plotly graphs?
I use tagList in order to render ploty graphs within a for loop. But the headers don't show !
Is it possible to have plotly graphs AND headers within the for loop ? I want to show a table of content ...
0
votes
1
answer
77
views
Camel new version thrown IllegalArgumentException Unrecognized Type: [null]
We have just upgraded our Camel project from the version 4.4.0 to the version 4.9.0. And we encountered this error when sending our JMS messages :
java.lang.IllegalArgumentException: Unrecognized Type:...
0
votes
1
answer
134
views
Changing a dataframe headers, but keeping the previous headers as a row
I have two issues on a dataframe:
It does not have the correct headers
The current headers contain values that should be a "simple" (first) row of the dataframe
How do I keep my current ...
0
votes
0
answers
90
views
Editing Header Menu and Sub-Menus on Wordpress template 2024
This is my first question on stackoverflow so sorry if this is the wrong formatting. I have created a website on the 2024 wordpress template and have had issues being able to edit the header section. ...
2
votes
1
answer
242
views
Vue 3 - Vuetify 3 Headers not appearing
Ive tried about every different way I can think of to make the headers in this data-table to show up. Everything else works, just no headers.... Any ideas greatly appreciated
Feels like this ...
0
votes
0
answers
316
views
IntelliJ Http client: Conditional header
I want to use the Intellij Http client to do some HTTP requests. I have different environments. On one of them, I want to login with a JWT and on the other with OAuth2. Both need different headers. I ...
1
vote
0
answers
44
views
In Flutter- How to make elements in a already scrolling page sticky and appear on scroll and then scroll away when the scroll ends somewhere
Page I want to build
Hi all, thanks for taking the time to read this
I'm facing a problem in flutter. I want to implement an interaction where contentArea#1 is in view port when Tab#1 is active and as ...
1
vote
3
answers
656
views
How do C++ modules hide implementation details when they are in the same file as the interface?
I’m reading Bjarne Stroustrup’s A Tour of C++ (3rd Edition), which provides a brief introduction to C++20 features. In the book, he shows how export module can eliminate the traditional pattern of ...
2
votes
0
answers
560
views
Why does Cross-Origin-Opener-Policy prevent opening links to the same-origin/domain when target="_blank" is used?
Let's say you serve a website with the header Cross-Origin-Opener-Policy: same-origin. This is a new header that, if I understood it correctly, completely separates a browsing tab/origin to prevent ...
3
votes
1
answer
140
views
Is there a way to prevent a header file without header guards from being included at all at compile time?
I am trying to ban the inclusion of a list of header files from a source file, and thus preventing the dependency on classes defined in those headers.
There are tricks of checking the header guard ...
0
votes
2
answers
98
views
How to use VBA to design header in Excel
I try to create a header in Excel with VBA. I want some text in the left part of the header, some in the center part and some in the right part. I have tried in several ways but the result is not what ...
0
votes
1
answer
32
views
NextJs 14 app string is displayed illegibly on some mobile devices
I created a NextJs 14 app with JavaScript, Tailwind and Framer Motion. Now I am receiving feedback from three users that the texts have display errors. This only applies to the view on a mobile device....
0
votes
0
answers
68
views
Angular CORS Settings for localhost
I am quite troubled with an angular cors problem, using localhost and php files on a webserver.
When I build my projects, put it on the server as well, everything works fine. But when I am working on &...
0
votes
1
answer
95
views
Is there a way to delete this fine white line I have on the top of a website, after deciding not using a header?
I'm designing this website www.rikmerchie.com in Wordpress (with the Extendable theme) using the original design library (i'm not using elementor or plugins like that).
The thing is we decided we don'...
1
vote
1
answer
57
views
I migrated my javascript client to another domain and now cross site call to php api are not sharing the same php session
For some time now I had to endpoint :
https://client.a.com => a javascript client (nuxt)
https:/api.a.com => PHP api (slim framework)
To make those work tohgether I needed a shared Php session....
0
votes
0
answers
48
views
Allow Content-Security-Policy frame-ancestors by origin in Apache
I want to allow iframe for site only on a specific sites
I cat to make this:
Header set Content-Security-Policy "frame-ancestors 'self' http://myorigin.com"
But it will be shown in browser ...
0
votes
0
answers
28
views
Header not printing for every page in Chrome-based browser
This is not a request for help but a possible solution for everybody who might encounter this problem.
I had a quite complex header that when printed would not appear from the second page onward.
...