Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm developing an app to ping a host in windows phone 8,is there any method to do it?since the system.net class isn't available for windows phone...
As you've noticed, it's not built in and there is not sufficient support in the Windows Phone 8 platform to support building "ping" functionality currently.
While there are a handful of applications available for the phone that have "ping" functionality, they are relying on an external server to support the ping operation. That means that they can only ping destinations that are accessible to their servers. They are essentially depending on a "ping-proxy" to perform the ping on behalf of the phone application.
You could build something similar to emulate the ping functionality, if you were OK with the external dependency and the addressibilty/accessibility limitation (you wouldn't be able to ping an address on a local LAN if the "ping-proxy" server couldn't resolve the address).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I don't have much knowledge about servers or anything this all but have little base knowledge about HTML or LAN Networking.
As i mention in Title. I just want one simple web-page for entry our data, such as call time, location, description, caller and receiver and i know this all can do thru HTML base webpage design but what i want is share that web-page thru LAN (Not Online) for key-in 3-4 persons in different computer. What type of software (Application) i have to use and the setup.
I have a 5 PC Connected with LAN with main PC (normal windows 7 but if need can change as Server also) and i just want Web-Page or HTML Page all data store and share from the Main PC to others workers PC.
Thank You in Advance for your Amazing Answer :)
In order to achieve your goal you need to set up a server environment on your computer. The best way to do it worry free would be to use an already bundled server like XAMPP.
It's very easy to host website on xampp server by following those steps.
Install xampp in your computer/server
Place web pages in xampp servers htdocs folder
To make default path of the server edit configuration of xampp and
submit path of your web folder
Now start apache (and mysql if needed) and try to run localhost/yourwebdirectory
once run without error your server is running fine. You can also run it by using your network IP.
Now check firewall and allow port 80 (If you require database, setup port 3306 as well)
If you ever want to make it public, you can use a no-ip domain and point that to your IP Make sure the firewall allow public access.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I've set up a home server with Apache Web Server on Ubuntu 16.04. I'm able to see my website externally. But I'm unable to display a video stream that's on my local network on the website.
How would I configure Apache to recognize http://192.168.1.215:8081 and allow it to be shown externally?
Not a programming question, but you would need to setup a forward in your router.
If your IP Address allocated by ISP can be accessed on the Internet(NOT behind a NAT):
Setup port-forwarding on your router
(optional) Use an available port. (if some are filtered or blocked by ISP)
(optional) Use DDNS if your address is not fixed like a regular server.
If not:
You must have a server as "Springboard" which can be accessed on Internet, then SSH -R can be used for forwarding a local port behind NAT to remote.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I have hosted a HTML page in my IIS 7.5 .It is browse able using localhost.
then I used ipconfig in CMD and got replaced the localhost with my IP address. It is browse able again.
But the same link if I am trying to browse from another computer or from my smart phone it cant be browse.
You should be able to access your page on another machine that is connected to your network using the IP you retrieved with ipconfig. However, if you are trying to connect to it remotely (from outside of the network) you will need to setup port forwarding on your router.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I just re installed xampp on my computer. When I did mysql started fine but Apache didn't, so I changed the port it was using 80 I think and changed it to 88. It then all worked fine. I have just started my laptop this morning which is the following morning from the reinstall and when I go to local host it says chrome could not connect to local host, but Apache and mysql started fine. And it worked fine yesterday.
Is it to do with the port change?
Thanks
sometimes you have to enable work offline in browsers. You can try 127.0.0.1:88 / localhost:88
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I currently use Komodo and work directly off a remote server. I have just discovered phpstorm and I want to start giving this a go.
My question is, how can I work off a remote server like in Komodo? I really couldn't understand how to do it!
As #LazyOne commented, it's not possible right now. You can vote for the related feature request.
PhpStorm (as of 7.1) does not support working directly on a remote server.
You should vote for the feature here as #CrazyCoder mentioned.
A temporary alternative for SFTP
You can use a SSHFS mount to work directly on files on a remote server. It isn't ideal, but I found it works ok.
I use the follow command and settings (on a mac).
To mount:
sshfs -o IdentityFile=~/.ssh/id_rsa root#xxx.xxx.xxx.xxx:/ ~/sshfs_mounts/example -oauto_cache,reconnect,defer_permissions,noappledouble,volname=example
To unmount:
umount ~/sshfs_mounts/example
For more info see http://benohead.com/mac-os-x-use-sshfs-to-mount-a-remote-directory-as-a-volume/
phpstorm has two very useful features to work with remote servers.
when you commit, it can automatically deploy/upload to the remote
location (sftp, ftp).
when you commit you can also push to remote location git or other vcs.
It is correct as mentioned, phpstorm needs the local copies of the code aswell.