00:01:28 *** sar3th|testing has quit (Ping timeout: 252 seconds) 00:16:36 ChrisMorgan: What's wrong with the default behavior of Eclipse Portable with Java Portable? 00:16:52 Shouldn't it be using Local java is there's no Portable Java? 00:17:55 gluxon: the point is that it's not using Java Portable /at all/ 00:18:54 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 If it has a valid path then it should use the -vm "$JAVAPATH? 00:22:19 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 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 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 ChrisMorgan: Yeah, I can't find anything wrong, and it's working just like it should be. 00:38:16 Line 250: ${Else} 00:38:25 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 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 But it should have the indent? 00:40:35 http://pastebin.org/346630 00:41:11 Ah. 00:41:21 The ${EndIf} should be moved down. 00:41:58 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 Yeah, there's nothing left to clean up. 00:42:51 What happens if you specify an invalid -vm parameter? Does it mind? 00:43:39 It says that it couldn't find java in the folder. 00:43:47 That's exactly what I want it to do :D 00:44:23 But Java could be local. 00:44:29 And it'll say there's no java installation when there's no -vm switch or local java. 00:45:00 Sorry, that or should be an and. 00:45:40 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 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 No, it's not there by default. 00:47:32 How should I be creating it? 00:47:43 ${ConfigWrite} fails if the file doesn't exists 00:47:57 But on the other hand, WriteINIStr creates the file it it doesn't exist. 00:48:00 I mean, it's in App, so when you generate the installer won't it be there? 00:48:25 Yeah, Eclipse creates it on first run. 00:50:00 So when a new user installs it, that file will be there because it was created for you. 00:51:25 Yep. 00:52:27 Hmm... that's probably not the best thing, it'll contain personal data from you. What do you reckon? 00:53:02 No, the launcher writes the same data Eclipse writes by default. 00:53:28 Except for the workspace folder change to Data\workspace. 00:53:46 I mean that when the user installs it it starts off with your data. 00:53:46 Well, any idea on how to create an empty file? 00:54:01 ChrisMorgan: It doesn't? 00:54:19 In App\Eclipse\configuration\.settings\org.eclipse.ui.ide.prefs 00:54:51 Oh, no. 00:55:01 Sorry, I misunderstood you question earlier. 00:55:14 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 No, the configuration\.settings directory doesn't exist on first install. 00:55:46 It's excluded by the installer? 00:55:49 ChrisMorgan: I'm not sure, but Eclipse wants those or it'll give errors. 00:56:16 ChrisMorgan: No, it's created by Eclipse on first run. Eclipse comes without it by default though. 00:56:26 I mean Eclipse Portable. 00:56:55 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 It's not discluded, it doesn't come with it. :/ 00:59:36 *** sar3th is now known as sar3th|away 01:00:10 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 No. There's no .settings folder in the installer. 01:03:29 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 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 I create a copy, test it, then packaged it if it exists. 01:08:24 App\Eclipse is as it is when downloaded from eclipse.org 01:09:06 Ah. That's fine then. 01:09:10 So that's why that happens. 01:09:45 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 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 And it would rerequire ExecWait 01:13:07 (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 ZachThibeau is the main developer of PChat and is a developer with PortableApps.com 02:03:32 ZachThibeau: saw that thing about X-Tray? 02:03:46 no just got on 02:04:14 and I just read it 02:05:40 replying now 02:08:56 strange how my recompiled version reacts differently from the site provided binary 02:09:50 Tis. 02:10:36 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 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 ZachThibeau, read my post about paths with spaces ? 02:26:22 http://portableapps.com/node/23954 02:26:27 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 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 HELLLO FIREFOX 09:44:48 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 ChrisMorgan: got a response from googsystray author http://tinypaste.com/8e6ff he questions your liscense terms :) 10:16:43 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 no qualms on my part was just letting you know 10:17:26 you want me to respond to him with your response? :) 10:18:02 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 ok will do 10:18:46 And please thank him from me as well as you for considering it. 10:19:38 me? 10:20:04 You did all the work, I just trying to implement it but having issues with his code 10:20:17 I imagine you'll be thanking him for helping your portable version work better. 10:20:50 He states in one of his codes he won't change nothing he is happy with his version 10:21:01 so if changes are made they are uyp to me 10:24:08 OK. 10:24:28 How does he distribute it - py2exe? 10:26:29 yes the issue appears to be he has it automatically create the install package and I keep getting an nsis error 10:27:09 FindProcDLL::FindProc "googsystray.exe" that line says it can't find the FindProc 10:28:03 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 also may be because he has a second script postpy2exe 10:29:32 can not find where he tucked the call fo rthe installer so looking at each script now 10:30:51 That means you don't have the FindProcDLL plug-in; it's included in NSIS Portable. 10:30:58 brb grabbing coffee 10:42:30 ok think I got nsis issue tamed here goes nada 10:47:16 grrrrrrrrrrr compiled and not working :( 10:48:35 me thinks it in the post_py2exe now? 10:51:31 No idea, haven't looked at that code. 10:52:21 Where's that code? It doesn't seem to be in the repository that I checked out. 10:52:49 I checked out trunk/googsystray so I suppose it's just somewhere else in there... 10:54:03 the postpy2exe? 10:55:51 http://tinypaste.com/d05e6 it is in \pkg\win directory 10:57:07 *** ChrisMorgan is now known as ChrisMorgan|away 10:58:31 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 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 Good morning 11:18:13 I have an issue regarding portable apps 11:18:20 We are in the middle of a formation 11:18:31 can anyone reply? 11:19:09 thanks 11:19:18 *** pa_5460 has quit (Client Quit) 11:21:10 *** ChrisMorgan|away is now known as ChrisMorgan 11:29:07 ChrisMorgan: Hi, do you have some sort of download counter at your server ? 11:29:50 Not currently. I could put in awstats (not sure if that'd get the apache logs or get a clean start). 11:30:46 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 boss is not ready :) so more fun time 11:40:12 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 vf2nsr: you've got gtk et al? In C:\opt\...? 11:40:37 yes 11:43:05 I really couldn't say. It's impossible to know. 11:43:46 Is a file googsystray.exe.log created next to googsystray.exe? 11:43:51 ok ty guess I will keep plugging away at it 11:43:59 no it is not 11:44:43 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 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 Hi 11:47:15 I have a problem 11:47:53 tyvm ChrisMorgan 11:48:16 pa_6580: what's your problem? 11:48:22 I downloaded Skype and started the Installation, but I get a Downloaderror 11:48:37 In the Instalation 11:49:19 Sorry Installation 11:49:28 *** vf2nsr has quit (Quit: I am I was Now I gone) 11:50:28 "The downloaded copy of Skype is not valid and can not be installed." 11:50:34 Try it again. 11:52:38 I repeated it. (five times) 11:53:01 *** pa_6580 is now known as bejonwe 11:53:47 Is it possible there's a firewall or something stopping it working? 11:54:40 Hang on, I'm just testing it now. 11:54:58 It worked for me. 11:55:30 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 Need I administrative privileges? 11:56:31 On the download step.^^ 11:56:33 No. 11:56:42 But it does need to be able to download from Skype's servers. 11:56:49 (Win XP Pro) 11:56:54 *** rouilj1 has quit (Quit: Leaving.) 11:58:40 Which URL have the package, what the installer want to download? 11:59:52 The bad download could potentially be being cached and might need cleaning up. 12:01:00 Where is the bad download? 12:01:35 That would be in the system's (as used by Internet Explorer) Temporary Internet Files. 12:02:12 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 That may well fix it for you. 12:06:30 I go to the folder, where the installer have it's temp 12:07:53 That folder won't have it - it'll be somewhere in the Temporary Internet Files if anywhere. 12:08:52 Opening this path should help you if you want to try to delete it manually: "%USERPROFILE%\Local Settings\Temporary Internet Files" 12:09:40 I go to the Internet Explorer and deleted the files. The installer have the same problem. 12:10:07 I will be back soon... 12:10:10 *** bejonwe has quit (Quit: Page closed) 12:13:15 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 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 Sorry, but I had to restart my computer. 12:25:48 bejonwe: Is skype working now 12:27:21 *** bejonwe has quit (Quit: Page closed) 12:28:35 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 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 ... 15:49:24 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps 15:49:50 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 hi 15:51:01 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 ok I think I fixed the issue :) 15:53:54 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 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 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 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 over & out for now. 16:18:43 *** computerfreaker has quit (Client Quit) 16:20:14 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 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 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 what happened? 16:24:55 ZachThibeau: let me put it this way: I think it is flooding, which should be enough 16:25:06 it's not like it's the first time it happened either 16:25:56 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 in the past that was related to my connection not today 16:26:55 my point exactly ZachThibeau, it's under your control to leave the channels temporarily while testing. 16:26:59 please do so in the future. 16:27:00 but like I said I'll take it into consideration 16:27:01 QED. 16:27:11 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 hi ZachThibeau 17:08:33 hi marlop 17:08:41 hi sar3th 17:09:18 howdy mal 17:09:21 erhm 17:09:30 I mean marlop 17:09:37 tab complete isn't my friend today >_< 17:10:16 did you take a look at the path with spaces issue ? 17:10:54 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 also you can also remove the line too and it will still save to the data/settings folder 17:15:32 i read, Chris Morgan said he mentioned but not that you looked at it, so i thougth worth remembering you 17:15:37 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 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 ... 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 is the website having issues? I hit the recent posts and get access devied message? 20:57:24 are you logged in? 20:57:38 i just tried and it worked 20:58:32 tried 2 more times, still worked 20:59:08 is it working now vf2nsr ? 20:59:10 Actually was logged in just closed page and re-entered seems ok now 20:59:19 good 20:59:29 my post is most recent :P 20:59:41 sorry took so long too many windoiws open :) 21:00:27 ah, well, Exector (portable) when you type "window" it shows you all your open windows 21:01:14 :) 21:01:38 JK you need to type apps 21:01:44 thats the one, sorry 21:02:57 I thought everyonee would love WinEyes, but I didn't get any downloads for a while 21:03:09 give it time lol 21:03:37 I put up the screenshot, got 2 downloads in 15 minutes, then nothing 21:03:37 what is the old cliche...if you build itr they will come 21:04:01 never heard of it 21:04:09 well I haven't goten it yet as busy d3eciphering some python problems 21:04:34 That was a from "Field of Dreams" movie 21:04:40 I want to try python, but I like the simplicity ofNSIS 21:04:56 ah 21:05:01 Well I am trying to modify a currrent release I have 21:05:08 which one? 21:05:13 googsystray? 21:05:16 I am not any good at it but am learning some 21:05:19 yup 21:05:32 trying to implement Chris code into it 21:06:04 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 and it usually turns something up 21:06:31 actually I got a decent one from them in SVN 21:08:01 hey, I got that access denied page 21:08:11 I just reloaded recent posts and it says that 21:08:31 good I logged out and then back in again took care of it 21:08:47 now its showing recent posts, but no posts 21:08:59 hey, reload the page, see what happens...? 21:09:23 I think John is doing some maintenance 21:10:10 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 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 anybody having issues logging in to the site? 21:58:22 vf2nsr was 21:58:25 I haven't tried 21:58:38 Could you log out and back in to check please? 21:58:41 yep 21:58:58 Access denied 21:58:58 You are not authorized to access this page. 21:59:02 yep, won't let me in 21:59:07 *** ZachThibeau (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps 21:59:07 clear your cookies for pa.c to get back in 21:59:08 ZachThibeau is the main developer of PChat and is a developer with PortableApps.com 21:59:08 thanks 21:59:13 np 21:59:26 howdy JohnTHaller did you recieve my email? 21:59:34 drupal issue JohnTHaller? 22:00:03 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 Gizmokid2005: Yeah, Drupal upgrade issue. Trying to troubleshoot it. 22:00:35 oke doke JohnTHaller. Thanks for the heads-up 22:01:55 hang on, I think wiping the sessions table may fix it. 22:03:13 Ok, ZachThibeau, could you go to PA.c and try and log in please? 22:04:01 still not working for me JohnTHaller 22:04:14 What do you mean? 22:04:24 *** Pyromaniac_ has quit (Ping timeout: 252 seconds) 22:04:27 login just isn't working 22:04:28 same error 22:04:36 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 sorry back 22:05:36 that did it JohnTHaller 22:05:40 and I'm logged in just fine 22:05:48 Log out then back in please ZachThibeau 22:07:47 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 no issues logging back in? you didn't have to clear cookies did you? 22:08:12 uhmm nm on the last part 22:08:19 nm? 22:08:21 clearing cookies 22:08:33 I cleared cookies 22:08:38 did you have to clear cookies or no ZachThibeau? 22:08:47 Tried thrice before that, never loaded 22:08:52 nm is short for never mind and I just finished clearning my cookies and cache 22:08:52 now I'm in again 22:08:57 damn 22:09:06 I wanted you to try logging in WITHOUT clearing cookies 22:09:16 I already tried and it didn't work 22:09:26 I just tried again with clearing and still nothing 22:09:46 I said I did, but the page just said loading for a long time 22:09:58 what do you mean nothing? 22:10:08 meaning I'm still not logged in 22:10:58 then you didn't actually clear your pa.c cookie. please don't yet. i'm working on the issue. 22:11:20 ok 22:11:33 * Pyromaniac would like to add that its loading very slowly 22:11:50 the recent posts page, that is 22:11:57 don't care at the moment 22:11:59 this is more important 22:12:21 ok 22:12:47 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 whoa! thats new. I like the tabs in the recent posts page 22:16:35 please ignore it 22:17:11 kk 22:18:20 *** pa_3406 (631d5a6a@gateway/web/freenode/ip.99.29.90.106) has joined #portableapps 22:18:38 while your fixing these issues, would it be a good idea to log off/close webpages from PortableApp.com? 22:18:55 no 22:19:11 I just downloaded chrome browser and it had a virus. has anyone else reported this issue? 22:19:34 It doesn't. It's a false positive. Which a/v are you using? 22:20:04 ? Avira 22:21:09 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 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 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 Thanks, but we're good. Everything we post is double-scanned before becoming official. We don't post infected software. 22:23:58 (sorry, I just read the logs, my connection broke and I didn't see what pa_3406 said before) 22:27:26 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 i cant seem to login to portableapps.com and my username and pass i believe are correct 22:31:57 AppGuy: JohnTHaller is working on it :) 22:31:59 There is an issue with it at the moment 22:32:04 stick around if you'd like, you can probably help. 22:32:13 that i can do 22:33:44 *** pa_3406 has quit (Ping timeout: 252 seconds) 22:35:33 ok appguy, try logging in again now 22:36:08 it works :) 22:36:25 Seems to be a bug in the current Drupal release around cookie domain 22:36:33 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 ZachThibeau: Can you try logging in again now? 22:38:45 *** ZachThibeau_ (ZachThibea@unaffiliated/zachthibeau) has joined #portableapps 22:38:54 ZachThibeau: Can you try logging in again now? 22:39:22 *** ZachThibeau has quit (Ping timeout: 264 seconds) 22:39:56 already logged in 22:40:03 *** ZachThibeau_ is now known as ZachThibeau 22:40:08 and done sucessfully too 22:40:11 did you end up clearing cookies? please say no 22:40:30 *** vf2nsr (~chatzilla@unaffiliated/vf2nsr) has joined #portableapps 22:40:36 no didn't have to 22:40:42 good 22:40:48 ok, logins are fixed. 22:40:59 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 http://fancygadgetry.comlu.com/screenshot.19.png 22:45:28 I don't know if its supposed to be like that 22:46:11 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 can peeps see recent posts properly now? 23:11:58 Looks fine to me 23:14:34 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 Ok, got the site search indexer working again 23:38:37 This posted as a comment killed it: http://pastebin.com/C4W3AVTY 23:39:05 Enormous comments won't ever do it any good! 23:44:44 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