I am working on a Mobile website and would like to test it using my iPhone browser. My Win7 machine and iPhone are on the same wireless network. How do I access local host from the iPhone? Right now I get a 404 error.
TIA
|
|
|
Accessing localhost from the iPhone will simply do a loopback / try to connect to itself (If it supports that?). What you need to do is find the IP of your desktop machine (e.g. If Windows, go to the Once you have your ip, simply visit that from your browser e.g. You may need to open up port 80 (or whatever port your website is running on) in the outgoing security of your firewall if you are running one. |
|||||||||||
|
|
Try this:
NOTE: you must set permission on your firewall settings, if any. |
|||
|
|
|
If your using MAMP key in your ip address (let say 192.0.0.63) in you iphone safari browser followed by the port number 8888 (it should look like this 192.0.0.63:8888) and you will be able to see your local site in your iphone. And if your using wamp server again in your iphone safari browser just key in the ip address (let say 192.0.0.63) and that's it but don't forget to remove the deny all from your httpd.conf file in your wamp server if you look for this line allow from 127.0.0.1 above it or below of it you will see deny from all, just delete this line and restart your wamp server and that should to the job. hope this will help |
|||
|
|
|
Use the Iphone's sdk live tester |
|||||
|
|
You can use ip of computer instead http://localhost. But it may be not accessible. You must edit the httpd.conf (or equivalent configuration file) of your server software. I do not have php installed right now but you can search with keyword: "Allow from or /Directory" Note: IP of the PC where XAMPP is running should be a static IP(not assigned by DHCP), otherwise you have to check it manually every time you restart the PC. |
||||
|
|
|
I wanted to accomplish the same thing as the original request, and looked for an answer here, and turned off every firewall and virusprotection to no avail. Then, I found the following statment regarding IIS express in the microsoft documentation: "IIS express does not serve requests to a browser on another computer, making its approval easier in corporate environments". Bottom line - you will have to install IIS (not the delivered IIS express) to get your project to be seen outside your computer. Source: http://msdn.microsoft.com/en-us/library/58wxa9w5.aspx Hope this is helpfull to other people that are going nuts turning off every security feature on their computer. |
|||
|
|
|
Have a look at this answer, it discusses internally routing HTTP through direct Objective-C calls to an HTTP-capable layer/embedded web server (let's assume that the HTTP server code is within the same application that wishes to display the HTML within a web widget). This has the advantage of being slightly more secure (and possibly faster) as no port(s) should be exposed. |
|||
|
|
|
If you are working on a php project you can change the base href:
Doing that is essential to load images, css and js files on your phone. |
|||
|
|