Page 1 of 1 1
Topic Options
#207228 - 2013-05-01 05:11 PM 4.64 BETA 1 just released...
Ruud van Velsen Moderator Offline
Developer
*****

Registered: 1999-05-06
Posts: 391
Loc: Amsterdam, The Netherlands
... subject says it all: BETA 1 of 4.64 was just finalized and should be available for download soon.

Ruud

Top
#207230 - 2013-05-01 07:07 PM Re: 4.64 BETA 1 just released... [Re: Ruud van Velsen]
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11625
Loc: CA
Got it... thanks Ruud
Top
#207231 - 2013-05-02 12:12 AM Re: 4.64 BETA 1 just released... [Re: NTDOC]
Les Offline
KiX Master
*****

Registered: 2001-06-11
Posts: 12734
Loc: fortfrances.on.ca
 Originally Posted By: NTDOC
Got it...

I didn't. Since we started blocking certain attachments, we need to use password protected ZIP files or rename the file.
_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.

Top
#207232 - 2013-05-02 12:19 AM Re: 4.64 BETA 1 just released... [Re: Les]
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11625
Loc: CA
Actually the .EXE files inside the zip were renamed by Ruud to just .EX

You can get it from the Lounge forum too Les

Top
#207233 - 2013-05-02 01:38 AM Re: 4.64 BETA 1 just released... [Re: NTDOC]
Henriques Offline
Fresh Scripter

Registered: 2007-09-13
Posts: 43
Looks like several bugs introduced now.
Try this script;

 Code:
Dim $PIET[3]
Dim $RESULT
? @KIX
$PIET[0]= @BUILD
$PIET[1]= @SCRIPTDIR
$PIET[2]= @KIX
$PIET[3]= @FULLNAME

? $PIET[0]
? $PIET[1]
? $PIET[2]
? $PIET[3]

$PIET = @BUILD,
	@SCRIPTDIR,
	@KIX,
	@FULLNAME

? $PIET[0]
? $PIET[1]
? $PIET[2]
? $PIET[3]

$PIET = "piet",
	"klaas",
	"jan",
	"joris"

? $PIET[0]
? $PIET[1]
? $PIET[2]
? $PIET[3]

$RESULT = 0
$RESULT = Len($PIET)
? $RESULT

? "*" + @COMMENT      + "*"
? "*" + @FULLNAME     + "*"
? "*" + @HOMEDIR      + "*"
? "*" + @HOMEDRIVE    + "*"
? "*" + @HOMESHR      + "*"
? "*" + @LONGHOMEDIR  + "*"
? "*" + @MAXPWAGE     + "*"
? "*" + @PRIMARYGROUP + "*"
? "*" + @PRIV         + "*"
? "*" + @PWAGE        + "*"
? "*" + @RSERVER      + "*"



You'll find only that the veraion is printed which is 4.64 so although it is printed the versionnumber should something like 4.64b1.


Edited by Mart (2013-05-02 10:06 AM)
Edit Reason: Please use code tags when posting code.

Top
#207234 - 2013-05-02 01:39 AM Re: 4.64 BETA 1 just released... [Re: NTDOC]
Les Offline
KiX Master
*****

Registered: 2001-06-11
Posts: 12734
Loc: fortfrances.on.ca
I guess I'm not on Ruud's Christmas card list either. \:\/

J/K My email address changed.
_________________________
Give a man a fish and he will be back for more. Slap him with a fish and he will go away forever.

Top
#207235 - 2013-05-02 09:23 AM Re: 4.64 BETA 1 just released... [Re: Henriques]
Ruud van Velsen Moderator Offline
Developer
*****

Registered: 1999-05-06
Posts: 391
Loc: Amsterdam, The Netherlands
Yes, the version number is 4.64, I forgot to add the "b1".

Other than that, the script runs fine, right?

Top
#207239 - 2013-05-02 11:20 AM Re: 4.64 BETA 1 just released... [Re: Ruud van Velsen]
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11625
Loc: CA
I get the following running your code Henriques

E:\Download\KiX\KiX2010.464b1>KIX32 T1.KIX

4.64
7601
E:\Download\KiX\KiX2010.464b1
4.64

7601
E:\Download\KiX\KiX2010.464b1
4.64

piet
klaas
jan
joris
ERROR : Error in expression: this type of array not supported in expressions.!
Script: E:\Download\KiX\KiX2010.464b1\T1.KIX
Line : 35


This is on line 35
 Code:
$RESULT = Len($PIET)

Top
#207242 - 2013-05-02 01:14 PM Re: 4.64 BETA 1 just released... [Re: NTDOC]
Henriques Offline
Fresh Scripter

Registered: 2007-09-13
Posts: 43
I'm having a standalone pc with windows 8(64) pro.
Just found that if I use @dos instead of @fullname it works besides the len statement.
So it has something to do with the value of @fullname which by the way is in the last eleven print statements.
Now using one of these macro's at my pc's corrupts the array and nothing is printed.
I did send an email about this problem before. Running the same on a standalone pc with windows 7(32) it runs fine.

Top
#207245 - 2013-05-02 03:16 PM Re: 4.64 BETA 1 just released... [Re: Henriques]
Allen Administrator Online   shocked
KiX Supporter
*****

Registered: 2003-04-19
Posts: 4557
Loc: USA
I'm not sure I understand what error you are trying to point out, but based on what Doc posted, doing a len on a array is not going to work.

If you want to count the number of items in your array, it would be ubound($array), and if you want the length of an item in the array, it would be len($array)[0], len($array)[1], etc.

Top
#207246 - 2013-05-02 03:52 PM Re: 4.64 BETA 1 just released... [Re: Allen]
Henriques Offline
Fresh Scripter

Registered: 2007-09-13
Posts: 43
It's not the len function but the contents of @COMMENT, @FULLNAME, @HOMEDIR, @HOMEDRIVE, @HOMESHR, @LONGHOMEDIR, @MAXPWAGE, @PRIMARYGROUP, @PRIV, @PWAGE and @RSERVER if not connected to a network and working with windows 8(64) Pro.
Top
#207278 - 2013-05-08 02:28 PM Re: 4.64 BETA 1 just released... [Re: Henriques]
Ruud van Velsen Moderator Offline
Developer
*****

Registered: 1999-05-06
Posts: 391
Loc: Amsterdam, The Netherlands
Hi Henriques,

thanks for the report. I have tried to reproduce the issue, but have failed up until now.
Running your script on a standalone Windows 8 Pro (64) system produces no errors and the expected output. Exactly what goes wrong on your system?

Ruud

Top
#207279 - 2013-05-08 05:36 PM Re: 4.64 BETA 1 just released... [Re: Ruud van Velsen]
Henriques Offline
Fresh Scripter

Registered: 2007-09-13
Posts: 43
Okay Ruud,
Here's a copy of 4.64 in a dos screen;
----
Microsoft Windows [Version 6.2.9200]
(c) 2012 Microsoft Corporation. Alle rechten voorbehouden.

c:\kix>\kix\kix32 testje.kix

Start script
4.64

9200
c:\kix
4.64
6.2

c:\kix>
----
With version 4.63 I got these;
----
Microsoft Windows [Version 6.2.9200]
(c) 2012 Microsoft Corporation. Alle rechten voorbehouden.

c:\kix>\kix\kix32 testje.kix

Start script
4.63

9200
c:\kix
4.63
6.2
Fatal exception occurred.

c:\kix>
----
The script I used is;
----
Dim $PIET[3]
? "Start script"
? @KIX + @CRLF

$PIET[0] = @BUILD
$PIET[1] = @SCRIPTDIR
$PIET[2] = @KIX
$PIET[3] = @DOS

? $PIET[0]
? $PIET[1]
? $PIET[2]
? $PIET[3] + @CRLF

$PIET[3] = @FULLNAME
? $PIET[0]
? $PIET[1]
? $PIET[2]
? $PIET[3]

? "*" + @COMMENT + "*"
? "*" + @FULLNAME + "*"
? "*" + @HOMEDIR + "*"
? "*" + @HOMEDRIVE + "*"
? "*" + @HOMESHR + "*"
? "*" + @LONGHOMEDIR + "*"
? "*" + @MAXPWAGE + "*"
? "*" + @PRIMARYGROUP + "*"
? "*" + @PRIV + "*"
? "*" + @PWAGE + "*"
? "*" + @RSERVER + "*"
----

So after I changed the 3th element there's no output of that array anymore. The macro's at the bottom have to something with networking. So I looked after Allen Suggestion in the logfiles and found;
- System

- Provider

[ Name] KIXTART

- EventID 5

[ Qualifiers] 49152

Level 2

Task 0

Keywords 0x80000000000000

- TimeCreated

[ SystemTime] 2013-05-08T15:24:13.000000000Z

EventRecordID 4981

Channel Application

Computer ninja

Security


- EventData

Fatal exception occurred. Error : (0xc0000005/-1073741819)
AND ----
- System

- Provider

[ Name] KIXTART

- EventID 1722

[ Qualifiers] 0

Level 2

Task 0

Keywords 0x80000000000000

- TimeCreated

[ SystemTime] 2013-05-08T15:24:12.000000000Z

EventRecordID 4980

Channel Application

Computer ninja

Security


- EventData

UserModalsGet failed Error : De RPC-server is niet beschikbaar. (0x6ba/1722)
-----
AND
- System

- Provider

[ Name] KIXTART

- EventID 1722

[ Qualifiers] 0

Level 2

Task 0

Keywords 0x80000000000000

- TimeCreated

[ SystemTime] 2013-05-08T15:24:12.000000000Z

EventRecordID 4979

Channel Application

Computer ninja

Security


- EventData

UserGetInfo failed Error : De RPC-server is niet beschikbaar. (0x6ba/1722)
-----------------------------------
The RPC-server however is up and running.
By the way I have a laptop with with a dutch version of windows 8(64) Pro and an english version on a desktop and they both come with the same error.

All updates, including those for the internet adapters, are installed.

Top
#207283 - 2013-05-08 10:45 PM Re: 4.64 BETA 1 just released... [Re: Henriques]
Patrick20 Offline
Fresh Scripter

Registered: 2009-08-27
Posts: 22
Loc: Belgium
Hello,

where can we download 4.64 BETA 1 to check ?

Thanks/Patrick

Top
#207284 - 2013-05-08 11:00 PM Re: 4.64 BETA 1 just released... [Re: Patrick20]
Allen Administrator Online   shocked
KiX Supporter
*****

Registered: 2003-04-19
Posts: 4557
Loc: USA
http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=207227#Post207227
Top
#207353 - 2013-05-19 03:52 PM Re: 4.64 BETA 1 just released... [Re: Allen]
Smitis Offline
Just in Town

Registered: 2005-05-30
Posts: 1
Loc: Russia
This bug is not fixed
http://www.kixtart.org/forums/ubbthreads.php?ubb=showflat&Number=196878

demo
 Code:
cls
? "Bug printing non-english symbols in the kixtart 4.60 - 4.63 and 4.64beta1"
?

? "Printing two symbols instead of one"
?
$a=chr(168)
$a

?
? "Normal printing two symbols"
?
$a=chr(168) + "*"
$a

Top
#207396 - 2013-06-05 04:09 PM Re: 4.64 BETA 1 just released... [Re: NTDOC]
Ruud van Velsen Moderator Offline
Developer
*****

Registered: 1999-05-06
Posts: 391
Loc: Amsterdam, The Netherlands
Hi Henriques,

I've done more testing with this, but haven't been able to reproduce the issue. Using the exact same script on both a standalone and a domain joined 64-bit client works for me.

The events regarding UserModalsGet and UserGetInfo are strange, as these calls should work fine (on a standalone system, they refer to the local system). It would seem to indicate something is preventing applications (such as KiXtart) to make RPC calls. Maybe some security product (firewall/antivirus)?

Regards,

Ruud

Top
Page 1 of 1 1


Moderator:  ShaneEP, Arend_, Jochen, Radimus, Glenn Barnas, Allen, Ruud van Velsen, Mart 
Hop to:
Shout Box

Who's Online
1 registered (Allen) and 509 anonymous users online.
Newest Members
min_seow, Audio, Hoschi, Comet, rrosell
17881 Registered Users

Generated in 0.069 seconds in which 0.026 seconds were spent on a total of 13 queries. Zlib compression enabled.