Questions tagged as 'post'

0
answers

Getting data from a form with external action with POST

Hello. I have a problem trying to retrieve data from a form where its action is an external url. <form accept-charset="UTF-8" method="post" name="formIntegration" id="formIntegration" onsubmit="return DinamizeValidateForm(this)" action=...
asked by 21.11.2017 / 19:12
1
answer

Webservice PHP does not work!

I'm developing a system that will use a webservice in PHP and the structure that will be called to execute this webservice is as follows: <?php header("Content-Type: application/json; charset=utf-8") ; require_once( "Core.class.php"...
asked by 28.10.2017 / 06:10
0
answers

Post-Payload Error (Node.js)

Today when I was performing the post from a larger base 64 is returning this from my server. When uploading a smaller image it sends without problems, I tried to use some solutions limiting the server to 50mb but it did not work. server.use(bo...
asked by 31.08.2017 / 19:45
0
answers

MethodNotAllowedHttpException in RouteCollection.php - Laravel 5.4

I got this error when putting a project on the server and trying to insert a product into the database. Error    Whoops, looks like something went wrong. (1/1)   MethodNotAllowedHttpException in RouteCollection.php (line 251) Web.php  ...
asked by 11.08.2017 / 06:04
0
answers

Slim return on the same page as a POST post

I'm sending a post request to a URL, but I need to return a message or alert to the same page whether the ID is already registered or not. I already have the query and method to do this, however I am not able to send the return to the same p...
asked by 12.05.2017 / 17:53
0
answers

Problems with Post Call

Next I'm taking the following error when calling a POST method 405 (Method Not Allowed) follows the method I'm trying to call @RequestMapping(value = "/upload", method = { RequestMethod.POST }) public @ResponseBody Object upload(@Requ...
asked by 26.05.2017 / 15:39
1
answer

ERROR when retrieving data from a form via $ _POST [] in PHP

I've created a simple form: <form action="php/cadastro.php" method="post" enctype="multipart/form-data"> <fieldset> <legend>Autor:</legend> <input type="text" name="autor" placeholder="Informe se...
asked by 03.04.2017 / 16:05
1
answer

Wordpress - Styling the single

So, I have a post type services and in it some posts, among them "brides". What happens is that the single single-qd-service.php has been stylized, so all single posts of post-type services are styled in this way, however, one of the posts ca...
asked by 27.04.2017 / 22:36
1
answer

Alternatives to the POST page request method

I'm developing a web application for my work. It consists of a dashboard that will present company information to the managers. In this context, I'm trying to optimize the page by searching for the appropriate content according to the mode I'm l...
asked by 17.02.2017 / 15:30
2
answers

WEB Service in Java

I'm creating a Web Service, but I'm wondering how to get JSON in it as a parameter. @Path("WebService/{json}") @POST @Consumes(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON) public String POST (@PathParam("json") String jso...
asked by 31.12.2016 / 19:06