JQuery :: Apache Conf File - Missing Object In Localhost
Jun 1, 2010
I have a problem, when I load jquery.js from local, my test server is Apache 2.2.14 and PHP 5.3.1. The code is :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]">
<html xmlns="[URL]">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery Starterkit</title>
<script language="javascript" src="lib/jquery-1.4.2.min.js"></script>
<script language="javascript">
$(function() {
$("input").click(function(){
alert('Hello World!');
});
});
</script>
</head>
<body>
<lable>pwd : </lable><input type="text" name="text" value="name"/>
</body>
</html>
The browser alert (Missing Objects) in localhost. But if I change src to '[URL]', or double click html and run in the browser, it takes effective. So I think there are some problems in my Apache conf file.
View 4 Replies
ADVERTISEMENT
Aug 30, 2010
This object was passed to my click event handler. Why are so many properties missing? The click event came from an <a> in a <li>, propagated down to the <ul> on which the handler was set.
If I click on the <ul>, the event object looks "normal".
[Code]...
View 3 Replies
View Related
Sep 28, 2009
I've ammended my code now so that I'm using objects, constructors and prototypes.
If I use the standard constructor.prototype.functionname = (){......} type of setup it works okay.
However I'm now experimenting with overwriting the prototype with a literal. As in the code below. i.e. constructor.prototype = {functionname : function() .......
Doing it this way my first new object instance fails. The subsequent new objects are fine.
I ran a check on the properties of the 1st object with '!hasOwnProperty and name in' and the result is that the prototype (or pointer to a prototype) is missing.
So the first new object of FontTrans (oH) has
Code:
1 property is Heading
.
.
9 property is Delay
[Code].....
View 8 Replies
View Related
Jul 23, 2005
I have tried this using both frames and window.open(). In either case, if the new content comes from a different site than the original (or comes from a site and original is a local file) the document object is inaccessible. The new window object seems to have no document and no all[] or just about anything else useful. If the new content came from the same site (or local computer) as the original, everything seems to be where it belongs. I have looked all over and can find no references to this problem. Is this some security issue that everybody but me knows about?
I am seeing this on IE 6.0.2800.1106. The files are created in notepad
so there should be no surprises there.
--
spc
View 1 Replies
View Related
Feb 14, 2010
I'm try to create an XMLHttpRequest object but getting a syntax error with this code:
var XMLHttpRequest;
try{
XMLHttpRequest = new ActiveXObject("Microsoft.XMLHTTP");
}
syntax error: missing } XML expression (on column 56)
View 2 Replies
View Related
May 1, 2011
I was wondering if using ajax-jquery was possible with 'localhost' as url ?
View 1 Replies
View Related
Apr 16, 2009
I'm attempting to read in a user's weightlifting history from a database using a php file(viewworkout.php) to first run the query and then a js file to get the results from the query. the script below is all i have so far, and it
View 6 Replies
View Related
Oct 29, 2011
I don't understand ..
$("#form-dialog-join").dialog() is a valid function which I copied from Jquery demo. What's wrong with it?
btw, all the jquery library is loaded correctly.
View 4 Replies
View Related
Aug 3, 2011
This is a strange problem because there's no reason it should be happening.
I'm running xampp 1.7.4 locally and jquery-1.6-dev. I'm working through the "jQuery Novice to Ninja" book and everything is working fine until I hit Chapter 3 - animated navigation. Instead of displaying across the top of the page, the nav bar displays down the page. After double- and triple-checking everything I just straight copied the example files for the book into my local server. It did the same thing. In other words, when I double-clicked the file to view in the browser it worked, but the exact same file viewed in the server did not work. I checked with the file I was working on and sure enough the same thing happened - it worked viewed in the browser but not through the server. I hope I explained this clearly. Has anyone run into this sort of thing before? Is there something on the server that needs to be configured?
View 7 Replies
View Related
Jun 30, 2010
I'm pulling data from a database using a RESTlet server, and using Flot to produce a graph.
My problem is that whenever I make the following AJAX call, I get an "Access to restricted URI denied" error on Firefox. On Internet Explorer I have other problems, but I can tell by my server logs that at least the AJAX call happens, which is more than I can say for Firefox. code...
The url is correct, and the server is hosted on this machine, but Firefox thinks it's trying access another domain. The html file containing this code is located on my hard drive.
How can I get Firefox to allow this AJAX call?
View 6 Replies
View Related
Jun 23, 2009
I've got jQuery and 2 plugin libraries running on my website. One runs the navigation and the other runs a dropdown search box. Everything works great on my localhost, but when I copied the directory to the external server none of the jQuery worked. I'm not getting any Errors in my error log, and the directory has been copied exactly. [URL]
View 3 Replies
View Related
Dec 20, 2004
I have a form with three Input File form objects in which the user can add image files. But I am worried about the problems these controls can lead, because to check the file size the server needs to receive the entire file, so serious problems may happen, for example:
1. Malicious user trying to collapse the website sending big files.
2. Users that have not seen the warning “Maximum size: 100 KB� for each image, and try to send three image files consisting in 1,5 MB each one. These users will have a bad experience waiting one hour or more to upload the images, and after that receive an alert saying “Oooops! Your image files are too big.� And also, web server will waste an important amount of resources. The same case with 100 users at the same time can be a nightmare!
I have been searching a way to check the file size on client side without having to force user to install anything, but I think that there isn’ t nothing to do with javascript. But I found an interesting PHP article that explains a way to do it with this server side language. The technique consists in:
“A hidden field (measured in bytes) that precede the file input field, and its value is the maximum filesize accepted. This is an advisory to the browser, PHP also checks it. This form element should always be used as it saves users the trouble of waiting for a big file being transferred only to find that it was too big and the transfer failed. Code:
View 1 Replies
View Related
Jul 23, 2005
I've written some ASP using javascript (rather than vbscript) and it runs as expected on my test IIS server. Recently a colleague said that he was unsure if an Apache server, that's setup to serve ASP, can correctly handle non-vbscript ASP.
Does anyone know one way or the other?
View 1 Replies
View Related
Feb 26, 2009
Is there any way to put javascript variable into Apache log file? I know in PHP, there is apache_note function, by which you can get PHP variable into apache logs. Does anybody know if there is similar function in Javascript?
View 5 Replies
View Related
Mar 29, 2009
I have been searching for days for a solution to this problem and I'm hoping someone here can help.
I have some .html files on my local machine that don't seem to want to recognize .js files
I have XP Pro and IIS 5.1
It works fine in FireFox but not IE7, If I put the javascript in the head of the .html doc it works fine in IE7 but not if I try to access it from an external .js file
If I run it on the internet it works fine so the problem is my local setup
I have even tried setting the mime type in IIS but that didn't work either
I have tried to use the full URL and that didn't work code...
View 6 Replies
View Related
Sep 7, 2010
For Ubuntu 10.04, Apache 2, PHP5 and MySQL 5, Firefox 3.6. (I already had Apache, Mysql and Firefox installed, so only added PHP5 via the synaptic manager a couple of days ago).
I have only just started with Ajax and PHP and obtained some demo files from w3schools.com (by googling on 'Ajax PHP database') that I named w3.html and getuser.php. These show how to find person details in a MySQL data base and send them back to be displayed by a browser. They work when Firefox accesses the demo at w3schools.com.
I put these files into directory /var/www on my PC (the upload file directory) and tried via Firefox, but got this error showing in the Firefox Error console:
I also obtained a similar demo from [url]. It failed in the same way, but worked when accessing www.tizag.com directly.
I googled on permutations of 'Ajax', 'XMLHTTPRequest' and 'no element found' and noticed that many have had this problem. A few said that this problem occurs when the Ajax-side expects XML but gets HTML from the server, but did not give any solutions.
PHP works when I put 'localhost/getuser.php?q=2' into the Firefox addressbar. It generates the result table which looks well-formed to me.
I then modified the eventhandler onreadystatechange to
Code:
And found:
i) The status code returned is always 0 (not 200 or any other 3-digit http return code).
ii) The text returned is the content of the getuser.php file, not the content generated by executing the PHP code.
iii) The 'no element found' error is still shown
My intention was to learn and experiment with Ajax and PHP on my local PC, but it did not work. Can it be done, or do I have to get a website and use FTP to upload?
w3.html
Code:
w3.html:
Code:
Use mysql command source w3demo.sql from the MySQL command line.
View 5 Replies
View Related
Jul 23, 2005
I have a number of server-side Javascript applications running on an
old Netscape Enterprise server. I want to move them to Apache. Is
there a way to do this without extensive recoding ? My code contains
a lot of Oracle and SQL Server database interaction.
View 2 Replies
View Related
Apr 24, 2006
Is it possible to run an HTML file from "localhost" and bypass the
various security checks in place for cross-frame scripting? For
example, on a 2-frame page loaded locally:
a) frame 1 includes a form that accepts the name of a web site
(example: www.foo.com), which a script or perhaps a "target" attribute
then loads into frame 2
b) frame 1 waits for frame 2 to load, then reads (for example)
top.frame2.document.images.length and displays the total in frame 1
I realize that "localhost" is not going to match the domain appearing
in frame 2, but as I myself am running the script, logically, where is
the harm?
I haven't done much testing with this yet, but am planning an
application around this concept and am hoping I can make it work. Any
pointers?
View 4 Replies
View Related
Sep 19, 2009
In which ways can I use javascript to detect if the page was coming from localhost.
I know I can search for localhost in string from location.href, but that would miss instances where pages comes from let say:
local.testsite.com or similar
where local.testsite.com are added to the hosts file (windows)
Is there a way to detect this that will allways work?
View 4 Replies
View Related
Apr 20, 2011
When i am executing javascript in browser it is working properly..I have to execute it with some JSP code .. so iam executing it in apache server and javascript is not working .. what to do for resolving this.
View 4 Replies
View Related
Jul 15, 2010
Any of you smartypants know why my javascript onload function (inside the body tag) is not working (alert pop up box). Using localhost as server and no my pop ups are not blocked
View 2 Replies
View Related
Jan 4, 2011
I am having trouble running a code that uses JSON to build a YUI DataTable. I'm using YUI 2.8.2.1 and running an Apache 2.2 server in Windows XP. I hardcoded the DataSource as a JSON string that looks like the following:
[Code]...
View 2 Replies
View Related
Dec 18, 2009
Is there a code to auto refresh the page if 503 apache error message appear ?
View 3 Replies
View Related
Dec 19, 2009
is there a code to auto refresh the page if 503 apache error message appear ?
View 8 Replies
View Related
Jan 4, 2012
I am doing some development using jQuery $.getJson lately and found the following weird scenario.
1. open google chrome without any argument then load a local html file.
2. the local html file will need to have $.getJson[url] .... bla bla bla and jQuery.support.cors = true.
3. data will get loaded
But if you try to load the exact same json data from other domain or localhost, it wouldn't works.
View 1 Replies
View Related
Nov 3, 2005
Can anyone redirect to any online tutorials, articles, code of how to upload a file using HTTP PUT method and JavaScript or VBScript to a server running Apache 2.0 that uses CGI + PERL.
How to create configuration entries in httpd.conf for supporting HTTP PUT method.
How to code with AJAX to post uploaded file content to the server using PUT method ?
View 1 Replies
View Related