localhost

aspnetserve (web server) question

Hi. Using a 'portable' web server in aspnetserve (http://code.google.com/p/aspnetserve/) to host .NET web apps locally on a machine. I've been having speed issues, it would seem. Debugging with VS (their default webserver for such) runs much quicker with no issues. Having issues to the point of seeing javascript fail to load with as...

Iframe permission denied error when developing locally: what are my options?

Here's what's going on: I have an application A hosted on a.mycompany.com and an application B hosted on b.mycompany.com Application A contains an iframe containing a page contained in the application B. <!-- In A's index.html: --> <iframe src="http://b.mycompany.com/something.html" > I need to have either the parent talk to the ifr...

Rails Cucumber URL hosts

So... I have this URL: example.com which works in my browser, cause in my hosts file i have it set to 127.0.0.1 example.com And that works in my browser... but not in cucumber. Any ideas? ...

Drupal Error After Logging In

Hello everyone. I'm kinda new to using drupal and i'm just wondering why I kind of get this error on my new site. See i have this website under WampServer running drupal6-16. Everytime I log in with my pre-created admin account 'admin01' pass: 'admin01' i get redirected to the WampServer localhost which appears to be unusual since the h...

Super user powers in development environment?

Is it too much to ask for when I ask the IT department to give my development team an environment where we can use whatever software that we can download without having to have security check those tools? Of course, the software can be checked by security before deploying to Test, and the development environment can be on a VLAN that is...

JavaScript not working with Chrome & Xampp!

Hi, I've been trying for a couple hours now to figure out why JavaScript wouldn't work. The code works, but here it is anyway. <script type="text/javascript"> function change(text) { document.f1.ta.value="Hi!"; } </script> <form name="f1"> <input type="textarea" id="ta"/> <input type="button" action='change("Hi!")'/> </form> When I cl...

Header redirects to page that doesn't exist?

Hi everyone, I have this strange behavior, PHP headers act differently on webserver and localhost. Example On web hosting function header("Location: /content/".$page['url_language']."/".$page['direction']."/".$w['id']."/") redirects to index.php and the /content/".$page['url_language']."/".$page['direction']."/".$w['id']."/" ar...

Flash - HTTP requests won't work on localhost.

First off, I'm trying to fix something that I didn't build to begin with and the guy who's project it was assures me it was working fine when he left, although a version I haven't touched since he left seems to have the same issues. I'm also a bit new to programming in general so let me know if I've left out important information in my f...

Flash - Uploading to and Downloading from localhost

I have an online flash application that acts as a front end for a server application built in delphi. The server can be installed/used on a remote computer or a personal version can be downloaded and the Flash app pointed at localhost to use it. However, Flash has issues with using the POST and GET functions on the localhost, which makes...

Accessing localhost via IIS 7.5 on Windows 7 very slow

(I've checked here already for similiar questions, and haven't found one that's exactly the same - hence I'm posting a new question) I'm currently running an ASP.NET application on IIS 7.5 on Windows 7. When I access this application on Internet Explorer (either 6, 7 or 8) it is incredible slow and often fails to load at all. There are ...

can load data(google app enngine) from http://localhost:8100/remote_api ..

i can download data from gae (http://zjm1126.appspot.com/remote_api), this is code: appcfg.py download_data --application=zjm1126 --url=http://zjm1126.appspot.com/remote_api --filename=a.csv and it successful : D:\zjm_demo\app>appcfg.py download_data --application=zjm1126 --url=http://zjm1 126.appspot.com/remote_api --filename=a.cs...

can i upload gae-data to localhost server .

this is my Teackback: D:\zjm_demo\app>appcfg.py upload_data --config_file=upload/str_loader.py --filename=upload/a.csv --kind=College --url=http://localhost:8100/remote_api Uploading data records. app_id argument required for non appspot.com domains D:\zjm_demo\app>appcfg.py upload_data --app_id=zjm1126 --config_file=upload/str_loader....

Failed to connect to mailserver at "localhost" port 25

I have a little problem. When I click send on my contact form I get the following warning: Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() I use 64bit Win7, but I have no idea what should I set up to make this work. ...

Session problem in Localhost (wamp2)

I am using wamp 2 for accessing one of my project on localhost, initially i had a problem of maintaining the session in my localhost which i resolved by enabling session.auto_start and providing the domain name with period (.) in it as "127.0.0.1", But now the problem is whenever I switch to another page I do not get anything on the pag...

Link problem with Drupal 6.16

Hello everyone, i am currently working on a website and I need to make a chat application for it (as seen on some other questions i posted, haha) Anyway, the gist is that I now have my website (on localhost for the time being), and my chat application. Now i need to make a button which, on click, will open the chat webpage in a pop-up w...

c# Sure Fire Way to Detect Port Usage

Been back and forth on this recently. Trying to attach a SSH tunnel from a localhost port on my machine to an internal port on the other side of an Internet accessible SSH server using Putty. Putty does not check if the port is available. Before I open the Putty connection, I would like to verify the port is free. It works fine if the p...

configur mecury in xampp to send mail

I am debugging a mail feature, and need Mercury to send mail from xampp, how do i do that? Are there alternatives? ...

How do I access localhost ports on a virtual pc?

I've downloaded and installed the Microsoft Virtual PC and Windows XP mode image for testing IE6. I have several projects on localhost that I access by port numbers in my vhosts file, for example: Listen *:82 <VirtualHost *:82> DocumentRoot "path/to/htdocs/project-folder/public/" </VirtualHost> In the virtual machine I have change...

Applet stops at "Applet loaded" and displays nothing, works perfectly on BlueJ AppletViewer.

Background:  I have a basic applet from various tutorials and books written that adheres to their instructions and, after much toil over getting it to display anything at all, I finally have it so that it displays fine in Applet viewer. It has 3 classes: Animation, Sprite, and spriteTest. Animation and Sprite classes have been thorough...

tcpdump: localhost to localhost

Hi, I write a program that send TCP packets from localhost to localhost. And I want to use tcpdump to capture the packets. But nothing is captured. My command in Ubuntu: sudo tcpdump What argument shall I add? Thanks! ...