Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 831471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T04:12:32+00:00 2026-05-15T04:12:32+00:00

I’m a real newbie when it comes to PHP debugging so forgive my stupidity.

  • 0

I’m a real newbie when it comes to PHP debugging so forgive my stupidity. I have a simple html form that submits to a PHP script and I want to debug that script and see what’s being sent from the form.

My Aptana has two two PHP interpreters installed;
Zend Debugger on port 10001 and XDebug on 9000

I have the Firefox Aptana Addon installed

I have my HTML page on the following url, running locally;

http://3i/latest.html

In the IDE I open the PHP script and add some breakpoints, I then open the latest.html and I click on the debug button. It launches the HTML page in a local webserver running at;

http://127.0.0.1:8000/3i/latest.html

I then fill out the form and submit at which point the debugger tells me the JS Debugger has terminated but it doesn’t stop at my break points.

I’ve had a good read around and I can’t find anything which helps me, which makes me think it’s something pretty easy and I’m being a bit dumb.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T04:12:33+00:00Added an answer on May 15, 2026 at 4:12 am

    You say that you have both XDebug and Zend debug installed – did you make the appropriate modifications to your local php.ini? You can’t have both running at the same time – debuggers act as application controllers, communicating with your web server and giving it orders to stop, pause, or continue execution of your script and having two of them configured at the same time can cause unexpected debugging behavior like you described.

    Assuming you want XDebug, you would open up php.ini, search for [XDebug] (or [Zend]). Comment out all the zend_* options and put the following options in:

    [XDebug]
    ;; Only Zend OR (!) XDebug
    zend_extension_ts="C:\xampp\php\ext\php_xdebug.dll"
    xdebug.remote_enable=true
    xdebug.remote_host=localhost
    xdebug.remote_port=9000
    xdebug.remote_handler=dbgp
    xdebug.profiler_enable=1
    xdebug.profiler_output_dir="C:\xampp\tmp"
    

    Yes, I know I’m on Windows at the moment – don’t splutter. Replace the extension path with the appropriate path to XDebug on your server. If you are wanting to use Zend Debugger then it is much the same, just disable XDebug. Don’t forget to restart your web server.

    EDIT – I may have been unclear; you can have both installed, you just can’t have both running at the same time.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.