Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
24 views

the solution for code tantraa in python how to resolve the problem for leaving the small code that makes a issue to the program
Pritam Nanda's user avatar
0 votes
1 answer
44 views

I know it's 2025, and this problem seems to be all over the place, and I've been trying all the recommended solutions, but it seems it's mostly old code. But I don't really know; I'll try to sum it up ...
Juwe's user avatar
  • 31
-1 votes
0 answers
53 views

I implemented the post like feature using ajax in the Django project, but it doesn't work. And it gives a 404 error in the console. template.html <script> $(document).ready(function(){ ...
Samyar's user avatar
  • 23
-5 votes
0 answers
58 views

I use the Traveler WP theme by ShineThemes. My test site is: https://experiences.reimagine.link/search-solo/ To increase conversions, I added a Book Now button to every tour listing. The button opens ...
Joshua P's user avatar
0 votes
2 answers
64 views

I'm trying to call a simple static WebMethod in my ASP.NET Webforms page using jQuery Ajax, but it doesn't seem to be working. I've tried enabling anonymous authentication and other fixes suggested ...
Aswinth's user avatar
1 vote
1 answer
91 views

I know this has been asked 1000 times already, but I'm not seeing anything wrong in my code and am still getting a 400 error (XHR). Here is the code from my plugin: require_once( plugin_dir_path( ...
someguy's user avatar
  • 29
0 votes
1 answer
95 views

I'm trying to rewrite an old HTML and plain JS frontend project using Vite and Preact. I created the project as suggested in the Getting Started docs via: npm init preact The basics seem to work fine....
derpirscher's user avatar
  • 17.7k
0 votes
2 answers
81 views

I have an .aspx web form. When Ajax Calendar is changed, I'm not being able to capture date since there is no Selection_changed event firing. I tried to fire one, but that is also not working. Not ...
SilverFish's user avatar
  • 1,108
1 vote
1 answer
54 views

I'm trying to make 3 sequential GET requests using RxJS ajax operator. If one of the ajax requests throws an error(404 status code, for example), the rest won't execute. Is it possible pipeline to ...
Igor's user avatar
  • 374
1 vote
0 answers
135 views

I am trying to pass a javascript array of objects to a .NET controller action List<> parameter. Below is my C# public bool ImportACE([FromBody] List<Element> elements) { foreach(...
NerdyDriod's user avatar
0 votes
4 answers
65 views

I am trying to use a javascript form to submit data to a server I control. The form works great and the data is submitted to the server, but I can't get the javascript success and fail subroutines to ...
James B's user avatar
  • 53
0 votes
1 answer
52 views

I’m working on a legacy single-page application that uses AJAX to load different internal views. After recent browser updates the Browser Back Button stopped behaving as expected. The current problem: ...
z3po's user avatar
  • 149
0 votes
1 answer
72 views

I have a Featured Collection section in the Dawn theme. I want to add tabs like “Boy Shirt”, “Boy Pants” and dynamically load products when clicking a tab without refreshing the page. I tried using ...
jubaer hossain maruf's user avatar
0 votes
0 answers
49 views

I have created a custom login modal for my wordpress site. In seems to be working on the surface, as in it logs in correctly, the admin bar appears at the top on page refresh and I'm able to access ...
poncho's user avatar
  • 1,160
0 votes
0 answers
59 views

I'm using laravel 8 with SESSION_DRIVER=file I have code that run like below, and I have a problem why the recursive not extending the expired time of session? Each process take 30sec, but after ...
Cahya Purnama's user avatar
0 votes
0 answers
32 views

I am getting crazy about this issue that I can not figure out. I have these two URLs, the first one is a dirty one the second is a Helicon ISAPI 3 rewritten, nice URL. http://nova.exclusive-immo.hu/...
Ayac's user avatar
  • 23
0 votes
0 answers
132 views

I’m comparing two ways of rendering HTML structures with data from PHP + MySQL. Option 1: SSR (Server-Side Rendering) PHP builds the HTML and returns it directly: PHP: else if(isset($_POST["...
Be Always Mine's user avatar
-2 votes
1 answer
109 views

I’m trying to replicate a browser AJAX request using PHP’s curl, but the server always responds with HTTP 400 Bad Request. Here’s my current code: $headers = [ "Accept : application/json, ...
BouglaceMarouane's user avatar
0 votes
0 answers
102 views

I have the following issue: I run the following query: $interventii = get_posts( array( 'post_status' => 'publish', 'post_type' => '...
MikeROAVI's user avatar
-3 votes
1 answer
235 views

I have a PHP script to be used as an Ajax responder, which I want to remember a previous call. I thought that it should be able to remember using $_SESSION data. I’ve simplified it down to a pair of ...
Manngo's user avatar
  • 17k
-1 votes
2 answers
117 views

I am trying to upload an image to the server but the request will not end. In DevTools, the request shows as pending while, in the backend, php is continuously writing to an ever growing file until I ...
RisingSun's user avatar
  • 1,731
-1 votes
1 answer
140 views

I'm struggling to figure out why my results data isn't showing on my webpage from the AJAX/PHP call. I'm pretty sure it's something to do with the coding in the HTML and the way I am trying to pull ...
Ashhhcodes's user avatar
-1 votes
1 answer
133 views

Hello i am bit struggling to find the solution or there is other effective way to do it, so here is the case, i have file named display.php in display folder, then i have add_data.php in kas folder, ...
Noex's user avatar
  • 9
0 votes
2 answers
116 views

I'm currently using Bootstrap DataTables on the front end with JavaScript and AJAX to fetch data from a Spring Boot backend. The table loads correctly and searching in English works as expected. ...
Toufic Sleiman's user avatar
0 votes
3 answers
125 views

I want to implement a live commenting system for each post of my project this is my view @extends('layouts.main') @section('content') <p>{{ $post->title }}</p> // there is nothing ...
Ramin Safari's user avatar
1 vote
1 answer
75 views

I am trying to post my form data using ajax. I am serializing the form data before posting. But at the controller method, it shows null. There is no problem with the form data because I can pass data ...
user4221591's user avatar
  • 2,236
1 vote
0 answers
48 views

So I am working on a dashboard in which there are bunch of KPIs and Graphs. The dashboard have filters that when applied, filter whole dashboard. Before I was totally reloading the page and every ...
Balaaj Raza's user avatar
0 votes
4 answers
180 views

I am trying to call a controller method using ajax. But I do not know how to do it? I have tried several ways but can not find the right one. My controller method:: use App\Http\Controllers\Controller;...
nischalinn's user avatar
  • 1,284
0 votes
0 answers
204 views

I have a question regarding Symfony UX Live Components and forms. Context: Imagine you have a Parent Component and a nested Child Component. Both are Live Components and both include Symfony FORMS (...
woweya's user avatar
  • 1
0 votes
1 answer
85 views

I have an ASP.NET Core MVC project and I am trying to send a model and some other parameter from JavaScript to a controller action. First I fill the model from view fields whose names match the model ...
Stanislav Panferov's user avatar
0 votes
0 answers
26 views

The console.log(oResponse); of oResponse in the function mGetLookUpTableArray writes the information of the json_encoded object in the console log. There is data from the database in the oResponse ...
user30866136's user avatar
0 votes
3 answers
84 views

I have a bare bones AJAX script that calls a PHP page to retrieve data from the database. The database call is definitely working. I am getting the below error in the console which seems to indicate ...
user30866136's user avatar
2 votes
2 answers
99 views

In my ASP.NET Core MVC web app project, I'm sending a POST request to an external API using HttpClient. Everything seems to be working correctly, but on the JavaScript side, the response is undefined. ...
KaanYakı's user avatar
1 vote
1 answer
58 views

I'm developing a custom OpenCart 4.x module that adds a button to the order page to log order data via AJAX. The button makes a GET request to my custom controller, but I'm getting an "Invalid ...
blaize's user avatar
  • 99
0 votes
1 answer
100 views

I have a button which uses DA and executes the server side code... when there is a low network user clicks the button multiple times which cause duplicate entry... I want to disable when user clicks ...
shajin's user avatar
  • 66
0 votes
1 answer
74 views

I have a jQuery script that makes an Ajax call to a PHP file (process.php) to retrieve the status of a database (The upload.php and import.php parts are working fine and not relevant here I would say),...
Andy McRae's user avatar
-3 votes
1 answer
75 views

Currently I am using following code to check video is fully watched or not.(Code is borrowed from This Stackoverflow Question) I want to record the total watch time where it should be updated per ...
Sing O Song's user avatar
0 votes
0 answers
41 views

I build an array key:value pair for data section in ajax jquery, when read the request in php, I read all ítems but the last have [_]=>random_number, I set cache:false, whats is wrong?. How can I ...
Alejandro's user avatar
0 votes
2 answers
109 views

I have a local project in which I edit the fields inserted in the database through a form, and the information should appear in the form because in DevTools > Network, the status shows that the ...
Alexander's user avatar
0 votes
2 answers
59 views

I have a form modal and I am trying to send data using ajax post method to the controller method 'store' via my blade file. //// temp.blade.php file <script type="text/javascript">...
user4221591's user avatar
  • 2,236
-4 votes
1 answer
62 views

I have a basic jQuery page that I am trying to figure out. The Ajax function on line 38 is supposed to return results from a table in the database called activity. function gethtml(result) { let x=`...
Denise Cowen's user avatar
1 vote
1 answer
83 views

I have a form in Laravel where I use Ajax to dynamically create options in the selects, based on previous filled information. I am very new to Ajax, so maybe I understand the concept wrong. Below the ...
Casper's user avatar
  • 13
1 vote
0 answers
51 views

I would like anyone who are experienced with drupal and ajax api can point me at the right direction. I am very new to drupal and have to implement this without using any contributed module. I tried ...
Kami Lam's user avatar
0 votes
1 answer
65 views

An Ajax call to a web method is failing with the error Unknown web method IsLocked. Parameter name: methodName. My method code is: <WebMethod> Public Function IsLocked(ByVal pCompany As String, ...
Prescott Chartier's user avatar
0 votes
1 answer
79 views

I have an ASP.NET Core Web API endpoint that receives all null values when called from jQuery/browser, but works perfectly when called from Postman with the exact same JSON payload. The Problem When I ...
Vlada Misici's user avatar
1 vote
1 answer
51 views

I was define following script for deleting multiple data. Please check the attached image. I will select multiple title and click deleted title button data will be deleted. I checked the log there is ...
mikebension's user avatar
0 votes
1 answer
87 views

I am working on a simple AJAX WordPress plugin. The plugin needs to make a call and then pass the results using AJAX. Here is my function in JavaScript: function courseGradeHistory(student_id) { /...
jlcarbwood's user avatar
0 votes
0 answers
44 views

I have a HTML from. <input type="checkbox" class="checkit" id="10" name="Tid" value="10"> <input type="hidden" id="23" ...
webstackoverload's user avatar
0 votes
0 answers
15 views

I created a custom post type portfolio and called apiFetch inside the edit() method of the block to try and get data from /wp-json/wp/v2/portfolio. However, I only get empty reply or unauthorized ...
NAYLESH PRAJAPATI's user avatar
2 votes
1 answer
106 views

I am try to use Ajax to Post value of an array at a time sequentially. There is working if the array values are fixed.But it is not working if the values are variable. How could I change the array ...
Jason Lee's user avatar

1
2 3 4 5
4419