Questions tagged [javascript]
JavaScript (not to be confused with Java) is a dynamic, weakly-typed language used for client-side as well as server-side scripting. Use this tag for questions regarding ECMAScript and its various dialects/implementations (excluding ActionScript and Google-Apps-Script). Unless another tag for a framework/library is also included, a pure JavaScript answer is expected.
192 questions
Score of 0
0 answers
36 views
Is there a renderscripts method to get and clear cookies from Microsoft Edge before opening a published RDWeb client?
I came across this article that describes how to get and clear cookie contents of Microsoft Internet Explorer each time before opening a published RDWeb client app :
https://learn.microsoft.com/en-us/...
Score of 0
0 answers
219 views
How do I pass the "REMOTE_USER" apache environment variable to my javascript application running on the apache server?
I have apache 2.4 installed on an oraclelinux server.
I have included the mod_auth_mellon extension and have configured it to use our corporate single signon server for login/out.
So far when I open ...
Score of 1
1 answer
313 views
RewriteRule to Access Files Outside of Document Root
How do I write a RewriteRule that will access files outside of the document root?
We are running multiple sites on multiple subdomains using a shared hosting service. There are a number of core files ...
Score of 1
0 answers
593 views
Wait for html2canvas to finish, before showing "successful" message
I'm pretty new to JavaScript development.
I have a PHP/HTML webpage where users can edit things and once they're done, they click on "Save" and it saves changes to the database. This works ...
Score of 0
0 answers
128 views
wordpress mixed content error - Is resolution on GCP possible?
I have a python flask-cors code that is run on GCP compute engine and presents its output on port 3001. Lets say the physical address of my server instance is x1.x2.x3.x4.
I have a Javascript file ...
Score of -1
1 answer
1506 views
ASP.Net: Problems loading WebResource.axd
(See also IIS - Ajax Problems when migrating to Windows Server 2022 and https://stackoverflow.com/questions/77523244/ajax-problems-when-migrating-to-windows-server-2022?noredirect=1#...
Score of 0
2 answers
815 views
telnet to port 80 (nginx), with forward to apache2 at port 8080, fails with 'connection closed by foreign host' and no explanations seemingly anywhere
i'm running an Kubuntu 22.04 server, and want to shuttle LAN-only traffic from port 80, served as far as i can tell by nginx, to port 8080 served by apache2 (for PHP purposes).
but i'm getting this &...
Score of 0
1 answer
889 views
AWS (SES + API Gateway) + HTML Form fails. Error is: InvalidParameterValue: Missing final '@domain'
I'm trying to set up a contact form on my site, I feel I am close but there is something funky going on with the source address value. I'm passing the data as URL encoded instead of multipart as I ...
Score of 0
1 answer
779 views
Getting 404 on a specific path /pricing with Apache server
I've set up an Apache server on Ubuntu 20.04
The site loads fine when I load the home page first (https://leadzilla.ai) and after that when I click on the pricing button and it takes me to https://...
Score of 1
0 answers
1106 views
nginx: Uncaught (in promise) ChunkLoadError: Loading chunk
I installed Sentry self-hosted 23.1.1, and configured nginx/1.22.1 as frontend proxy. If I access the Docker port, Sentry loads fine, while if I pass through nginx I get the error in the subject. It ...
Score of 1
0 answers
64 views
Structuring and serving files after a build
So this is my first self-hosted site and server, so go easy on me please! XD
I've been developing locally using webpack and vanillajs. My server is hosted on digitalocean with ubuntu. I build locally, ...
Score of 1
0 answers
55 views
Does javascript on the front end require a javascript hosting?
I have a few javascript in my code which help with image slider, I also have an external file I connected to the HTML file which helps with scrolling up. It's all on the front-end, do I need to ...
Score of 0
1 answer
1586 views
How to append into next line in Windows batch file
I am using a windows batch file that will output a .js file into csv.
The .js file is a mongo query.
mongosh --host 10.1.0.1:27017 --username "username" --password "password" --...
Score of 0
1 answer
101 views
Is include() cached with fastcgi?
I have a script like this
script.php
<?php
include "data/package.php";
echo $package[0]["name"];
echo "Hello World";
?>
and i do cache false with this
map $...
Score of 0
0 answers
5031 views
How can I resolve "HTTP Error 500.19 error code 0x8007000d - Internal Server Error"?
I'm currently trying to redirect errors on my Tomcat project.
Currently I'm using this method of redirecting the errors by using httpsError in the web.config file. Here is the code and error that I ...