Error when i make submet in csrf @laravel
I make html form in laravel blade And I add @csrf inside the form and try ad {{ csrf_field() }} and But every time I make submit I have 419 PAGE EXPIRED my php 8.1 my laravel 10.1 Hi I…
I make html form in laravel blade And I add @csrf inside the form and try ad {{ csrf_field() }} and But every time I make submit I have 419 PAGE EXPIRED my php 8.1 my laravel 10.1 Hi I…
I'm just starting out on a Udemy React course so I'm pretty much a Terminal newbie.... I've downloaded the first React course project folder here: /Users/iancraig/TRAINING/REACT/01-starting-setup I've cd'd into this directory "01-starting-set-up" folder ok, and I've run "npm install" However…
I have a small JS/HTML front-end where i want to be able to send files to a kotlin backend server. The problem I am having at the moment seems like it is a wierd type like convertsion done by javascript.…
I am setting up a new Site in IIS on a Web Server, and for some reason, I am unable to see the sites I create under the Sites node in the Connections Pane on the left. I have attached…
I am trying to send data from my nodejs server with ejs to my html. But the problem is I cant read the variable inside my script. Nodejs server: exports.getIndex = (req, res, next) => { var alert = req.query.msg;…
I have an https server. It works except for the external script.js. But if the script is internal, it works. My server.js file: const https = require("https"); const fs = require("fs"); const options = { key: fs.readFileSync('server.key'), cert: fs.readFileSync('server.cert'), };…
I wrote a simple http server in C and I was now trying to send html responses. I wrote a function to read the html file and put it in a string but turns out it's only working on small…
This is a very noob question, so please understand and take that into account. I have a basic go web app and a server running Ubuntu 22.04 with a domain which I bought from hosting provider. They installed an also…
enter image description hereI've been trying to write a server-client based project in python, here's the code of my server.py: #! /usr/bin/env python3 import sys, struct, socket, threading, logging # create a server socket that connects to 127.0.0.1 on port…
I am attempting to create an html page that contains an input field, and a button. Once the user clicks the button, I want the page to run a Node JS File. Currently, the html script simply displays the input,…