Jump to content

WPI 5.1 Bug Reports


Recommended Posts

i have strange behaviour...

i have ethereal and winpcap objects i nWPI

ethereal is (dependant) installed only when winpcap is checked

but when i click "select all" it selects all, but ethereal is unchecked??

Link to comment
Share on other sites


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.

post-44632-1152315892_thumb.jpg

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 Report

Message: 'undefined' is null or is not an object
Url: C:\install\WPI\WPI.hta
File: core.js
Function: FileExists()
Line: 244

I'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 :-)

Link to comment
Share on other sites

Here is one of my logs.

WPI Installation Log File

Install process started at: Saturday, July 08, 2006 8:50:03 PM

List 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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

1. debug mode checked , install process start !

2. thank you @sadicq for your work

but, my boot time is already high (or extra high for bitdefender systems)

so i will wait for implementation in future versions

and 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.au3

who work with 5.x ? the version who only create the text file .

Link to comment
Share on other sites

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 by mritter
Link to comment
Share on other sites

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....

Link to comment
Share on other sites

Can I see some installation logs please?

Here is mine.

It just keep looping the JRE, until i manually killthe program in the Task Manager

Also, 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

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...