Friday, 2011-04-15

*** Quits: JonMarkGo (~Jon@ool-18bfe16f.dyn.optonline.net) (Ping timeout: 276 seconds)01:07
*** Joins: rolfkleef (~rolfkleef@p57A0897D.dip0.t-ipconnect.de)02:02
*** Joins: giallu (~giallu@fedora/giallu)02:27
*** Joins: Cupertino (~Cupez@62.177.158.122)02:32
*** Quits: Cupertino (~Cupez@62.177.158.122) (Changing host)02:32
*** Joins: Cupertino (~Cupez@unaffiliated/cupertino)02:32
*** Joins: soustruh (~Miranda@firewall.czech-tv.cz)03:02
*** Joins: siebrand (~chatzilla@ip5456c382.speed.planet.nl)03:07
*** Joins: sgimeno (~chatzilla@163.117.206.10)03:22
*** Quits: sgimeno (~chatzilla@163.117.206.10) (Remote host closed the connection)03:36
*** Quits: `Leonard (~Leonard@150.237.48.99) (Quit: leaving)03:41
*** Quits: Rixie (~Rixie@188.177.20.182) (Remote host closed the connection)03:41
*** Joins: `Leonard (~Leonard@150.237.48.99)03:41
*** Joins: Rixie (~Rixie@188.177.20.182)03:41
*** Quits: mellen (~thansen@x1-6-00-22-02-00-0c-40.k1109.webspeed.dk) (Ping timeout: 240 seconds)03:48
*** Joins: mellen (~thansen@x1-6-00-22-02-00-0c-40.k1109.webspeed.dk)03:51
*** Quits: `Leonard (~Leonard@150.237.48.99) (Ping timeout: 258 seconds)03:58
*** Joins: `Leonard (~Leonard@150.237.48.99)04:14
*** Quits: siebrand (~chatzilla@ip5456c382.speed.planet.nl) (Ping timeout: 246 seconds)04:24
*** Quits: `Leonard (~Leonard@150.237.48.99) (Quit: Lost terminal)04:29
*** Joins: `Leonard (~Leonard@150.237.48.99)04:29
*** Joins: kirillka (~Miranda@195.242.142.17)04:43
*** Joins: siebrand (~chatzilla@ip5456c382.speed.planet.nl)04:58
*** Joins: dsp_ (~tt@acidlab.technoanimal.net)05:13
dsp_greetings05:13
dsp_i have a query. the graph plugin with mantis, is there a way to colourise it? an example of how it currently looks: http://devbox.technoanimal.net/bugs.png05:15
dsp_not really that useful :<05:15
*** Joins: fabe_ (~fabe@dslb-084-058-180-235.pools.arcor-ip.net)06:05
fabe_hi06:05
fabe_im want to install matis but im only getting 500 error when i open /admin/install.php06:06
fabe_i made a test.php file and it seems to be working fine06:07
fabe_rights are also ok06:07
fabe_anyone got any ideas what im doing wrong?06:07
dhx1dsp_: are you using built-in ezC Graph or external JpGraph support?06:10
dhx1dsp_: actually my bad... I think that particular graph uses GraphViz06:10
dhx1fabe_: can you check your web server logs for PHP errors?06:10
dhx1fabe_: and add these lines to config_inc.php:06:11
dhx1(temporarily while debugging)06:11
dhx1$g_show_detailed_errors = ON;06:12
dhx1$g_display_errors = array(E_WARNING => 'halt',06:12
dhx1                           E_NOTICE => 'halt',06:12
dhx1                           E_USER_ERROR => 'halt',06:12
dhx1                           E_USER_WARNING => 'halt',06:12
dhx1                           E_USER_NOTICE => 'halt',06:12
dhx1                           E_ALL => 'halt');06:12
fabe_i dont have a config_inc.php i just extracted the files form the zip i downloaded06:17
fabe_according to the install doc this is copied after the db is setup06:17
fabe_there are no new entries in the /var/log/apache2/error_log06:18
fabe_and other logs i should check06:19
fabe_?06:19
dhx1hmm so other .php scripts execute fine?06:20
dhx1and the permissions for those are the same as those for the scripts in mantisbt/admin/?06:20
fabe_the .php i made works fine06:21
fabe_i just did a chmod -R 777 *06:21
fabe_are there any other things needed besides php and mysql06:23
fabe_?06:23
dhx1nope06:27
dhx1which version of PHP?06:27
fabe_# php --version06:28
fabe_PHP 5.2.11 with Suhosin-Patch 0.9.7 (cli) (built: Sep 24 2009 13:44:34)06:28
fabe_Copyright (c) 1997-2009 The PHP Group06:28
fabe_Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies06:28
dhx1hmm and mantisbt-1.2.5?06:28
fabe_yeah think so just downloaded the newest version from the site06:28
dhx1ok06:29
dhx1in install.php after <?php06:29
dhx1can you insert the following line:06:29
dhx1die('ok');06:29
dhx1then execute install.php from your browser06:29
fabe_renders ok06:30
dhx1interesting06:31
dhx1can you move die('ok'); down the page after any require_once() calls?06:32
fabe_i get a 500 then06:32
fabe_im out to lunch bbl06:33
dhx1ok create config_inc.php in the mantisbt directory (one level up from /admin/)06:33
dhx1and add:06:33
dhx1<?php06:34
dhx1<dhx1>  $g_show_detailed_errors = ON;06:34
dhx1<dhx1>  $g_display_errors = array(E_WARNING => 'halt',06:34
dhx1<dhx1>                             E_NOTICE => 'halt',06:34
dhx1<dhx1>                             E_USER_ERROR => 'halt',06:34
dhx1<dhx1>                             E_USER_WARNING => 'halt',06:34
dhx1<dhx1>                             E_USER_NOTICE => 'halt',06:34
dhx1<dhx1>                             E_ALL => 'halt');06:34
dhx1save and reload index.php to see if you get errors06:34
dhx1ok06:34
fabe_kk sec06:34
dsp_dhx1: ah, i just got there from view issues -> graph06:35
dhx1then also check php.ini settings to ensure that errors are being reported verbosely to the user (undo these changes for your live site though)06:35
dsp_the plugin configuration is set to use JpGraph06:35
dsp_i really don't know mantis well though :/06:35
fabe_no im still just getting nothing but a 50006:37
dhx1fabe_: checked php.ini?06:37
fabe_php.ini?06:37
dhx1fabe_: it could be that your version of PHP has some ultra strict security settings causing the 500 error06:38
dhx1for instance, not being able to include files from directories that aren't 'registered'?06:38
fabe_where is this file normaly?06:38
dhx1The Suhosin patch apparently screws some things up06:38
dhx1not sure, you'd have to consult your distribution documentation (assuming you're using a Linux variant)06:39
fabe_ah found it06:39
dhx1it won't be an issue with MantisBT... it sounds to me like PHP/web server misconfiguration06:39
fabe_yeah06:39
fabe_crap 1000 line cfg06:39
*** Joins: paulr (~IceChat09@cpc1-enfi9-0-0-cust389.hari.cable.virginmedia.com)06:59
*** Joins: daryn (~daryn@173.190.249.158)09:00
dhx1daryn: ! :)09:02
darynhello09:02
darynon the trailing edge of the flu09:03
dhx1daryn: paulr just informed me today that MantisBT doesn't support Native HTML5 :(   https://bugzilla.mozilla.org/show_bug.cgi?id=64940809:04
dhx1daryn: flu = :(09:04
darynhm...what does that mean?09:06
dhx1daryn: joke going around the web browser community about Microsoft's marketing buzzwords09:06
dhx1"Native HTML5" makes no sense on multiple counts09:07
darynok, makes much more sense now!09:07
daryni just read the bug comments09:07
daryni thought it sounded strange09:07
dhx1apparently *only* Windows 7 with IE9 support Native HTML5... :P09:07
darynmorons09:08
*** Parts: Rixie (~Rixie@188.177.20.182) ()09:08
paulrlo09:08
paulrdaryn has a cold?09:08
darynpaulr, worse09:08
dhx1what they were trying to say (I think) is that they have more hardware accelerated drawing support in IE9/1009:09
darynalthough now it's pretty much a cold09:09
paulrswine flu09:09
paulr!09:09
darynno just average garden variety sore throat, fever, chills, muscle aches, and general weakness.09:11
dsp_anyone know of any resolution for my graphing woes?09:13
paulrwhats your graphing woes?09:13
dsp_http://devbox.technoanimal.net/bugs.png09:13
dsp_no idea how to get colour. it is pretty useless without09:13
paulrer09:14
paulrwhy's it in black and white?09:14
dsp_that's what i'd like to know :)09:14
paulrthat looks like ezc's graphing option right?09:15
dsp_i'm really not sure. someone just lumped me with "solve this". i don't know mantis well at all09:15
dsp_that graph i got from view issues -> graph09:15
dsp_plugin configuration is set to use JpGraph09:15
dsp_though not sure if that is relevant09:15
paulroh that's not a summary graph?09:16
dsp_dont think so09:16
paulr(summary page graph)09:16
dsp_let me see09:16
paulrare the summary page graphs in colour if they get those?09:17
dsp_i get summary by status, this week, show as graph, in black and white09:17
dsp_if that is what i am supposed to be checking09:17
dsp_ah, summary. hang on09:17
dsp_the summary page is in colour09:17
dsp_so yes, clearly capable of such :)09:18
dhx1paulr: it looks like graphviz to me?09:20
dsp_is this standard behaviour, or is it just our deployment?09:21
paulrdhx1: no?09:21
dhx1paulr: oh yeah guess not, it's part of MantisGraph09:21
*** Joins: tmckeown (~Adium@64.191.211.43)09:26
dsp_is that a separate project?09:40
*** Quits: siebrand (~chatzilla@ip5456c382.speed.planet.nl) (Ping timeout: 246 seconds)09:41
paulrno09:47
*** Quits: kirillka (~Miranda@195.242.142.17) (Quit: kirillka)10:04
*** Joins: JonMarkGo (~Jon@ool-18bfe16f.dyn.optonline.net)10:05
*** Joins: ericbarnes (~ericbarne@rrcs-98-101-76-249.midsouth.biz.rr.com)10:33
*** Quits: rolfkleef (~rolfkleef@p57A0897D.dip0.t-ipconnect.de) (Ping timeout: 260 seconds)10:50
*** Quits: soustruh (~Miranda@firewall.czech-tv.cz) (Quit: visit http://wormscesky.cz)10:54
*** Quits: Cupertino (~Cupez@unaffiliated/cupertino) (Quit: I give up...)11:02
*** Quits: fabe_ (~fabe@dslb-084-058-180-235.pools.arcor-ip.net) (Quit: Leaving)11:20
*** Quits: giallu (~giallu@fedora/giallu) (Ping timeout: 248 seconds)11:25
*** Joins: giallu (~giallu@fedora/giallu)11:26
*** Quits: giallu (~giallu@fedora/giallu) (Ping timeout: 240 seconds)11:51
*** Joins: siebrand (~chatzilla@535392CA.cm-6-4c.dynamic.ziggo.nl)11:56
*** Quits: siebrand (~chatzilla@535392CA.cm-6-4c.dynamic.ziggo.nl) (Ping timeout: 246 seconds)12:00
*** Joins: mantisbt_25466 (454f1ba7@gateway/web/freenode/ip.69.79.27.167)12:13
mantisbt_25466hi12:13
mantisbt_25466i need some help with my mantis account12:13
*** Parts: ericbarnes (~ericbarne@rrcs-98-101-76-249.midsouth.biz.rr.com) ("Leaving...")12:20
*** Parts: dsp_ (~tt@acidlab.technoanimal.net) ()12:30
dhx1exit12:32
*** ChanServ sets mode: +o jreese12:41
*** dhx1 was kicked by jreese (You wanted to exit...)12:42
*** ChanServ sets mode: -o jreese12:42
*** Joins: dhx1 (~anonymous@60-242-108-164.static.tpgi.com.au)12:42
jreese:P12:42
jreesehi dhx1 :)12:42
dhx1hah thanks :)12:42
dhx1command prompt... IRC... same thing right12:42
jreeselol, it's worse because I use Irssi from a screen session on my server, so I use the same window for both :P12:43
dhx1haha12:43
jreeseit probably bites me at least once a week12:43
jreesemantisbt_25466: what help did you need?12:44
*** Joins: soc42 (~soc42@f052211195.adsl.alicedsl.de)13:00
soc42hi there13:05
*** Quits: JonMarkGo (~Jon@ool-18bfe16f.dyn.optonline.net) (Ping timeout: 240 seconds)13:06
*** Quits: mantisbt_25466 (454f1ba7@gateway/web/freenode/ip.69.79.27.167) (Ping timeout: 252 seconds)13:08
soc42is there anything to care about while upgrading from v1.2.0 to current stable v1.2.5?13:14
jreesesoc42: likely not, unless you have third party plugins installed13:14
soc42what has changed? is there a changelog available?13:15
soc42wow, cool13:15
jreesehttp://www.mantisbt.org/bugs/changelog_page.php13:16
soc42i have "meta programming v0.1" in my plugins ;o)13:16
soc42i think you wrote it!13:16
jreeseyep13:16
soc42that's awesome13:16
soc42i use it together with the WebSVN integration13:16
jreeseI assumed13:17
jreeseyou'll want to make sure you update the source integration plugins13:17
soc42the websvn version is 0.1413:18
jreeseyeah, version 0.16.2 is available, and has improvements and bug fixes13:19
soc42i was looking for the leetcode website, and now i'm on http://noswap.com/projects/source-integration/13:20
soc42where can i get the new versions?13:20
soc42your are writing about a git archive...13:20
soc42is it the git://git.mantisforge.org/source-integration.git ?13:21
jreesehttp://git.mantisforge.org/w/source-integration.git13:21
jreeseyou can grab a snapshot from that page13:21
jreeseor more directly:  http://git.mantisforge.org/w/source-integration.git?a=snapshot;h=3d258fd057c399f09bae28c70e5ce0a77075bcb0;sf=tgz13:22
soc42thank you very much! i'll give it a try...13:22
jreeseyou're welcome13:22
soc42are there also updates for "Meta Programming", the "Subversion / WebSVN Integration" and "Subversion Integration"?13:23
jreeseno to meta, but the snapshot for source integration includes the svn plugins as well13:24
soc42ok, so meta is up2date and the others update with SCI with the latest .tgz13:25
jreeseyep13:26
soc42well done, i love your tools...13:26
jreesegood to know :)13:26
soc42what do you think, do i also have to backup my database and do a clean install and then re-import the data?13:35
jreeseI would back up the database and configuration to be safe, but I don't think you need to worry about a clean install13:39
soc42alright, data is safe now.13:40
soc42the upload is in progress now...13:50
soc42again, thanks for your kind support!13:50
soc42now i'll see what happens...13:50
soc42as it seems, the site just works13:56
soc42now proceeding the plugins13:56
soc42hey, you added git-support in source-integration, that's great!13:57
jreeseit's been available the entire time ;)13:57
jreeseyou probabyl just didn't have the git plugins installed13:58
soc42i think, you're right...13:58
soc42git just earned some awareness lately...13:58
soc42maybe it was just out of focus for me13:59
soc42fantastic!14:00
soc42just uploaded the new "source-integration" and updated the plugins14:00
soc42everything looks green now, "source-integration" v0.16.214:01
soc42and the other plugins like svn + git also at v0.1614:01
*** Joins: soustruh (~Miranda@4.136.broadband10.iol.cz)14:04
soc42enjoy your evening & happy weekend! i am off now.14:04
soc42hope to cu next time ;o)14:04
jreesethanks, you too14:05
soc42bye14:16
*** Quits: soc42 (~soc42@f052211195.adsl.alicedsl.de) (Remote host closed the connection)14:16
paulrheh nice one john14:48
jreesepaulr: ?14:53
paulrkicking dhx ;p14:56
jreeseoh14:56
jreeseyou're a bit late on that one...14:57
*** Joins: siebrand (~chatzilla@535392CA.cm-6-4c.dynamic.ziggo.nl)15:38
*** Joins: giallu (~giallu@fedora/giallu)17:05
*** Quits: tmckeown (~Adium@64.191.211.43) (Ping timeout: 246 seconds)17:33
*** Quits: daryn (~daryn@173.190.249.158) (Quit: Ex-Chat)17:47
paulrmo18:40
*** Joins: mantisbt_96940 (534c79f6@gateway/web/freenode/ip.83.76.121.246)18:55
*** Parts: mantisbt_96940 (534c79f6@gateway/web/freenode/ip.83.76.121.246) ()18:59
*** Quits: soustruh (~Miranda@4.136.broadband10.iol.cz) (Quit: visit http://wormscesky.cz)19:07
*** Quits: paulr (~IceChat09@cpc1-enfi9-0-0-cust389.hari.cable.virginmedia.com) (Quit: REALITY.SYS Corrupted: Re-boot universe? (Y/N/Q))19:32
*** Quits: scribe9343423 (~scribe934@static.96.23.63.178.clients.your-server.de) (Remote host closed the connection)20:00
*** Joins: scribe9343423 (~scribe934@static.96.23.63.178.clients.your-server.de)20:00

Generated by irclog2html.py 2.9.2 by Marius Gedminas - find it at mg.pov.lt!