Version 19 (modified by 15 years ago) (diff) | ,
---|
How to Submit a Bug Report
- If your issue is a crash or is about a plugin, keep in mind that we are not a support forum for third-party plugins such as those in the Purple Plugin Pack, encryption plugins, etc. We did not develop those plugins and can't help you with those issues. (A sizable majority of crashes are caused by misbehaving plugins.)
- Always make sure your plugins are of the most current version available.
- If you are experiencing crashes, start disabling plugins you have loaded one by one until you eliminate the source of the crash. If your crash is a crash on startup, you can try renaming the prefs.xml file in .purple to something such as prefs.xml.old to force a startup without plugins. Note that this will lose all settings stored there.
- If you renamed prefs.xml, enable plugins one at a time and try to reproduce the crash. Unload those plugins that don't cause the crash to aid troubleshooting. Once you have narrowed the cause down, continue with the instructions.
- If disabling a specific plugin solves the crash, make sure your plugins are all updated to the most current release.
- If all plugins are fully up to date, follow the instructions below to get a .RPT file (Windows users) or a backtrace (other OS users) and then report the crash to the authors of the plugin, not us.
- If your problem is not related to a third-party plugin, search existing bug reports and don't submit a duplicate report.
- Create a new ticket.
Note: You must be logged in to submit or comment on tickets! To create a login if you do not have one, click the "Register" link on the top right-hand corner of any tracker page.
Windows Users
What to do if Pidgin crashes
- Download and install the debug version of Pidgin for Windows.
- The next time you run Pidgin and it crashes, the call stack will be dumped to a
pidgin.RPT
file in your Pidgin install directory (usuallyC:\Program Files\Pidgin
).- Vista users: check for it in
%USERPROFILE%\AppData\Local\VirtualStore\Program Files\Pidgin
.
- Vista users: check for it in
- When submitting a bug report, give a detailed description on how to reproduce your bug and attach the most recent crash dump from your
pidgin.RPT
.- Note that each new crash dump will append to the file, so if you have several crashes, all the dumps will be present.
The Microsoft Windows "Error Report"
isn't useful in any way; please do not include it in the bug report.
Obtaining a Debug Log
If asked to obtain a debug log, the following steps will help you do so.
If Pidgin isn't crashing, you can use the Debug Window (Help->Debug Window
) to obtain the debug log output.
If Pidgin is crashing, you can save the debug output to a file by opening a Command Prompt window and starting Pidgin as follows:
(You should replace C:\Program Files\Pidgin
with the path to which you installed Pidgin if it is different)
cd "C:\Program Files\Pidgin" pidgin.exe -d 2>&1 > "%USERPROFILE%\debug.log"
This will cause the debug output to be saved in a file called debug.log
in your %USERPROFILE% directory.
Preemptive Debug Logging
Pidgin just hiccuped, you want to file a ticket but you wish you had saved the debug log don't you? Here is a script to have it made for you all the time.
Copy this to a *.bat file in your pidgin install directory and use a shortcut to it instead of pidgin.exe when starting pidgin. To make it even less intrusive you can change the icon to the pidgin icon and set the command window to open minimized in the properties of the shortcut (right click -> properties )
@ECHO off REM stay quiet REM make sure the debug directory exists IF NOT EXIST debug mkdir debug REM get the date and time SET dt=%date%_%time% REM save the nice formatting SET odt=%date% %time% REM replace the / with - SET dt=%dt:/=-% REM replace the ' ' with 0 SET dt=%dt: =0% REM replace the : with . SET dt=%dt::=.% REM remove the first 4 characters which are the day plus a space SET dt=%dt:~4% REM build the logfile name SET logfile="debug\%dt%.log" REM remove the space that gets created for some reason... SET logfile=%logfile: =% REM write a nice header ECHO ------------------------------------------------- > %logfile% ECHO Pidgin Debug Log For %odt% >> %logfile% ECHO ------------------------------------------------- >> %logfile% REM start pidgin without an extra command window START /B pidgin -d 2>&1 >> %logfile% REM close this command window EXIT
All Other Users
See our Getting a Backtrace page.