July 8, 200620 yr i have strange behaviour...i have ethereal and winpcap objects i nWPIethereal is (dependant) installed only when winpcap is checked but when i click "select all" it selects all, but ethereal is unchecked??
July 8, 200620 yr Very strange problem now.Upon clicking Install, it fails on random applications and loops endlessly, marking failure "X" symbols next to each application. So if app 2 succeeds, but app 3 fails, it'll mark a red "X" next to app 3, and move onto app 4 (at least the GUI says it has moved on) but it retries app3.I can tell because I see it extracting the same package over and over again, and beginning the MSI based setup with the title window. It fails within a second of launching the MSI, then marks a red "X" next to whatever application is next in line, then retries etc. This literally never ends.I'm kindda glad that I'm not the only one with this problem.I added a couple of new log-lines, but couldn't determine why the loop got stuck on the second program, second command (at least in my case)I've even tried with a whole new config.js, where I only have 1 app with 2 commands (created in the WPI-wizard), but even that is weird.It runs the first command just fine, and then come with this JavaScript error:JavaScript Error ReportMessage: 'undefined' is null or is not an objectUrl: C:\install\WPI\WPI.htaFile: core.jsFunction: FileExists()Line: 244I've checked every aspect of the FileExists()-function, and there doesn't seem to be any problems there.I really like the new install GUI, and hope this problem will be solved soon.Thanks for the great work :-)
July 9, 200620 yr Here is one of my logs.WPI Installation Log FileInstall process started at: Saturday, July 08, 2006 8:50:03 PMList of programs to be installed: .Net Framework 1.1 SP1 CPU-Z 1.35 Java Runtime Environment 5 O&O Defrag 8 Professional SysInternals Core Applications Microsoft Office Professional Edition 2003 SP2 Nero 7 Ultra Edition 7.2.3.2b WinRAR 3.51 Tweak UI for Windows XP AnyDVD 6.0.1.1 CloneDVD2 2.8.9.9 Picasa 2.2.0 QuickTime 7.1 Windows Media Player 10 XP Codec Pack 1.3.4 Google Toolbar for Internet Explorer mIRC 6.17 uTorrent 1.6 Symantec AntiVirus Corporate Edition 10-----Saturday, July 08, 2006 8:50:04 PM Program: .Net Framework 1.1 SP1 UID: DOTNETFW1 Order: 000105 Category: System Software Saturday, July 08, 2006 8:52:56 PM cmd1 Success (returned code 0): "C:\INSTEMP\APPS\DNFW\dotnet11sp1.exe" Saturday, July 08, 2006 8:52:56 PM Finished installation-----Saturday, July 08, 2006 8:52:56 PM Program: Java Runtime Environment 5 UID: JRE5 Order: 000180 Category: System Software Saturday, July 08, 2006 8:54:27 PM cmd1 Success (returned code 0): "C:\INSTEMP\APPS\JAVA\jre507.exe" Saturday, July 08, 2006 8:54:27 PM Finished installation-----Saturday, July 08, 2006 8:54:27 PM Program: Java Runtime Environment 5 UID: JRE5 Order: 000180 Category: System Software Saturday, July 08, 2006 8:54:39 PM cmd1 Success (returned code 0): "C:\INSTEMP\APPS\JAVA\jre507.exe" Saturday, July 08, 2006 8:54:39 PM Finished installation-----Saturday, July 08, 2006 8:54:39 PM Program: Java Runtime Environment 5 UID: JRE5 Order: 000180 Category: System Software Saturday, July 08, 2006 8:54:51 PM cmd1 Success (returned code 0): "C:\INSTEMP\APPS\JAVA\jre507.exe" Saturday, July 08, 2006 8:54:51 PM Finished installation-----Saturday, July 08, 2006 8:54:51 PM Program: Java Runtime Environment 5 UID: JRE5 Order: 000180 Category: System Software Saturday, July 08, 2006 8:55:04 PM cmd1 Success (returned code 0): "C:\INSTEMP\APPS\JAVA\jre507.exe" Saturday, July 08, 2006 8:55:04 PM Finished installation-----Saturday, July 08, 2006 8:55:05 PM Program: Java Runtime Environment 5 UID: JRE5 Order: 000180 Category: System Software Saturday, July 08, 2006 8:55:16 PM cmd1 Success (returned code 0): "C:\INSTEMP\APPS\JAVA\jre507.exe" Saturday, July 08, 2006 8:55:16 PM Finished installation-----Saturday, July 08, 2006 8:55:16 PM Program: Java Runtime Environment 5 UID: JRE5 Order: 000180 Category: System Software Saturday, July 08, 2006 8:55:29 PM cmd1 Success (returned code 0): "C:\INSTEMP\APPS\JAVA\jre507.exe" Saturday, July 08, 2006 8:55:29 PM Finished installation-----Saturday, July 08, 2006 8:55:29 PM Program: Java Runtime Environment 5 UID: JRE5 Order: 000180 Category: System Software
July 9, 200620 yr Can I see some installation logs please?Here is mine.It just keep looping the JRE, until i manually killthe program in the Task ManagerAlso, the second command it runs in the first program, belongs to the second program.WPI_Log.txt
July 9, 200620 yr no bug , at least no so important , old issue from 4.x versions here with hided entries in config.jssadicq ask for my config.jsnow with picture anf config.js (all entries have cond with FileExist)config2.js Edited July 9, 200620 yr by oneless
July 9, 200620 yr Thanks for the config file oneless ... it is really amazing how much work you put into this.And I think I have a fix for your problem:Open program.js and search for the ProgsInCat() function.It starts like this:function ProgsInCat(whichCat)Replace the whole function with this one:function ProgsInCat(whichCat){ position="program.js"; whatfunc="ProgsInCat()"; var i, res; res = 0; for(i=1; prog[i]; i++) { if (cond[i] && cond[i][0]) if (cat[i] && cat[i]==whichCat && eval(unescape(ReplacePath(cond[i][0]).replace(/\\/g, "\\\\")))) res++; else; else if (cat[i] && cat[i]==whichCat) res++; } return res;}If this doesn't work, I'll look again.But if this will get implemented (actually fixed) in the next release, you (kel and mritter) should change the code a little bit by saving every condition result in a vector (or matrix) so the evaluation takes place only one time for each program. The modification I made now will definately increase the load time for large config files like oneless'.So, to be on-topic, I must report a bug I think that it has been submitted before: when you have hidden programs because of the false cond statement, the category checkbox can be checked but not unchecked.There are some minor issues with the boxes.js ... it takes a very long time to parse it, so I think it can be optimized.
July 9, 200620 yr 1. debug mode checked , install process start !2. thank you @sadicq for your workbut, my boot time is already high (or extra high for bitdefender systems)so i will wait for implementation in future versionsand because this ISNT a real problem no much pain here if will not be implemented.@sadicq have you a variant of old/first version of config.au3who work with 5.x ? the version who only create the text file .
July 9, 200620 yr No, I only have the latest build which comes with the tools archive.I'll attach this one for you. It works for versions 3.8 - 5.1 I guess. Maybe others, who knows ...config_lister.au3
July 10, 200620 yr Author Here is the solution to the CheckOnLoad problem:optionswizard.js line 1199 Should be this:document.getElementById("CheckOnLoad").value=CheckOnLoad;My bad.......must have been moving too fast. Edited July 10, 200620 yr by mritter
July 10, 200620 yr Author I know. I left it in there just in case I need to invoke play via HTML/JavaScript. My theme ideas may need something like it if all works out the way I plan. It looks good on paper, but when it comes down to actually building it......we shall see....
July 13, 200620 yr no so buch a bug but i get a runtime error if i've added any audio files that have an ' in the filename
July 14, 200620 yr Can I see some installation logs please?Here is mine.It just keep looping the JRE, until i manually killthe program in the Task ManagerAlso, the second command it runs in the first program, belongs to the second program.Also I have this problem aswell, has anyone got a fix for this issue.TIA
Create an account or sign in to comment