xdebug Profiler & xampp

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • xdebug Profiler & xampp

    Hey,

    ich versuche jetzt schon seit zwei Tagen verzweifelt, XDebug zum Laufen zu bringen. Ich habe es installiert, aktiviert und die PHPInfo zeigt es auch als geladenes Modul an.

    Aber wenn ich in den Output-Ordner des Profiles schaue, ist dort nichts zu finden. Ich habe schon mehrfach die ini überprüft, Apache neu gestartet und das ganze Teil neu installiert, aber der Profiler legt keinerlei Profile an.

    Weder bei komplexen Applikationen noch bei einfachen Debugging skripten, es wird nichts angelegt.

    Was muss ich tun, damit der Debugger richtig funktioniert?
    This is what happens when an unstoppable force meets an immovable object.

  • #2
    Habe die Lösung nun gefunden, auf Stackoverflow (wer hätte es gedacht^^)

    php - Xdebug and No Profiling Output - Stack Overflow
    Last edited by ApoY2k; 05-09-2011, 12:27.
    This is what happens when an unstoppable force meets an immovable object.

    Comment


    • #3
      Originally posted by ApoY2k View Post
      Habe die Lösung nun gefunden, auf Stackoverflow (wer hätte es gedacht^^)

      php - Xdebug and No Profiling Output - Stack Overflow
      Man kann auch das (richtige?) Antwortposting direkt verlinken:

      php - Xdebug and No Profiling Output - Stack Overflow

      ...

      And it worked OK, but with your existing value of "xdebug.profiler_output_name" it didn't

      I think it's to do with it not allowing colons in the output file name.

      ...
      Code:
      xdebug.profiler_output_dir = "C:\xampp\tmp"
      xdebug.profiler_output_name = "xdebug_profile.%R::%u"
      Wer kommt auf die Idee, Datei- oder Pfadnamen mit (mehreren) Doppelpunkten zu versehen? Mir ist kein modernes[0] Betriebssystem bekannt, das damit umgehen kann ...

      --
      [0] In before: MacOS "Classic" ...
      Klingon function calls do not have “parameters”‒they have “arguments”‒and they always win them!

      Comment


      • #4
        Kann ich mir auch nicht erklären, aber das ist der Standardwert in der php.ini...
        This is what happens when an unstoppable force meets an immovable object.

        Comment

        Working...
        X