Linked Questions
42 questions linked to/from How can I debug a HTTP POST in Chrome?
0 votes
2 answers
502 views
CSRF enabled throws 403 (forbidden) in CodeIgniter
So I planned to implement CSRF in my website and set what's needed which I think I set correctly but still having issue with ajax submit form. $config['csrf_protection'] = TRUE; $config['...
0 votes
1 answer
347 views
Jsoup login fails - System Error message
Currently, I'm doing an application where I need to login to a news website but for some reason I receive a warning and fail to login into the website at the same time. News website: http://www....
2 votes
1 answer
302 views
How to autofill a webbrowser form without ElementIDs?
I am new to vb.net and need some help. I'm trying to autofill some fields on a website and press the send button, and I know how to do it when there is an ElementID: WebBrowser1.Document....
0 votes
1 answer
309 views
How to identify Mock JSON format for Here Maps
If anyone know the json format for the Here Map's example where there is a routing for point A to point B. Here is the link https://developer.here.com/api-explorer/maps-js/v3.0/servicesRouting/map-...
1 vote
1 answer
190 views
AJAX Data Variables not being read by php file
I am running into an issue I cannot figure out. I create a simple button that sends data with AJAX to a php file. I have the variables defined and are appearing correct in the console when clicking ...
1 vote
2 answers
312 views
HttpServlet error in eclipse
I started learning Java recently and I am facing lot of simple but irritating issues. I spent a lot of time trying to figure out the problem in vain. I am trying to run a simple registration (with 3 ...
0 votes
1 answer
237 views
Selenium Alternatives for Google Cloud VM instance?
Are there any alternatives to Selenium that don't require a web driver or browser to operate? I recently moved my code over to a Google Cloud VM instance, and when I run it there are multiple errors. ...
0 votes
1 answer
313 views
How to develop excel addin for excel VBA development for authentication of a application
I have a VBA application. In this i need to call (URL)other enterprise application, when call happens it goes to authenticate the user with login credentials. based authentication it will proceed to ...
0 votes
1 answer
243 views
OpenCart product_form html-select won't pass the value to the database
I can't seem to find what I am doing wrong <pre> <?php print_r($_POST); echo $parcel_type; ?> </pre> Print gives: array() $parcel_type gives: 0 On save it won't pass the select ...
0 votes
1 answer
230 views
SqlException: The INSERT statement conflicted with the FOREIGN KEY constraint using EF code first C#
I get the error below each time I click on the "Add Product". I would be so thankful for any tips on why I get this error SqlException: The INSERT statement conflicted with the FOREIGN KEY constraint ...
0 votes
1 answer
83 views
Old perl form filler-iner stopped working - can't see why
I have a website that is supposed to post a report from time to time to a Yuku forum. The code has been working for really a long time (5 years or more). Just recently, it stopped working. ...
-2 votes
1 answer
103 views
Importing editable HTML into Google Sheets
I know how to important HTML Data into Google Sheets so that it displays, but I am trying to figure out if it is possible to also copy a web data entry form into Google Sheets, so that you can enter ...
0 votes
0 answers
99 views
PHP file does not get "POST' value from the Angular 10 page
So I have bee trying to make a simple login page using Angular 10 as frontend and PHP as a server-side backend language(no PHP frameworks used here). Here is my login.service.ts file: import { ...
-1 votes
1 answer
81 views
Why does a JSON message recieved as None at the python server? [duplicate]
I am new to web programming and I am trying to learn how to send messages between a python server and a JavaScript client. I found the following guide: http://www.makeuseof.com/tag/python-javascript-...
-1 votes
1 answer
116 views
How to visualise the contents of a post request easily?
Let's assume we have the following form. Once it is submitted is there a way to visualise the content of the request in json form without a server side script? <html> <head> </...