Questions tagged [easyphp-webserver]

4 questions
2
votes
0 answers

How to add additional PHP versions to EasyPHP DevServer

I have EasyPHP DevServer 17 up and running on my Windows 10 machine. I currently have my EasyPHP environment installed within my C:\EasyPHP directory. I can see from the server settings that I have two options for selecting my PHP verions: 5.6.30…
klewis
  • 7,459
  • 15
  • 58
  • 102
0
votes
1 answer

EasyPHP - is it possible to replace Webserver to Devserver?

I'm wondering, wheter it's possible instead of two installed apps (EasyPHP Deveserver & EasyPHP Webserver) to have installed only one - EasyPHP Devserver. This app would be somehow modify to allow access from another computers: A) from LAN, B) from…
chudst
  • 139
  • 3
  • 12
0
votes
1 answer

Use a batch file to automatically start 5 separate cmd prompts, where each cmd prompt points to a different directory and starting the php web server

I hope you can help me out with this issue, which I thought would be quite trivial but is turning out to be quite a bugger. As mentioned in the subject line this is what I want to accomplish: Automatically run 5 command prompts, each new command…
Tim Kruger
  • 863
  • 2
  • 10
  • 26
-7
votes
2 answers

Warning: Trying to access array offset on value of type null in index.php on line 21

Below is my PHP code and I am facing the issue of Warning: Trying to access array offset on the value of type null in index.php on line 21 Code: $curl = curl_init(); $url="url"; curl_setopt_array($curl, array( CURLOPT_URL => $url, …