145 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
157
views
Detect unimplemented class methods without a program failing to link
Suppose I am working on a library with a decent number of classes, most of them having a bunch of methods, in addition to the basic ctors and dtor. For reasons, the method implementations are spread ...
0
votes
0
answers
75
views
"Undefined Function" in query
I have created a Public Function to calculate the Working Days between 2 different dates. I have following every step of a Youtube Video explaining how to do this. But when I create a field for this ...
1
vote
1
answer
290
views
Vite + Typescript can't call onClick function, not defined
I am working on weather app in Vite + Typescript, no framework, just plain TS.
I want to have delete function for each weather list item. When I click on delete button clickedID gets passed down to ...
0
votes
0
answers
44
views
Laravel Error: Call to undefined function [duplicate]
I have defined a debug_to_console function in the public/index.php file in the global namespace
I am trying to access this function inside the App\Providers\AppServiceProvider class in the boot() ...
1
vote
1
answer
2k
views
Livewire V3 Call to undefined function Livewire\Concerns\data_forget()
Please, I need help about this
I use Laravel 10, Livewire version 3,
when run in WSL2 at localhost, this code have no problem.
but if run in a production at linux serve ubuntu, i have this error:
Call ...
0
votes
1
answer
949
views
Undefined is not a function - react-native onPress
undefined is not a function error that points to this line in my code:
onPress={() => handleCardPress(item)}
I'm following along with this tutorial:
React-Native App
I tried adding this to test if ...
0
votes
1
answer
495
views
Wordpress call to undefined function update_plugin() when handling php forms [duplicate]
I am creating a wordpress plugin that takes form inputs and stores them as wordpress options. However, I receive the error Fatal error: Uncaught Error: Call to undefined function update_option() in C:\...
1
vote
0
answers
80
views
Autoload not pulling in use_helper() after upgrading Symfony 1.4 project to PHP 8.2 via FriendsOfSymfony
I'm attempting to upgrade a large legacy Symfony 1.4 project to run under PHP 8.2 (currently running under PHP 5.6) using the FriendsOfSymfony project. Upgrade to Symfony 5.4 will come later when we ...
0
votes
1
answer
1k
views
Phoenix LiveView - (UndefinedFunctionError) no function clause matching with event_handler without any event to handle
This seems to be strange for me, but without any updates of libraries or even elixir part of app doesnt work like before.
I have got few views which show list of products, categories, brands etc. ...
0
votes
1
answer
109
views
Undefined function in React
I am having an error: Cannot read properties of undefined reading((Id)).
const PostWidget = ({
postId,
postUserId,
name,
description,
location,
picturePath,
...
0
votes
1
answer
1k
views
how can I use getline function in c? [duplicate]
I am trying to use getline() function. I am using correct syntax I guess and also I have included #include<stdio.h> header file also. Still it is showing that [Error] 'getline' was not declared ...
0
votes
1
answer
873
views
symlink issue when run the php artisan storage:link in cpanel server
when running the PHP artisan storage:link
shows this error
Call to undefined function Illuminate\Filesystem\symlink()
it is working on my local pc when I deployed and run the command then show the ...
0
votes
1
answer
3k
views
Excel Office Scripts - Copy and paste range if filtered data is not empty
Summary: I have a multi-step script where I need an IF statement to handle a scenario when the range I am copying from could be empty. I need the script to move onto the next step even if it "...
0
votes
1
answer
47
views
Why when I move a variable from in between 2 functions and place it above both functions does function 2 become undefined?
I'm very new to JavaScript and I'm having a hard time understanding why my code is coming back as undefined. I also can't seem to get the dropdown to function as it should.
My CodePen: https://codepen....
1
vote
0
answers
464
views
How do I make sure that a function is not undefined in typescript?
I'm sorry for the terrible title, but I have the following situation:
I'm using angular with Knova node package to create a webapp for my thesis work to finish Uni.
I have two components on one of my ...