Tagged Questions
1
vote
2answers
47 views
Vanilla JavaScript with Function, function not defined
$(function() {
var script = document.createElement('script');
script.id="filepicker";
script.type="text/javascript";
script.src="//api.filepicker.io/v1/filepicker.js";
var ...
0
votes
1answer
70 views
Uncaught ReferenceError: [function] is not defined
I'm trying to implement Googlemaps in my Page but i'm getting into some problems surly because I'm still new with webdev.
I've followed the google API tutorial on saving data to a database and ...
0
votes
1answer
27 views
Flash object function is undefined in my JavaScript
I've an asp.net website, where i have a flash object embedded. Flash object have some functions registered via ExternalInterface, so it should be accessible from JavaScript. And they are, but only ...
-1
votes
2answers
79 views
PHP Project undefined function session_is_registered() [closed]
**Hello every one,
I had problem in run php site using Dreamweaver CS6 and wampserver.... I create site and testing server and connect to database and test it which is ok, but the problem is the pages ...
1
vote
2answers
54 views
undefined reference to 'freeHeap'
I have encountered a problem when calling my freeHeap function inside of sortComp.c
I am calling it as such
heapRef myHeap = buildHeap(numData, heapSort, numData);
freeHeap(myHeap);
When ...
0
votes
1answer
65 views
PHP - Call to undefined method database::real_escape_string()
I have searched and tried all the suggestions that Stakeoverflow suggested to me, But none was working for me. I have 2 php files (add_new_page.php, sanitise.php) I' am getting this error on ...
0
votes
1answer
30 views
error in number separator function in php
i write a function that separate number and insert , every 3 characters
like convert 123456789 to 123,456,789
my function work correctly but when i use this get 3 error in browser
my function is this ...
0
votes
1answer
35 views
undefine reference to function
Hi this is my first time posting here, and I am relatively new to coding so I am having a lot of problems with it. Most of the time I can learn it on my own on on how to fix error, but now I think I ...
0
votes
2answers
100 views
Jquery IE external custom function is undefined
I have a function called flyout, which slides a menu div in on a button click and out on click again.
Problem 1: It runs fine in Chrome, FF etc but IE9 tells me that flyout is undefined, though the ...
0
votes
1answer
29 views
Error Message: undefined reference to 'printHeader()' & undefined reference to 'calculateArea(double&)'
I wrote this program to calculate the area of a circle and it keeps giving me this error message: "undefined reference to 'printHeader() and undefined reference to 'calculateArea(double&)'"
I ...
0
votes
3answers
179 views
Call javascript function from PHP whilst page loads
I'm attempting to call a javascript function from a PHP loop. The call passes an id from the PHP loop and then is supposed to set a class based on whether it finds the id in a cookie. At the moment I ...
0
votes
2answers
69 views
run function with n params
I need to solve one problem in a virgin ANSI C (1989).
I have some pointer (void *func) to function with (int n) double parameters, and have array double values[] with n numbers. So I want to run my ...
0
votes
1answer
153 views
How can I fix Heroku imagecreatefromjpeg()
heroku report me a error: Call to undefined function imagecreatefromjpeg() ..at line 177, where at line 177 is:
case 'jpg':
case 'jpeg':
$image_data = imagecreatefromjpeg($src_image);
break;
I think ...
0
votes
0answers
56 views
Get logged in user info - call to undefined function (2)
I'm reposting this question because the problem wasn't solved.
In a relevant question the answer below may be the solution.
Apparently this is happening because the file /wp-includes/pluggable ...
0
votes
0answers
73 views
TypeError: Error #1006: Destroy is not a function
I have a class called star with the following code
Star.as:
package com.spacegame.object {
import flash.display.MovieClip;
import flash.display.DisplayObject;
public class Star extends MovieClip {
...
0
votes
2answers
87 views
Inner Jquery.post() function returning undefined
I am having a problem with the following Jquery code:
function isAuthorised() {
$.post("Action/Controller")', function (data) {
return data;
});
}
I have tested the return value from my MVC ...
1
vote
0answers
36 views
checking for undefined properties
I'd like to get an error message when I misspell a variable name or an object property. Strict mode helps with local variables but what if I read a property?
e.g.
var vector = {x: 2, y: 3}
var length ...
0
votes
0answers
160 views
PHP: in_array() function doesn't work [closed]
if(empty($_POST) === false) {
$required_fields = array('username','password','password_again','email');
foreach($_POST as $key => $value) {
if(empty($value) && ...
-1
votes
1answer
626 views
Undefined function 'times' for input arguments of type 'cell'
i'm using matlab to plot this code which should plot Theta ( dimensionless temperature at different times(t) ) ,when i try to run it i get this error "Undefined function 'times' for input arguments of ...
1
vote
2answers
35 views
Function for list is undefined
I'm having problems with clisp.I'm tryng just to get the sum of the numbers in a list,but it gives me this error:
EVAL-the function L is undefined
when i call
(sum '(2 (c 6)))
Here is the code:
...
2
votes
5answers
96 views
Any way to tell whether a javascript function has returned or not?
I'm currently writing some code that wrappers user-written JavaScript functions, and have come across a point in the logic where I would like to trigger a particular behaviour if the function in ...
0
votes
1answer
138 views
D3 js function comes back undefined
I want to make this into a function:
var meanPoints = d3.mean(data, function(d) {return d['total points'] });
console.log(meanPoints);
This works and gives me the mean of the total point of my json ...
0
votes
0answers
43 views
Fatal error: Call to undefined function optionsmenu()
I have wordpress theme Dynamix and it gives me this error:
Fatal error: Call to undefined function optionsmenu() in ...
2
votes
1answer
70 views
Function.prototype to determine if a function has been defined in JavaScript
As an example of what I want, if you called a function that is not defined you would get a message like this in the console: nonExistentFunc is not defined
Is it possible to make Javascript call a ...
0
votes
0answers
113 views
Markitup javascript will not load
I'm using markItUp! for BBCodes on my website. It worked fine before, but after rearranging a few things it suddenly stopped working, and I have no idea why.
It doesn't help when I revert my changes, ...
2
votes
5answers
3k views
undefined reference to (function) c++ [duplicate]
Possible Duplicate:
Undefined Reference to
I've been banging my head against this one set of error messages for about 4 hours now and I can't seem to figure it out. I've not posted here ...
0
votes
3answers
304 views
Fatal error: Call to undefined function in database.php [closed]
UPDATE Suddenly - without changing anything - it works again ON SOME PAGES, on others it doesn't even show the result of my function function_exists('decod'), any ideas why?
I get this error:
...
-2
votes
1answer
80 views
How to make and call a function in VCL form application
I am using C++ Builder, and am after some help to make a function for some form actions. I have tried the code below, with no luck.
Here is my code:
int calculateAndDisplayImportantAppointments()
{
...
0
votes
1answer
84 views
Undefined reference to a method that is defined, declaration in header and source match
I have the following method declared in the public area of a class like that:
In the header file:
class EntityManager
{
public:
...
template <typename ComponentType>
...
0
votes
2answers
138 views
jQuery/Ajax not defined PHP MySQL
I am trying to update a MySQL database when a user clicks a radio button. I was planning to use jQuery/Ajax to accomplish this. I have looked on this site and others to see what I was doing wrong ...
0
votes
1answer
55 views
Custom module undefined functions
I am developing a custom module for my employer. The my_module.module fill got too big and unmanageable so I decided to separate related code into separate .inc files.
I then included those files in ...
0
votes
0answers
299 views
xcache -Fatal error: Call to undefined function xcache_isset()?
I have successfully installed xcache. And add xcache config in php.ini. And also restart apache server.
My system is mac os x 10.7.3.
php -v (or show phpinfo):
PHP 5.3.8 with Suhosin-Patch (cli) ...
0
votes
2answers
239 views
'Call to undefined function' - Trying to call function from an included file
So I have two files, 'header.php' and 'pluginfile.php'
The function that I want to call resides in 'pluginfile.php' and is:
public function getNonSubscriptionAmount() {
$total = 0;
...
1
vote
3answers
89 views
PHP - Call to undefined function http_inflate()
i am trying to create a module that makes a call to the stackexchange API which returns a gzipencoded or a deflated Json response. to decompress it i am using the method http_inflate but i am getting ...
0
votes
3answers
1k views
Fatal error: Call to undefined function logged_in()
I made a login script, when I want to check when the user is logged in, I use the function logged_in(), which consists of:
function logged_in()
{
if(isset($_SESSION['id']))
{
return ...
0
votes
1answer
93 views
PHP tries to call function without any name
When running this PHP code:
// test value
$value = "123456-7890";
// remove blank spaces and explode
$value = str_replace(' ', '', $value);
$value = explode('-', $value);
// check number of digits ...
0
votes
1answer
81 views
WordPress function undefined: file_is_displayable_image()
When I call the function file_is_displayable_image() from my template file, I get the following error:
Fatal error: Call to undefined function file_is_displayable_image()
The function works fine ...
1
vote
1answer
127 views
Value returning undefined if used in function
I have a slight problem with code here. I'm fairly new to it so if its simple I apologise. But would love an explanation.
So here is the html I have:
<div class="one" ...
4
votes
5answers
135 views
can't call function inside exit()
Having a function defined in commons.php
desktop.php -> include commons.php
|
|
\|/
include MODULES.'mod.php'
I can call my custom function anywhere I want, but not inside an exit ...
0
votes
2answers
442 views
null or undefined check in javascript
I am caching a string in my localStorage
checkLoop:function(){ //function is hit only if internet is connected
localStorage['key'] = "Some string response from web service";
//JSON Web service ...
0
votes
1answer
134 views
asp control fires javascript but my function is undefined
I was testing my ASP code, and have the handlers fire correctly but when executing my javascript function it gives an undefined error.
When working with ASP is there something going on with the post ...
0
votes
2answers
428 views
Undefined variable as function argument javascript
I've looked a fair bit, so pardon me if this has already been answered.
I'm also curious as to what the actual term is called;
Is it "Ambiguous" for the type of arguments I am handling?
Anyways, the ...
0
votes
2answers
422 views
function parameter undefined in knockout.js
I am using the Revealing Module Pattern to get some structure in my knockout.js code.
It is a very simple Example
Goal: return the value of the Name-Property of the Object.
Problem: The function ...
1
vote
1answer
536 views
Another undefined reference to class::function in c++
I keep coming across this common error then compiling my program. I've already tried many of the suggestions on the internet but none have worked so far. I've tried compiling my code using g++ via CMD ...
2
votes
3answers
14k views
IE throws JavaScript Error: The value of the property 'googleMapsQuery' is null or undefined, not a Function object (works in other browsers)
I'm having a real problem with JavaScript scope in IE 9.
This is inside the body of my document (yes, I realize script should go in the head for proper HTML, but I've never had it break a script ...
0
votes
4answers
2k views
Undefined reference to 'function' error in C
I created a header file called ofdm.h which includes all the function prototypes. Then I created a source file called ofdm.c, which includes the source code of all the functions declared in ofdm.h . ...
0
votes
1answer
613 views
Waypoints always giving “undefined is not a function/object” errors
I’m trying to use Waypoints to do a very simple scrolling effect, but for some reason, I just simply cannot get Waypoints to work at all.
jQuery (1.7.1) is correctly loaded, and is loaded before ...
-1
votes
1answer
153 views
The function is undefined. (recursion)
I am writing a simple member function that returns the value associated with that member. The first line of the conditional (to test if the first value is the one we're looking for) works fine, but ...
0
votes
3answers
888 views
Javascript object method returning undefined?
Here is a quick question, I have the following method within an object, why is it returning undefined?
var getGeoLocation = function() {
if (typeof(navigator.geolocation) != 'undefined') ...
5
votes
2answers
3k views
PHP: Call to undefined function gzdecode()
I am getting a strange error message with the following piece of PHP code (I am not a PHP expert):
if ( $file_loc != NULL ) {
if ( file_exists($file_loc) ) {
printf(" file exists");
...

