Changes between Version 4 and Version 5 of HowToReportABug
- Timestamp:
- 2006-08-06T08:23:40+02:00 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToReportABug
v4 v5 21 21 == Checking System Version == 22 22 {{{ 23 #!ShellExample 23 24 $ uname -a 24 25 Linux gentoo 2.6.12-*** #3 Mon Feb 13 22:58:28 CET 2006 i686 Pentium III (Coppermine) GNU/Linux … … 27 28 == Checking gcc/glibc Version == 28 29 {{{ 30 #!ShellExample 29 31 $ gcc -v 30 32 Reading specs from /usr/lib/gcc/i686-pc-linux-gnu/3.4.5/specs … … 36 38 == Checking PHP Version == 37 39 {{{ 40 #!ShellExample 38 41 $ php -v 39 42 PHP 5.2.0-dev (cli) (built: May 8 2006 18:26:52) (DEBUG) … … 49 52 are you sure which one you use in webserver? check 50 53 {{{ 54 #!php 51 55 <?php phpinfo(); ?> 52 56 }}} … … 68 72 check where the coredump is 69 73 {{{ 74 #!ShellExample 70 75 $ grep xcache.coredump_directory /etc/php.ini 71 76 xcache.coredump_directory = "/tmp/" … … 77 82 * PHP as CGI/FastCGI: Run gdb with the path to the PHP or PHP-enabled httpd binary, and path to the core file, for example: 78 83 {{{ 84 #!ShellExample 79 85 $ gdb /usr/local/bin/php-cgi-fcgi /tmp/core 80 86 ........ … … 86 92 * PHP As Webserver Module: Run gdb with the path to the PHP or PHP-enabled httpd binary, and path to the core file, for example: 87 93 {{{ 94 #!ShellExample 88 95 $ gdb /usr/local/apache/sbin/httpd /tmp/core 89 96 ........ … … 99 106 If you've managed to write a patch, you may attach it at [/xcache/newticket here] too. It would helps us a lot if you generate the bug with: 100 107 {{{ 108 #!ShellExample 101 109 $ svn di > xcache-xxx.patch 102 110 (or)

