php - How do you configure xdebug to work with https? -
i can't xdebug catch on breakpoint using https, works fine http. here xdebug config in php.ini:
xdebug.remote_enable=on xdebug.remote_handler=dbgp xdebug.remote_host=localhost xdebug.remote_port=9000 xdebug.remote_autostart = 0 xdebug.remote_connect_back = 0 xdebug.idekey = "netbeans-xdebug"
i've looked on xdebug docs can't find mention of https. there way make work?
xdebug shouldn't behave differently on ssl, suspect problem in netbeans. can try client , see if works? can find list of clients here: http://xdebug.org/docs/remote
Comments
Post a Comment