Setting Up PHP Designer

A

Anonymous

Guest
I'm having trouble setting up phpdesigner,

i pointed the debugger to:

d945f8657bfc133a76cf1747825bf154.png


and i followed this guide to put the dll file in the right directory.
http://wiki.mpsoftware.dk/doku.php/home/debug_php_with_xdebug

I then try to compile the following code which I thought was pretty easy:
Code:
<?php

$con = mysqli_connect('ipaddress', 'user', 'password', 'database');
//check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }mysqli_query($con,"SELECT * FROM table");
?>

the error I then get is :
Failed loading c:/wamp64/bin/php/php7.0.10/ext/./ext/php_xdebug.dll

but it's defiantly in there, any ideas?

thanks.
 
I changed the details in php.ini to point to the location, but i still get the error message:
Failed loading C:\wamp64\bin\php\php7.0.10\ext\php_xdebug.dll
 
c:/wamp64/bin/php/php7.0.10/ext/./ext/php_xdebug.dll

and

C:\wamp64\bin\php\php7.0.10\ext\php_xdebug.dll

are different directories with different capitalisation (not sure if this matters on windose though but it might matter to the server) and forward and backward slashes used.
 
well i dont get to choose the location of the slash for phpdesigner,
i doubt its this though, since i've only followed the default instructions.
 
Back
Top