Questions tagged [localserver]

Refers to issues related to running a local server (usually web).

A local server is used test applications locally before deployment to a production or formal test environment. Usually refers to a web server.

211 questions
3
votes
4 answers

Access website on a local IIS from a mobile phone

I uploaded my ASP.NET website on local IIS server I'm using windows 8.1 pro and would like to access the website through another PC and a mobile phone (windows phone or android) I would like to know how to configure my network and my server to do…
Scarnet
  • 738
  • 2
  • 11
  • 36
3
votes
3 answers

Laravel-4 : how to use queues to create a daemon

I need to create a Laravel daemon to get some data from the net and store them in a database.I would like to do this in Laravel in order to use Eloquent for my queries. I was told to take a look at queues but as I can see in the documentation a…
John
  • 339
  • 2
  • 7
  • 17
3
votes
0 answers

CoCreateInstance fails with E_FAIL when CLSCTX_LOCAL_SERVER is specified and Surrogate process is used

I am trying to use surrogate process, dllhost, to run my COM 64-bit dll in a separate 64-bit dllhost process. I have made the required registry entries for the same. When I try to create an object of my class using CoCreateInstance or…
Salil Taneja
  • 91
  • 1
  • 1
  • 8
2
votes
4 answers

Make local server reload code after changes

I have files index.html and style.css I want to test using a local server, which I do by running python -m http.server. If I make a change to file style.css (i.e. a file that is not index.html), then when I reload the page I'd like to see the…
2
votes
1 answer

caddy - setting https to localhost on mac

I am using caddy v2.3.0 on mac If run caddy run i am getting following My Caddyfile { local_certs } demoCart.dev:443 { reverse_proxy http://localhost:3000 } If I run caddy validate it says Valid configuration When I am trying to access it…
nmanikiran
  • 2,866
  • 15
  • 19
2
votes
1 answer

Why is my powershell localhost server so slow?

I bodged together a simple local server for hosting a HTML-only web app. I need it because some features, like AJAX requests, do not work from HTML directly open from filesystem. It looks like this and actually works. # source:…
Tomáš Zato
  • 50,171
  • 52
  • 268
  • 778
2
votes
0 answers

the device or resource (localhost) is not set up to accept connections on port "8000"

I have installed phycharm and started the internal Django web server. However, I am not able to connect with the localhost server with 127.0.0.1:8000. I get the following error upon troubleshooting: the device or resource (localhost) is not set up…
Mena
  • 21
  • 3
2
votes
1 answer

eCommerce desktop dry-run issue

So the situation is that I've d/l nopCommerce and a slew of other web development programs in order to save some cash on my business. I've created a local server/database with sql anywhere 12, and then run nopCommerce with VS2010 to begin the…
2
votes
1 answer

Configuration profile installation on iPhone Programmatically

I implemented code mentioned in below link to install Profile in iPhone programmatically. and also Installed a local server like RoutingHTTPServer. https://stackoverflow.com/a/21014275/3825016 Below is the code from the above link, -…
iGatiTech
  • 2,306
  • 1
  • 21
  • 45
2
votes
1 answer

cs cart (php, apache) links on local computer doesn't work. reciving 404error

I've copied my cs cart to my local computer and set up, and configure how it should be. Cs cart opens, and run - everything looks fine. Admin panel is working, and all flow between pages on panel admin is fine. But I can't move between pages on…
2
votes
1 answer

Controlling the Threading Model of COM objects served by .NET Out of Process Servers

When creating an out-of-process COM server in C# as documented in Microsoft's All-In-One code sample: CSExeCOMServer, it seems difficult to control the threading model of objects that are created in the server (by a client). The object being created…
Steven
  • 259
  • 1
  • 10
2
votes
2 answers

cURL geto no response no error online server

Hope anyone can help me out with this. I have tried to call external site using cURL but I get no error or response. Yet it works fine on local server but does not work on production server. I had started the call using file_get_contents() but fail…
David NIWEWE
  • 117
  • 1
  • 4
  • 13
2
votes
1 answer

Deploy code from local to server without runnning pull command on server side

I have a local machine and a server. I am using GitLab. Anytime I deploy my code from local, I wish to automatically deploy my code on server machine. Currently the issue that I am facing is, when I am deploying code from local to server(SSH), I…
Aastha
  • 27
  • 2
2
votes
2 answers

What's the .NET equivalent of a COM LocalServer?

In VB6, it was a simple matter to write applications that served up COM classes, the application would run as a system-wide singleton and would be able to serve COM classes to multiple processes. I believe this is called a COM LocalServer. What's…
Tim Long
  • 13,508
  • 19
  • 79
  • 147
2
votes
1 answer

get shared/server url using CocoaHTTPServer

I am creating application that play video using chromecast device on TV (Apple TV or monitor that support HDMI port). Application is playing url like "https://serveraddress/video.mp4" but its not playing the video stored in app bundle(local video).…
Seema Sharma
  • 379
  • 3
  • 12
1
2
3
14 15