Go Back   Winamp & Shoutcast Forums > Search Forums

Showing results 1 to 24 of 24
Search took 0.00 seconds.
Search: Posts Made By: Spatacoli
Forum: NSIS Discussion 27th April 2004, 20:17
Replies: 2
Views: 1,369
Posted By Spatacoli
Thanks Joost. That means we need to upgrade our...

Thanks Joost. That means we need to upgrade our JVM.
Forum: NSIS Discussion 27th April 2004, 19:57
Replies: 2
Views: 1,369
Posted By Spatacoli
nsExec memory space

Quick Question: I'm running into a problem where an installer is making a call to an external program using nsExec::ExecToLog. The external program is running out of memory. This can be caused by one...
Forum: NSIS Discussion 19th April 2004, 17:41
Replies: 4
Views: 2,360
Posted By Spatacoli
I've used Venis, but with the release of version...

I've used Venis, but with the release of version 2.2.2 the collapse just doesn't work right. Also, I've found that it puts strange characters at the end of some lines that cause NSIS compiler to say...
Forum: NSIS Discussion 13th April 2004, 20:56
Replies: 2
Views: 1,304
Posted By Spatacoli
look at sections.nsh a little closer. I use...

look at sections.nsh a little closer. I use UnselectSection and SetSectionFlag to read only in my installer when I need to do something similar to what you are doing.
Forum: NSIS Discussion 30th March 2004, 23:10
Replies: 2
Views: 1,324
Posted By Spatacoli
you need to specify a classpath to your $INSTDIR...

you need to specify a classpath to your $INSTDIR and then call Installation like this:

Exec 'java.exe -cp "$INSTDIR" Installation $SQL_DIR $INSTDIR'
Forum: NSIS Discussion 9th March 2004, 17:47
Replies: 8
Views: 5,976
Posted By Spatacoli
I thought that mysqld.exe is the server and...

I thought that mysqld.exe is the server and mysql.exe is the client. Running the server isn't going to do anything but start mySQL again. I use mysql.exe because I need a client application to run...
Forum: NSIS Discussion 22nd February 2004, 18:56
Replies: 24
Views: 7,717
Posted By Spatacoli
As Joost pointed out, cmd isn't a recognized...

As Joost pointed out, cmd isn't a recognized program on Windows 9x. I use it in my installers because our software is only supported on Windows 2000, XP, and 2003. If you need compatibility with...
Forum: NSIS Discussion 20th February 2004, 23:05
Replies: 24
Views: 7,717
Posted By Spatacoli
So I tried it like this and it doesn't have a...

So I tried it like this and it doesn't have a problem working (the path is the longest I could come up with on short notice):

nsExec::ExecToStack 'cmd /C "C:\Documents and Settings\temp1\Local...
Forum: NSIS Discussion 20th February 2004, 22:57
Replies: 24
Views: 7,717
Posted By Spatacoli
not to be picky about it, but I want to be sure...

not to be picky about it, but I want to be sure you have it right, mysql.exe lives in the bin directory, so do you mean that the path to your mysql.exe file is C:\mysql\bin\mysql.exe or is it...
Forum: NSIS Discussion 19th February 2004, 21:22
Replies: 12
Views: 3,126
Posted By Spatacoli
oh yeah, sorry, I didn't see the OS. please...

oh yeah, sorry, I didn't see the OS. please ignore my post.
Forum: NSIS Discussion 19th February 2004, 20:59
Replies: 12
Views: 3,126
Posted By Spatacoli
Did you try this? ExecShell 'cmd /C...

Did you try this?

ExecShell 'cmd /C "$INSTDIR\${PRODUCTNAME}.exe" /regserver'
Forum: NSIS Discussion 18th February 2004, 18:18
Replies: 24
Views: 7,717
Posted By Spatacoli
For mySQL I use a line like this: ...

For mySQL I use a line like this:
nsExec::ExecToLog 'cmd /C $mySQLEXE -u$dbUser -h$dbHost -P$dbPort < "$INSTDIR\tmp\dbinit\create_user.sql"'

$mySQLEXE is usually C:\mysql\bin\mysql.exe, but I...
Forum: NSIS Discussion 10th February 2004, 21:42
Replies: 4
Views: 1,585
Posted By Spatacoli
Try "${NSISDIR}\Contrib\UIs\UI Holder" ...

Try

"${NSISDIR}\Contrib\UIs\UI Holder"

Or

"${NSISDIR}\Source\exehead"

there is a ui.c in there.
Forum: NSIS Discussion 9th February 2004, 16:18
Replies: 116
Views: 28,437
Posted By Spatacoli
thanks deguix and Kichik, I've been using these...

thanks deguix and Kichik, I've been using these string functions with the new build and they work great! Thank you for your hard work.
Forum: NSIS Discussion 29th January 2004, 22:57
Replies: 6
Views: 2,177
Posted By Spatacoli
Thanks again, I was just overeager and must have...

Thanks again, I was just overeager and must have got a CVS copy that didn't have everything checked in.
Forum: NSIS Discussion 27th January 2004, 21:09
Replies: 6
Views: 2,177
Posted By Spatacoli
I got the most recent build that has these...

I got the most recent build that has these changes checked in. I recompiled with the NSIS_CONFIG_LOG set in config.h. However, I'm still not seeing the log file. Any suggestions?
Forum: NSIS Discussion 27th January 2004, 17:53
Replies: 6
Views: 2,177
Posted By Spatacoli
Cool! I'll download it now. Thanks!

Cool! I'll download it now. Thanks!
Forum: NSIS Discussion 26th January 2004, 19:38
Replies: 5
Views: 2,272
Posted By Spatacoli
MySQL should insert a my.ini file in your Windows...

MySQL should insert a my.ini file in your Windows directory. This usually lists the path to the base dir, from there mysql.exe is usually in the bin dir. This is true for 3.23.x, I'm not sure about...
Forum: NSIS Discussion 22nd January 2004, 22:03
Replies: 116
Views: 28,437
Posted By Spatacoli
I thought they'd only be included if you...

I thought they'd only be included if you specifically say:
!include "strings.nsh"

'Doh Sorry, didn't think about it very hard before I posted. :D
Forum: NSIS Discussion 21st January 2004, 20:34
Replies: 3
Views: 1,419
Posted By Spatacoli
Here's the link to the Get Windows Version...

Here's the link to the Get Windows Version function:

http://nsis.sourceforge.net/archive/nsisweb.php?page=15&instances=0,11


As it says in the comments, it'll return the version (95, 98, Me,...
Forum: NSIS Discussion 21st January 2004, 17:34
Replies: 116
Views: 28,437
Posted By Spatacoli
It would be nice to have all of the string...

It would be nice to have all of the string functions in one place. I often forget which header file I have strstr in or which one has strreplace. It would be great to include string.nsh and have all...
Forum: NSIS Discussion 13th January 2004, 23:03
Replies: 6
Views: 2,177
Posted By Spatacoli
Okay, so in reviewing that change in util.h, I...

Okay, so in reviewing that change in util.h, I noticed that in version 1.25 of the file each defined log_print is followed on by a log_write(0);. A call to log_write seems required to actually output...
Forum: NSIS Discussion 13th January 2004, 22:38
Replies: 6
Views: 2,177
Posted By Spatacoli
Log file problem

I've been trying to track down a few problems with log files. I have recompiled the source with the NSIS_CONFIG_LOG set in config.h. I also noted that there was a change made from Beta4 to RC1 where...
Forum: NSIS Discussion 11th January 2004, 22:09
Replies: 5
Views: 3,779
Posted By Spatacoli
I found that I needed to #include <shlwapi.h> to...

I found that I needed to #include <shlwapi.h> to get today's release to compile. Should I have needed to do that?
Showing results 1 to 24 of 24

 
Forum Jump