IRC Log from 2010-06-21

00:01:28 *** sar3th|testing has quit (Ping timeout: 252 seconds)
00:16:36 <gluxon> ChrisMorgan: What's wrong with the default behavior of Eclipse Portable with Java Portable?
00:16:52 <gluxon> Shouldn't it be using Local java is there's no Portable Java?
00:17:55 <ChrisMorgan> gluxon: the point is that it's not using Java Portable /at all/
00:18:54 <ChrisMorgan> If you made the path to Java in the INI file invalid, it'd use Java Portable, but if you didn't have it or had a valid path in the INI file, it would not pass -vm "$JAVAPATH" to eclipse.exe.
00:21:59 <gluxon> If it has a valid path then it should use the -vm "$JAVAPATH?
00:22:19 <gluxon> Sorry, that wasn't a question, that was what I had set.
00:30:14 *** rouilj (~rouilj@pool-74-104-157-242.bstnma.fios.verizon.net) has joined #portableapps
00:31:54 *** TimClark has quit (Ping timeout: 252 seconds)
00:32:05 <gluxon> ChirsMorgan: I don't see the mistake in it. If it has a valid path, it'll use it and launch it with the -vm switch
00:32:59 <ChrisMorgan> gluxon: go back over lines 246 to the end and /make the indentation make sense/. Then I think you'll see.
00:36:46 *** Mir_ has quit (Ping timeout: 252 seconds)
00:37:53 <gluxon> ChrisMorgan: Yeah, I can't find anything wrong, and it's working just like it should be.
00:38:16 <ChrisMorgan> Line 250: ${Else}
00:38:25 <ChrisMorgan> That's indented one level more than it "should" be.
00:39:10 *** Mokura (~viera@adsl-99-63-63-88.dsl.spfdil.sbcglobal.net) has joined #portableapps
00:39:17 <ChrisMorgan> http://pastebin.org/346625
00:40:11 *** Mir_ (~Mir@pool-71-109-174-251.lsanca.dsl-w.verizon.net) has joined #portableapps
00:40:35 <gluxon> But it should have the indent?
00:40:35 <gluxon> http://pastebin.org/346630
00:41:11 <gluxon> Ah.
00:41:21 <gluxon> The ${EndIf} should be moved down.
00:41:58 <ChrisMorgan> I think that's probably what you meant. The code is just a mess really. And using ExecWait is pointless, Exec would be better.
00:42:18 <gluxon> Yeah, there's nothing left to clean up.
00:42:51 <ChrisMorgan> What happens if you specify an invalid -vm parameter? Does it mind?
00:43:39 <gluxon> It says that it couldn't find java in the folder.
00:43:47 <gluxon> That's exactly what I want it to do :D
00:44:23 <ChrisMorgan> But Java could be local.
00:44:29 <gluxon> And it'll say there's no java installation when there's no -vm switch or local java.
00:45:00 <gluxon> Sorry, that or should be an and.
00:45:40 <ChrisMorgan> Anyway, that wouldn't matter if you switched to PAL... with PAL it'd make JAVA_HOME to the proper path, including getting a local installation if there's no portable installation.
00:46:56 <ChrisMorgan> Just thinking about the way you write to $PROGRAMDIRECTORY\configuration\.settings\org.eclipse.ui.ide.prefs, will that file be there when it's installed due to you using it or is it excluded in the installer?
00:47:27 <gluxon> No, it's not there by default.
00:47:32 <gluxon> How should I be creating it?
00:47:43 <gluxon> ${ConfigWrite} fails if the file doesn't exists
00:47:57 <gluxon> But on the other hand, WriteINIStr creates the file it it doesn't exist.
00:48:00 <ChrisMorgan> I mean, it's in App, so when you generate the installer won't it be there?
00:48:25 <gluxon> Yeah, Eclipse creates it on first run.
00:50:00 <ChrisMorgan> So when a new user installs it, that file will be there because it was created for you.
00:51:25 <gluxon> Yep.
00:52:27 <ChrisMorgan> Hmm... that's probably not the best thing, it'll contain personal data from you. What do you reckon?
00:53:02 <gluxon> No, the launcher writes the same data Eclipse writes by default.
00:53:28 <gluxon> Except for the workspace folder change to Data\workspace.
00:53:46 <ChrisMorgan> I mean that when the user installs it it starts off with your data.
00:53:46 <gluxon> Well, any idea on how to create an empty file?
00:54:01 <gluxon> ChrisMorgan: It doesn't?
00:54:19 <ChrisMorgan> In App\Eclipse\configuration\.settings\org.eclipse.ui.ide.prefs
00:54:51 <gluxon> Oh, no.
00:55:01 <gluxon> Sorry, I misunderstood you question earlier.
00:55:14 <ChrisMorgan> Do any other values *ever* go in that file than the RECENT_WORKSPACES_PROTOCOL, MAX_RECENT_WORKSPACES, SHOW_WORKSPACE_SELECTION_DIALOG and eclipse.preferences.version?
00:55:29 <gluxon> No, the configuration\.settings directory doesn't exist on first install.
00:55:46 <ChrisMorgan> It's excluded by the installer?
00:55:49 <gluxon> ChrisMorgan: I'm not sure, but Eclipse wants those or it'll give errors.
00:56:16 <gluxon> ChrisMorgan: No, it's created by Eclipse on first run. Eclipse comes without it by default though.
00:56:26 <ChrisMorgan> I mean Eclipse Portable.
00:56:55 <ChrisMorgan> You use Eclipse Portable. Thus that directory exists. You make the installer: have you explicitly excluded it from the installer or does it get put in too (as it's in App)?
00:57:54 *** Mokura has quit (Quit: Leaving)
00:58:43 <gluxon> It's not discluded, it doesn't come with it. :/
00:59:36 *** sar3th is now known as sar3th|away
01:00:10 <ChrisMorgan> The file App\Eclipse\configuration\.settings\org.eclipse.ui.ide.prefs will be created when you personally run Eclipse Portable. It's in App, so then it will be included in the Eclipse Portable installer when you build it. That is correct, is it not?
01:01:12 <gluxon> No. There's no .settings folder in the installer.
01:03:29 <gluxon> Okay, Eclipse Portable creates a org.eclipse.ui.ide.prefs on first run. There's nothing in the .settings folder on install.
01:06:09 *** AppGuy (~quassel@unaffiliated/appguy) has joined #portableapps
01:06:21 <ChrisMorgan> Are you generating the installer from a fresh copy, and not testing it at all before you build it (or testing another copy)? Otherwise I'd expect that all to be there.
01:07:15 *** AppGuy has quit (Remote host closed the connection)
01:07:41 *** AppGuy (~AppGuy@unaffiliated/appguy) has joined #portableapps
01:07:55 <gluxon> I create a copy, test it, then packaged it if it exists.
01:08:24 <gluxon> App\Eclipse is as it is when downloaded from eclipse.org
01:09:06 <ChrisMorgan> Ah. That's fine then.
01:09:10 <ChrisMorgan> So that's why that happens.
01:09:45 <ChrisMorgan> I still wonder whether App\Eclipse\configuration or App\Eclipse\configuration\.settings should be in Data.
01:09:57 *** AppGuy has quit (Client Quit)
01:10:18 *** AppGuy (~AppGuy@unaffiliated/appguy) has joined #portableapps
01:11:52 <gluxon> ChrisMorgan: Eclipse modifys a lot of stuff in almost all of its folder, I can't track them ALL down and move them to \Data. Besides, moving all those files back and forth is a waste of CPU and launcher time :(
01:12:38 <gluxon> And it would rerequire ExecWait
01:13:07 <ChrisMorgan> (With PAL it wouldn't be an issue at all. And it'd be far easier.)
01:19:14 *** rouilj1 (~rouilj@pool-74-104-157-242.bstnma.fios.verizon.net) has joined #portableapps
01:24:05 *** rouilj has quit (Quit: Leaving.)
01:44:03 *** gluxon has quit (Quit: Leaving.)
02:00:39 *** rouilj (~rouilj@pool-74-104-157-242.bstnma.fios.verizon.net) has joined #portableapps
02:02:35 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
02:02:35 <GizmoBot> ZachThibeau is the main developer of PChat and is a developer with PortableApps.com
02:03:32 <ChrisMorgan> ZachThibeau: saw that thing about X-Tray?
02:03:46 <ZachThibeau> no just got on
02:04:14 <ZachThibeau> and I just read it
02:05:40 <ZachThibeau> replying now
02:08:56 <ZachThibeau> strange how my recompiled version reacts differently from the site provided binary
02:09:50 <ChrisMorgan> Tis.
02:10:36 <ZachThibeau> well I'll try and recompile again and see where it comes down too
02:12:26 *** AppGuy has quit (Quit: Goodbye, My Friends!)
02:13:01 *** ChrisMorgan has quit (Quit: Leaving.)
02:13:14 *** ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan) has joined #portableapps
02:15:36 <ZachThibeau> anyways other than trying to fix that, I'm working on my own linux distribution so to speak, just a way to learn the insides of linux a bit better by compiling from source
02:15:55 *** Mir__ (~Mir@pool-71-109-174-251.lsanca.dsl-w.verizon.net) has joined #portableapps
02:16:28 *** Mir_ has quit (Ping timeout: 245 seconds)
02:17:25 *** Mir__ is now known as Mir
02:24:02 <marlop> ZachThibeau, read my post about paths with spaces ?
02:26:22 <marlop> http://portableapps.com/node/23954
02:26:27 <marlop> bye
02:26:39 *** marlop is now known as marlop|away
02:44:25 *** Mir_ (~Mir@pool-71-109-174-251.lsanca.dsl-w.verizon.net) has joined #portableapps
02:44:42 *** vf2nsr (~chatzilla@unaffiliated/vf2nsr) has joined #portableapps
02:45:18 *** Mir has quit (Ping timeout: 260 seconds)
02:48:59 *** vf2nsr has quit (Client Quit)
02:54:09 *** Mir_ is now known as Mir
02:58:01 *** ZachThibeau_ (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
02:59:54 *** ZachThibeau_ has quit (Client Quit)
03:01:00 *** Suiseiseki has quit (Read error: Connection reset by peer)
03:01:28 *** ZachThibeau has quit (Ping timeout: 245 seconds)
03:02:30 *** Suiseiseki (~desu@wikipedia/Antonio-Lopez) has joined #portableapps
03:12:52 *** Mir_ (~Mir@pool-71-109-174-251.lsanca.dsl-w.verizon.net) has joined #portableapps
03:13:20 *** Mir has quit (Ping timeout: 265 seconds)
03:18:58 *** Mir_ is now known as Mir
04:10:36 *** SrgSiler|AFK is now known as SrgSiler|Sleep
05:20:16 *** Mir has quit ()
05:37:03 *** Gringoloco (~Gringoloc@unaffiliated/gringoloco) has joined #portableapps
06:07:34 *** pa_9738 (50997e48@gateway/web/freenode/ip.80.153.126.72) has joined #portableapps
06:07:55 *** pa_9738 has quit (Client Quit)
06:49:49 *** Zarggg has quit (Read error: Connection reset by peer)
06:51:17 *** travlingeek (~Omnishado@142-217-226-153.telebecinternet.net) has joined #portableapps
06:52:02 <travlingeek> its that time of the year again
06:57:20 *** Zarggg (~zarggg@2001:0:4137:9e76:0:fbf8:beb1:ba3d) has joined #portableapps
06:58:43 *** travlingeek has quit (Quit: Leaving.)
06:58:49 *** travlingeek1 (~Omnishado@142-217-226-153.telebecinternet.net) has joined #portableapps
07:01:16 *** Gringoloco has quit (Quit: Leaving)
07:06:27 *** Gringoloco (~Gringoloc@unaffiliated/gringoloco) has joined #portableapps
07:07:59 *** travlingeek1 has parted #portableapps ("Leaving.")
08:07:17 *** Gringoloco has quit (Quit: Leaving)
08:10:17 *** Gringoloco (~Gringoloc@unaffiliated/gringoloco) has joined #portableapps
09:40:55 *** pa_2266 (daf8503b@gateway/web/freenode/ip.218.248.80.59) has joined #portableapps
09:44:14 <pa_2266> HELLLO FIREFOX
09:44:48 <pa_2266> CAN U JST HELP ME OUT
09:49:14 *** pa_2266 has quit (Ping timeout: 252 seconds)
09:57:14 *** Twinkletoes (~chatzilla@dze3bf81.brookes.ac.uk) has joined #portableapps
10:06:09 *** vf2nsr (~chatzilla@unaffiliated/vf2nsr) has joined #portableapps
10:10:31 <vf2nsr> ChrisMorgan: got a response from googsystray author http://tinypaste.com/8e6ff he questions your liscense terms :)
10:16:43 <ChrisMorgan> vf2nsr: the exception is an /addition/ to the GPL, allowing it to be used in apps with non-GPL compatible licenses. Programs licensed under the GPL or another GPL-compatible license, or any willing to follow the GPL for that part, can use it under the GPL.
10:17:16 <vf2nsr> no qualms on my part was just letting you know
10:17:26 <vf2nsr> you want me to respond to him with your response? :)
10:18:02 <ChrisMorgan> Yep, please do. It's the standard tag as used in the PortableApps.com Installer just with the "installer" bit modified to "Python module", as appropriate.
10:18:29 <vf2nsr> ok will do
10:18:46 <ChrisMorgan> And please thank him from me as well as you for considering it.
10:19:38 <vf2nsr> me?
10:20:04 <vf2nsr> You did all the work, I just trying to implement it but having issues with his code
10:20:17 <ChrisMorgan> I imagine you'll be thanking him for helping your portable version work better.
10:20:50 <vf2nsr> He states in one of his codes he won't change nothing he is happy with his version
10:21:01 <vf2nsr> so if changes are made they are uyp to me
10:24:08 <ChrisMorgan> OK.
10:24:28 <ChrisMorgan> How does he distribute it - py2exe?
10:26:29 <vf2nsr> yes the issue appears to be he has it automatically create the install package and I keep getting an nsis error
10:27:09 <vf2nsr> FindProcDLL::FindProc "googsystray.exe" that line says it can't find the FindProc
10:28:03 <vf2nsr> I get the dis package but when I try to run it it goes now where not sure if because of above error?
10:28:32 <vf2nsr> also may be because he has a second script postpy2exe
10:29:32 <vf2nsr> can not find where he tucked the call fo rthe installer so looking at each script now
10:30:51 <ChrisMorgan> That means you don't have the FindProcDLL plug-in; it's included in NSIS Portable.
10:30:58 <vf2nsr> brb grabbing coffee
10:42:30 <vf2nsr> ok think I got nsis issue tamed here goes nada
10:47:16 <vf2nsr> grrrrrrrrrrr compiled and not working :(
10:48:35 <vf2nsr> me thinks it in the post_py2exe now?
10:51:31 <ChrisMorgan> No idea, haven't looked at that code.
10:52:21 <ChrisMorgan> Where's that code? It doesn't seem to be in the repository that I checked out.
10:52:49 <ChrisMorgan> I checked out trunk/googsystray so I suppose it's just somewhere else in there...
10:54:03 <vf2nsr> the postpy2exe?
10:55:51 <vf2nsr> http://tinypaste.com/d05e6 it is in \pkg\win directory
10:57:07 *** ChrisMorgan is now known as ChrisMorgan|away
10:58:31 <vf2nsr> So if I get this modified and working do I create a fork off his project? Rename my mod? this is all sort of new to me?
11:02:47 <vf2nsr> Oh well guess I work on this later after work thanks ChrisMorgan|away bbl
11:02:51 *** vf2nsr has quit (Quit: I am I was Now I gone)
11:17:50 *** pa_5460 (55f34cc0@gateway/web/freenode/ip.85.243.76.192) has joined #portableapps
11:17:59 <pa_5460> Good morning
11:18:13 <pa_5460> I have an issue regarding portable apps
11:18:20 <pa_5460> We are in the middle of a formation
11:18:31 <pa_5460> can anyone reply?
11:19:09 <pa_5460> thanks
11:19:18 *** pa_5460 has quit (Client Quit)
11:21:10 *** ChrisMorgan|away is now known as ChrisMorgan
11:29:07 <Gringoloco> ChrisMorgan: Hi, do you have some sort of download counter at your server ?
11:29:50 <ChrisMorgan> Not currently. I could put in awstats (not sure if that'd get the apache logs or get a clean start).
11:30:46 <Gringoloco> Nevermind, I'll put up a note if users want to leave a comment
11:31:08 *** vf2nsr (~chatzilla@unaffiliated/vf2nsr) has joined #portableapps
11:31:33 <vf2nsr> boss is not ready :) so more fun time
11:40:12 <vf2nsr> ChrisMorgan: is there an easy way to debug python once it is compiled with py2exe? I get the compilation but when I run it it goes no where
11:40:27 <ChrisMorgan> vf2nsr: you've got gtk et al? In C:\opt\...?
11:40:37 <vf2nsr> yes
11:43:05 <ChrisMorgan> I really couldn't say. It's impossible to know.
11:43:46 <ChrisMorgan> Is a file googsystray.exe.log created next to googsystray.exe?
11:43:51 <vf2nsr> ok ty guess I will keep plugging away at it
11:43:59 <vf2nsr> no it is not
11:44:43 <ChrisMorgan> You could also try running it in Wine, that way you get the console output (in Windows you won't without hacks I don't know about to redirect its console)
11:46:18 <vf2nsr> ah ok well guesws time to switch over to Ubuntu and load a wine
11:46:59 *** pa_6580 (c325d169@gateway/web/freenode/ip.195.37.209.105) has joined #portableapps
11:47:09 <pa_6580> Hi
11:47:15 <pa_6580> I have a problem
11:47:53 <vf2nsr> tyvm ChrisMorgan
11:48:16 <ChrisMorgan> pa_6580: what's your problem?
11:48:22 <pa_6580> I downloaded Skype and started the Installation, but I get a Downloaderror
11:48:37 <pa_6580> In the Instalation
11:49:19 <pa_6580> Sorry Installation
11:49:28 *** vf2nsr has quit (Quit: I am I was Now I gone)
11:50:28 <pa_6580> "The downloaded copy of Skype is not valid and can not be installed."
11:50:34 <ChrisMorgan> Try it again.
11:52:38 <pa_6580> I repeated it. (five times)
11:53:01 *** pa_6580 is now known as bejonwe
11:53:47 <ChrisMorgan> Is it possible there's a firewall or something stopping it working?
11:54:40 <ChrisMorgan> Hang on, I'm just testing it now.
11:54:58 <ChrisMorgan> It worked for me.
11:55:30 <ChrisMorgan> So I'd say there's probably something stopping the download from working properly; does it seem like it's downloading something, or does it take next to no time on the download step?
11:56:08 <bejonwe> Need I administrative privileges?
11:56:31 <bejonwe> On the download step.^^
11:56:33 <ChrisMorgan> No.
11:56:42 <ChrisMorgan> But it does need to be able to download from Skype's servers.
11:56:49 <bejonwe> (Win XP Pro)
11:56:54 *** rouilj1 has quit (Quit: Leaving.)
11:58:40 <bejonwe> Which URL have the package, what the installer want to download?
11:59:52 <ChrisMorgan> The bad download could potentially be being cached and might need cleaning up.
12:01:00 <bejonwe> Where is the bad download?
12:01:35 <ChrisMorgan> That would be in the system's (as used by Internet Explorer) Temporary Internet Files.
12:02:12 <ChrisMorgan> So the easiest way to clean that up would be to open Internet Explorer, go to its settings and click on the "clear temporary files" button or whatever it is.
12:02:22 <ChrisMorgan> That may well fix it for you.
12:06:30 <bejonwe> I go to the folder, where the installer have it's temp
12:07:53 <ChrisMorgan> That folder won't have it - it'll be somewhere in the Temporary Internet Files if anywhere.
12:08:52 <ChrisMorgan> Opening this path should help you if you want to try to delete it manually: "%USERPROFILE%\Local Settings\Temporary Internet Files"
12:09:40 <bejonwe> I go to the Internet Explorer and deleted the files. The installer have the same problem.
12:10:07 <bejonwe> I will be back soon...
12:10:10 *** bejonwe has quit (Quit: Page closed)
12:13:15 <ChrisMorgan> Thanks for your help Gringoloco. See what happens if/when he comes back. Unfortunately I won't be there then as I'm off to bed.
12:13:22 *** bejonwe (c325d169@gateway/web/freenode/ip.195.37.209.105) has joined #portableapps
12:13:43 <ChrisMorgan> Sorry bejonwe, I'm off to bed now and I can't stay. I think Gringoloco may try to help you.
12:13:44 *** ChrisMorgan has quit (Quit: Leaving.)
12:13:47 <bejonwe> Sorry, but I had to restart my computer.
12:25:48 <Gringoloco> bejonwe: Is skype working now
12:27:21 *** bejonwe has quit (Quit: Page closed)
12:28:35 <Gringoloco> Hmm... I hope he didn't delete all of internet explorer
12:34:37 *** Gizmokid2005|AFK is now known as Gizmokid2005
12:37:25 *** Gringoloco has quit (Quit: Leaving)
12:45:59 *** rouilj1 (~rouilj@static-72-72-80-24.bstnma.east.verizon.net) has joined #portableapps
13:24:37 *** AppGuy (~AppGuy@unaffiliated/appguy) has joined #portableapps
13:25:29 *** AppGuy has quit (Client Quit)
13:37:03 *** Suiseiseki has quit (Read error: Connection reset by peer)
13:37:24 *** Suiseiseki (~desu@wikipedia/Antonio-Lopez) has joined #portableapps
14:35:14 *** hinojosa (~daniel@sourceforge/staff/hinojosa) has joined #portableapps
14:40:51 *** sar3th|away is now known as sar3th
15:21:20 *** MaienM|Sleep is now known as MaienM
15:48:59 *** ZachThibeau (ZachThibea@142.167.37.69) has joined #portableapps
15:48:59 <GizmoBot> ZachThibeau is the main developer of PChat and is a developer with PortableApps.com
15:49:00 *** ZachThibeau has quit (Changing host)
15:49:00 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
15:49:06 *** ZachThibeau has quit (Read error: Connection reset by peer)
15:49:08 <GizmoBot> ...
15:49:24 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
15:49:50 <ZachThibeau> sorry for the in and out, I'm working on an issue for the tray plugin for PChat
15:49:55 *** ZachThibeau has quit (Client Quit)
15:50:03 *** joby_toss (~joby_toss@92.80.242.34) has joined #portableapps
15:50:26 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
15:51:00 <joby_toss> hi
15:51:01 <ZachThibeau> 2 more exits and I'll have all the data I need, sorry again for my coming and going
15:51:11 *** ZachThibeau has quit (Client Quit)
15:52:04 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
15:52:40 *** ZachThibeau has quit (Client Quit)
15:52:49 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
15:53:01 <ZachThibeau> ok I think I fixed the issue :)
15:53:54 <ZachThibeau> had a few minor adjustments to the Unicode release ox xtray
16:10:22 *** rouilj1 has quit (Quit: Leaving.)
16:17:03 *** computerfreaker (~computerf@unaffiliated/computerfreaker) has joined #portableapps
16:17:03 <GizmoBot> computerfreaker is working on KidSafe and TopOCR, and would very much like to have folks test them and give feedback
16:17:15 *** hinojosa has parted #portableapps ("periscope down. >glerp!<")
16:17:48 <MaienM> ZachThibeau: next time you know you're going to be unstable, just leave this channel while you're restarting and testing and whatever it is you're doing
16:17:57 <computerfreaker> Around a dozen releases are missing from the PortableApps RSS feed - all of the releases from the 18th and some from the 19th. I've left a comment in each of the missing releases; once they're dealt with, feel free to delete my comments.
16:18:40 <computerfreaker> over & out for now.
16:18:43 *** computerfreaker has quit (Client Quit)
16:20:14 <ZachThibeau> MaienM: I was never unstable, as I pointed out it was a plugin test, nothing to do with my client and I have gave fair warning in advance, however in future I'll take your recommendations into consideration
16:20:37 <MaienM> giving a warning does not mean it is ok to flood the channel
16:23:36 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps
16:24:03 <ZachThibeau> I beg to differ on the flood part, I don't call that a flood but like I said I'll take into careful consideration next time
16:24:31 <Oni-Neoxes> what happened?
16:24:55 <MaienM> ZachThibeau: let me put it this way: I think it is flooding, which should be enough
16:25:06 <MaienM> it's not like it's the first time it happened either
16:25:56 <Gizmokid2005> Guys stop. ZachThibeau, we're just holding the same rules for everyone. You've been join/parting a LOT in quick succession lately. We'd warn everyone else for it as well. Most of the time it results in a temp ban anyways. Just take it as fair warning. It floods the logs and scrollbacks.
16:26:37 <ZachThibeau> in the past that was related to my connection not today
16:26:55 <Gizmokid2005> my point exactly ZachThibeau, it's under your control to leave the channels temporarily while testing.
16:26:59 <Gizmokid2005> please do so in the future.
16:27:00 <ZachThibeau> but like I said I'll take it into consideration
16:27:01 <Gizmokid2005> QED.
16:27:11 <ZachThibeau> end of story
16:33:22 *** rouilj1 (~rouilj@static-72-72-80-24.bstnma.east.verizon.net) has joined #portableapps
16:34:22 *** marlop|away is now known as marlop
16:48:05 *** Twinkletoes has quit (Remote host closed the connection)
17:01:14 *** rouilj1 has quit (Quit: Leaving.)
17:08:24 <marlop> hi ZachThibeau
17:08:33 <sar3th> hi marlop
17:08:41 <marlop> hi sar3th
17:09:18 <ZachThibeau> howdy mal
17:09:21 <ZachThibeau> erhm
17:09:30 <ZachThibeau> I mean marlop
17:09:37 <ZachThibeau> tab complete isn't my friend today >_<
17:10:16 <marlop> did you take a look at the path with spaces issue ?
17:10:54 <ZachThibeau> yes and if you read the forum you would of seen that Chris forgot to remind me before I got john to release it
17:11:18 <ZachThibeau> also you can also remove the line too and it will still save to the data/settings folder
17:15:32 <marlop> i read, Chris Morgan said he mentioned but not that you looked at it, so i thougth worth remembering you
17:15:37 <marlop> anyway bye
17:15:41 *** marlop is now known as marlop|away
17:39:46 *** Pyromaniac (446b81bf@gateway/web/freenode/ip.68.107.129.191) has joined #portableapps
17:52:24 *** Euphonium (~desu@cpe-76-184-83-188.tx.res.rr.com) has joined #portableapps
17:52:48 *** Euphonium is now known as Guest6623
17:55:34 *** Suiseiseki has quit (Ping timeout: 264 seconds)
18:14:42 *** ZachThibeau has quit (Quit: Leaving)
18:24:57 *** rouilj1 (~rouilj@pool-74-104-157-242.bstnma.fios.verizon.net) has joined #portableapps
18:48:06 *** Oni-Neoxes has quit (Quit: Quit)
18:52:31 *** Pyromaniac has quit (Disconnected by services)
18:56:41 *** Pyromaniac_ (446b81bf@gateway/web/freenode/ip.68.107.129.191) has joined #portableapps
18:57:48 *** Pyromaniac_ has quit (Client Quit)
19:01:31 *** Pyromaniac_ (446b81bf@gateway/web/freenode/ip.68.107.129.191) has joined #portableapps
19:09:48 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps
19:11:14 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
19:11:15 <GizmoBot> ZachThibeau is the main developer of PChat and is a developer with PortableApps.com
19:14:30 *** Oni-Neoxes has quit (Client Quit)
19:14:36 *** ZachThibeau has parted #portableapps (None)
19:30:16 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
19:30:16 <GizmoBot> ...
19:36:16 *** ZachThibeau_ (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
19:36:40 *** ZachThibeau has quit (Disconnected by services)
19:36:46 *** ZachThibeau_ is now known as ZachThibeau
20:28:53 *** Guest6623 has quit (Quit: Opera Web Browser 10.51! Smaller, Faster, Easier. http://www.opera.com/)
20:29:23 *** vf2nsr (~chatzilla@unaffiliated/vf2nsr) has joined #portableapps
20:31:25 *** Suiseiseki (~desu@wikipedia/Antonio-Lopez) has joined #portableapps
20:38:31 *** ZachThibeau has quit (Ping timeout: 252 seconds)
20:56:33 <vf2nsr> is the website having issues? I hit the recent posts and get access devied message?
20:57:24 <Pyromaniac_> are you logged in?
20:57:38 <Pyromaniac_> i just tried and it worked
20:58:32 <Pyromaniac_> tried 2 more times, still worked
20:59:08 <Pyromaniac_> is it working now vf2nsr ?
20:59:10 <vf2nsr> Actually was logged in just closed page and re-entered seems ok now
20:59:19 <Pyromaniac_> good
20:59:29 <Pyromaniac_> my post is most recent :P
20:59:41 <vf2nsr> sorry took so long too many windoiws open :)
21:00:27 <Pyromaniac_> ah, well, Exector (portable) when you type "window" it shows you all your open windows
21:01:14 <vf2nsr> :)
21:01:38 <Pyromaniac_> JK you need to type apps
21:01:44 <Pyromaniac_> thats the one, sorry
21:02:57 <Pyromaniac_> I thought everyonee would love WinEyes, but I didn't get any downloads for a while
21:03:09 <vf2nsr> give it time lol
21:03:37 <Pyromaniac_> I put up the screenshot, got 2 downloads in 15 minutes, then nothing
21:03:37 <vf2nsr> what is the old cliche...if you build itr they will come
21:04:01 <Pyromaniac_> never heard of it
21:04:09 <vf2nsr> well I haven't goten it yet as busy d3eciphering some python problems
21:04:34 <vf2nsr> That was a from "Field of Dreams" movie
21:04:40 <Pyromaniac_> I want to try python, but I like the simplicity ofNSIS
21:04:56 <Pyromaniac_> ah
21:05:01 <vf2nsr> Well I am trying to modify a currrent release I have
21:05:08 <Pyromaniac_> which one?
21:05:13 <Pyromaniac_> googsystray?
21:05:16 <vf2nsr> I am not any good at it but am learning some
21:05:19 <vf2nsr> yup
21:05:32 <vf2nsr> trying to implement Chris code into it
21:06:04 <Pyromaniac_> whenever I need an icon, and I don't like the one generated by IconsExtract, I just google "icons for x app"
21:06:16 <Pyromaniac_> and it usually turns something up
21:06:31 <vf2nsr> actually I got a decent one from them in SVN
21:08:01 <Pyromaniac_> hey, I got that access denied page
21:08:11 <Pyromaniac_> I just reloaded recent posts and it says that
21:08:31 <vf2nsr> good I logged out and then back in again took care of it
21:08:47 <Pyromaniac_> now its showing recent posts, but no posts
21:08:59 <Pyromaniac_> hey, reload the page, see what happens...?
21:09:23 <Pyromaniac_> I think John is doing some maintenance
21:10:10 <vf2nsr> ok well got to head off for a bit bbl
21:10:12 *** vf2nsr has quit (Quit: I am I was Now I gone)
21:28:58 *** marlop|away is now known as marlop
21:40:47 *** MaienM has quit (Read error: Connection reset by peer)
21:51:08 *** MaienM (~MaienM-F@unaffiliated/maienm) has joined #portableapps
21:51:10 <GizmoBot> MaienM is MaienM. He is the developer of The Mana World Portable, and he has a website at http://mmfail.co.cc/
21:57:11 *** JohnTHaller (~JohnTHall@cpe-67-247-35-38.nyc.res.rr.com) has joined #portableapps
21:57:36 <JohnTHaller> anybody having issues logging in to the site?
21:58:22 <Gizmokid2005> vf2nsr was
21:58:25 <Gizmokid2005> I haven't tried
21:58:38 <JohnTHaller> Could you log out and back in to check please?
21:58:41 <Gizmokid2005> yep
21:58:58 <Gizmokid2005> Access denied
21:58:58 <Gizmokid2005> You are not authorized to access this page.
21:59:02 <Gizmokid2005> yep, won't let me in
21:59:07 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
21:59:07 <JohnTHaller> clear your cookies for pa.c to get back in
21:59:08 <GizmoBot> ZachThibeau is the main developer of PChat and is a developer with PortableApps.com
21:59:08 <JohnTHaller> thanks
21:59:13 <Gizmokid2005> np
21:59:26 <ZachThibeau> howdy JohnTHaller did you recieve my email?
21:59:34 <Gizmokid2005> drupal issue JohnTHaller?
22:00:03 <JohnTHaller> why is it rev 1? don't you need to update the desktop version for the x-tray issue as well? wouldn't 1.1 make more sense ZachThibeau?
22:00:14 <JohnTHaller> Gizmokid2005: Yeah, Drupal upgrade issue. Trying to troubleshoot it.
22:00:35 <Gizmokid2005> oke doke JohnTHaller. Thanks for the heads-up
22:01:55 <JohnTHaller> hang on, I think wiping the sessions table may fix it.
22:03:13 <JohnTHaller> Ok, ZachThibeau, could you go to PA.c and try and log in please?
22:04:01 <Gizmokid2005> still not working for me JohnTHaller
22:04:14 <JohnTHaller> What do you mean?
22:04:24 *** Pyromaniac_ has quit (Ping timeout: 252 seconds)
22:04:27 <Gizmokid2005> login just isn't working
22:04:28 <Gizmokid2005> same error
22:04:36 <JohnTHaller> I thought you cleared your cookies
22:05:03 *** Pyromaniac (446b81bf@gateway/web/freenode/ip.68.107.129.191) has joined #portableapps
22:05:31 <ZachThibeau> sorry back
22:05:36 <Gizmokid2005> that did it JohnTHaller
22:05:40 <ZachThibeau> and I'm logged in just fine
22:05:48 <JohnTHaller> Log out then back in please ZachThibeau
22:07:47 <ZachThibeau> sure and PChat is 1.1 btw :P so it would be 1.2 plugins however I think should considered a seperate build since it isn't technically a part of PChat but an addon, and I just logged back in sucessfully
22:08:08 <JohnTHaller> no issues logging back in? you didn't have to clear cookies did you?
22:08:12 <ZachThibeau> uhmm nm on the last part
22:08:19 <JohnTHaller> nm?
22:08:21 <ZachThibeau> clearing cookies
22:08:33 <Pyromaniac> I cleared cookies
22:08:38 <JohnTHaller> did you have to clear cookies or no ZachThibeau?
22:08:47 <Pyromaniac> Tried thrice before that, never loaded
22:08:52 <ZachThibeau> nm is short for never mind and I just finished clearning my cookies and cache
22:08:52 <Pyromaniac> now I'm in again
22:08:57 <JohnTHaller> damn
22:09:06 <JohnTHaller> I wanted you to try logging in WITHOUT clearing cookies
22:09:16 <ZachThibeau> I already tried and it didn't work
22:09:26 <ZachThibeau> I just tried again with clearing and still nothing
22:09:46 <Pyromaniac> I said I did, but the page just said loading for a long time
22:09:58 <JohnTHaller> what do you mean nothing?
22:10:08 <ZachThibeau> meaning I'm still not logged in
22:10:58 <JohnTHaller> then you didn't actually clear your pa.c cookie. please don't yet. i'm working on the issue.
22:11:20 <ZachThibeau> ok
22:11:33 * Pyromaniac would like to add that its loading very slowly
22:11:50 <Pyromaniac> the recent posts page, that is
22:11:57 <JohnTHaller> don't care at the moment
22:11:59 <JohnTHaller> this is more important
22:12:21 <Pyromaniac> ok
22:12:47 <ZachThibeau> in the meanwhile I'm going to play with my irc client on my cellphone, send a shout when you want me to try again
22:13:18 *** ptmb (~PTMblogge@a81-84-170-85.cpe.netcabo.pt) has joined #portableapps
22:16:25 <Pyromaniac> whoa! thats new. I like the tabs in the recent posts page
22:16:35 <JohnTHaller> please ignore it
22:17:11 <Pyromaniac> kk
22:18:20 *** pa_3406 (631d5a6a@gateway/web/freenode/ip.99.29.90.106) has joined #portableapps
22:18:38 <Pyromaniac> while your fixing these issues, would it be a good idea to log off/close webpages from PortableApp.com?
22:18:55 <JohnTHaller> no
22:19:11 <pa_3406> I just downloaded chrome browser and it had a virus. has anyone else reported this issue?
22:19:34 <JohnTHaller> It doesn't. It's a false positive. Which a/v are you using?
22:20:04 <Pyromaniac> ? Avira
22:21:09 <pa_3406> AVG,,....but a fake AV window popped up saying i needed to download definition files and it disabled my gui interface for avg. i pulled the thumb drive, killed wifi and restarted and it didnt seem to do anything
22:21:56 <JohnTHaller> You do have a virus from somewhere then. It's not from Google Chrome. At least not the version directly from us. But it can easily pick up a virus when plugged into an infected PC.
22:22:34 <pa_3406> k thanks, im running scans now i just wanted to raise the flag
22:23:13 *** Oni-Neoxes (~Oni-Neoxe@unaffiliated/oni-neoxes) has joined #portableapps
22:23:13 <JohnTHaller> Thanks, but we're good. Everything we post is double-scanned before becoming official. We don't post infected software.
22:23:58 <Pyromaniac> (sorry, I just read the logs, my connection broke and I didn't see what pa_3406 said before)
22:27:26 <JohnTHaller> ZachThibeau: can you try logging in again now please?
22:29:35 *** AppGuy (~AppGuy@unaffiliated/appguy) has joined #portableapps
22:30:04 *** Pyromaniac has quit (Ping timeout: 252 seconds)
22:31:48 <AppGuy> i cant seem to login to portableapps.com and my username and pass i believe are correct
22:31:57 <Gizmokid2005> AppGuy: JohnTHaller is working on it :)
22:31:59 <JohnTHaller> There is an issue with it at the moment
22:32:04 <Gizmokid2005> stick around if you'd like, you can probably help.
22:32:13 <AppGuy> that i can do
22:33:44 *** pa_3406 has quit (Ping timeout: 252 seconds)
22:35:33 <JohnTHaller> ok appguy, try logging in again now
22:36:08 <AppGuy> it works :)
22:36:25 <JohnTHaller> Seems to be a bug in the current Drupal release around cookie domain
22:36:33 <JohnTHaller> I just updated Drupal about an hour ago
22:36:37 *** Pyromaniac (446b81bf@gateway/web/freenode/ip.68.107.129.191) has joined #portableapps
22:36:48 <JohnTHaller> ZachThibeau: Can you try logging in again now?
22:38:45 *** ZachThibeau_ (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps
22:38:54 <JohnTHaller> ZachThibeau: Can you try logging in again now?
22:39:22 *** ZachThibeau has quit (Ping timeout: 264 seconds)
22:39:56 <ZachThibeau_> already logged in
22:40:03 *** ZachThibeau_ is now known as ZachThibeau
22:40:08 <ZachThibeau> and done sucessfully too
22:40:11 <JohnTHaller> did you end up clearing cookies? please say no
22:40:30 *** vf2nsr (~chatzilla@unaffiliated/vf2nsr) has joined #portableapps
22:40:36 <ZachThibeau> no didn't have to
22:40:42 <JohnTHaller> good
22:40:48 <JohnTHaller> ok, logins are fixed.
22:40:59 <JohnTHaller> now working on stalled cron due to corrupted node hanging search index
22:42:24 *** ChrisMorgan (~ChrisMorg@unaffiliated/chrismorgan) has joined #portableapps
22:42:49 *** MaienM is now known as MaienM|Sleep
22:42:50 *** Pyromaniac has quit (Quit: Page closed)
22:44:28 *** Pyromaniac_ (446b81bf@gateway/web/freenode/ip.68.107.129.191) has joined #portableapps
22:44:57 <Pyromaniac_> http://fancygadgetry.comlu.com/screenshot.19.png
22:45:28 <Pyromaniac_> I don't know if its supposed to be like that
22:46:11 <Pyromaniac_> I saved, then went to Request Apps, it said one new, and it was me
22:47:49 *** ptmb has quit (Quit: Bye)
22:51:42 *** Pyromaniac_ has quit (Ping timeout: 252 seconds)
22:57:03 *** vf2nsr has quit (Quit: I am I was Now I gone)
23:06:04 <JohnTHaller> can peeps see recent posts properly now?
23:11:58 <ChrisMorgan> Looks fine to me
23:14:34 <ZachThibeau> same here
23:15:41 *** BjornH (~BjornH@81-235-164-62-no21.tbcn.telia.com) has joined #portableapps
23:22:54 *** marlop is now known as marlop|away
23:27:58 *** Kyle__ (~Kyle@69.182.79.237) has joined #portableapps
23:29:07 *** rouilj2 (~rouilj@pool-74-104-157-242.bstnma.fios.verizon.net) has joined #portableapps
23:29:45 *** rouilj has quit (*.net *.split)
23:29:45 *** SrgSiler|Sleep has quit (*.net *.split)
23:34:35 *** AppGuy has quit (Quit: Goodbye, My Friends!)
23:38:15 <JohnTHaller> Ok, got the site search indexer working again
23:38:37 <JohnTHaller> This posted as a comment killed it: http://pastebin.com/C4W3AVTY
23:39:05 <ChrisMorgan> Enormous comments won't ever do it any good!
23:44:44 <JohnTHaller> reported the bug to drupal
23:50:50 *** Kyle__ is now known as SrgSiler|AFK
23:50:55 *** SrgSiler|AFK has quit (Changing host)
23:50:55 *** SrgSiler|AFK (~Kyle@unaffiliated/sergentsiler) has joined #portableapps