RE: u3 rev application with mysql/apache

2006-08-05 Thread Viktoras Didziulis
 
try this:
 
put "mysqladmin -" & "-user=pma -" & "-password=your_password shutdown" into
theCommand
 
Best regards
Viktoras
 
---Original Message--- 
 
From: Robert Mann 
Date: 08/05/06 00:38:12 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
Viktoras 
I got the start button to work 
on mouseUp 
set the hideConsoleWindows to false 
open process "\xampplite\mysql\bin\mysqld" for neither 
end mouseUp 
 
but I am not able to get the stop to work (password= is correct for 
user=pma) 
 
#stop the server 
on mouseUp 
put "\xampplite\mysql\bin\mysqladmin -" & " -password= shutdown" into 
theCommand 
set the hideConsoleWindows to false 
get shell(theCommand) 
 
end mouseUp 
 
Thanks 
 
 
Robert Mann 
President 
GP Racing LLC 
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-08-04 Thread Robert Mann
Viktoras
I got the start button to work
on mouseUp
  set the hideConsoleWindows to false
  open process "\xampplite\mysql\bin\mysqld" for neither
 end mouseUp

but I am not able to get the stop to work (password=is correct for
user=pma)

#stop the server
on mouseUp
  put "\xampplite\mysql\bin\mysqladmin -" & " -password=  shutdown" into
theCommand
  set the hideConsoleWindows to false
  get shell(theCommand)

end mouseUp

Thanks


Robert Mann
President
GP Racing LLC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras
Didziulis
Sent: Wednesday, August 02, 2006 10:28 AM
To: How to use Revolution
Subject: RE: u3 rev application with mysql/apache


Hi Robert,

try this with 3 buttons:

#start the server
on mouseUp
set the hideConsoleWindows to true
open process "MySQL Server 5.0\bin\mysqld" for neither
end mouseUp

#stop the server
on mouseUp
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
end mouseUp

#show server status
on mouseUp
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas status"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
answer it
end mouseUp

This should do the job.

Instead of using buttons you may want to load server (scripts of the stack):

on startup
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
end startup

and close it with:
on closeStack
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
end closeStack

Viktoras




___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-08-03 Thread Robert Mann
thanks for the help

Robert Mann
President
GP Racing LLC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Robert
Sneidar
Sent: Thursday, August 03, 2006 7:13 PM
To: use-revolution@lists.runrev.com
Subject: RE: u3 rev application with mysql/apache


May I STRONGLY suggest you do NOT requote every requoted requote of
every prior quote every time you reply to this list? I usually only
quote one or two levels since I thread my mail messages anyway. Snip
it! Snip it good!

Bob Sneidar
IT Manager
Logos Management
Calvary Chapel CM

On Aug 3, 2006, at 8:50 AM, [EMAIL PROTECTED]
wrote:

> RE: u3 rev application with mysql/apache


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-08-03 Thread Robert Sneidar
May I STRONGLY suggest you do NOT requote every requoted requote of  
every prior quote every time you reply to this list? I usually only  
quote one or two levels since I thread my mail messages anyway. Snip  
it! Snip it good!


Bob Sneidar
IT Manager
Logos Management
Calvary Chapel CM

On Aug 3, 2006, at 8:50 AM, [EMAIL PROTECTED]  
wrote:



RE: u3 rev application with mysql/apache



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-08-02 Thread Viktoras Didziulis
Hi Robert, 
 
Apache is needed only if you wish to clone a website with
cgi/SSI/php/databases/whatsoever to a flash drive (or CD) without major
changes to the server side scripts and (x)html forms so you could access it
locally or from your LAN using web browser or from within hta applications. 
 
If you need just a database application, then probably altSQL which embeds
SQLite engine would be the optimal solution. Concerning MySQL, the best
option is to do manual install of MySQL. Download distribution without
instaler from 
http://www.mysql.org/downloads/mysql/5.0.html 
 
Then follow directives at 
http://www.mysql.org/doc/refman/5.0/en/windows-install-archive.html 
to install and configure directly to the thumbdrive. 
 
Use only relative path names everywhere to avoid problems with drive letters
 type in your_password instead of kristupukas - sorry, forgot to translate
it to English :-): 
put "xamp\mysql\MySQL Server 5.0\bin\mysqladmin -" & 
-password=your_password shutdown" 
 
There is also a possibility to embed MySQL, but this requires some efforts: 
http://www.mysql.com/news-and-events/users-conference/2006/embedded.php 
 
Alternative might be a Firebird database: 
http://www.firebirdsql.org/, 
which can also be embeded into applications or run as a server and is
relatively small ~around 4Mb. Also has an in-memory database option. But I
am just planning to play a bit with it in future, as allways :-) 
 
All the best! 
Viktoras 
---Original Message--- 
 
From: Robert Mann 
Date: 08/02/06 22:33:26 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
Viktoras 
thanks for the help I am not having any luck getting it to work so I guess I

need to ask a few more questions. I have been using xampp for the mysql 
install now that I understand that I do not need the apache is there 
something else I should use? where should I place all the apps, all in one 
dir or separate, here is how it is setup right now on the flash drive 
rev application is in the root 
mysql is in the xampp\mysql\ 
 
I also notice that if I move my flash drive to a different computer and the 
drive letter changes like from l to m and I click on the mysql_start I get a

error message is there a way to correct this so that it will change to the 
proper drive letter? 
 
 
also this line "-password=kristupukas shutdown" in your code should I be 
changing it to "-password=mypassword shutdown" 
 
is this correct from below? 
on startup 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown" 
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
end startup 
 
 
 
Robert Mann 
President 
GP Racing LLC 
 
-Original Message- 
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras 
Didziulis 
Sent: Wednesday, August 02, 2006 10:28 AM 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
 
Hi Robert, 
 
try this with 3 buttons: 
 
#start the server 
on mouseUp 
set the hideConsoleWindows to true 
open process "MySQL Server 5.0\bin\mysqld" for neither 
end mouseUp 
 
#stop the server 
on mouseUp 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown" 
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
end mouseUp 
 
#show server status 
on mouseUp 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas status" 
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
answer it 
end mouseUp 
 
This should do the job. 
 
Instead of using buttons you may want to load server (scripts of the stack):

 
on startup 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown" 
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
end startup 
 
and close it with: 
on closeStack 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown" 
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
end closeStack 
 
Viktoras 
 
 
---Original Message--- 
 
From: Robert Mann 
Date: 08/02/06 14:50:19 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
Not sure how to code the call to start the mysql is there a sample out there

 
somewhere? 
 
Thanks 
 
Robert Mann 
President 
GP Racing LLC 
 
-Original Message----- 
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras 
Didziulis 
Sent: Wednesday, August 02, 2006 2:39 AM 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
 
Hi, 
 
You have to call Mysql from the main application while it is loading or on 
demand. Autorun wont start it automatically from a thumbdrive. 
 
Viktoras 
 
---Original Message--- 
 
From: Robert Mann 
Date: 08/02/06 00:46:09 
To: How to use Revolution 
Subject

RE: u3 rev application with mysql/apache

2006-08-02 Thread Robert Mann
Viktoras
thanks for the help I am not having any luck getting it to work so I guess I
need to ask a few more questions. I have been using xampp for the mysql
install now that I understand that I do not need the apache is there
something else I should use? where should I place all the apps, all in one
dir or separate, here is how it is setup right now on the flash drive
rev application is in the root
mysql is in the xampp\mysql\

I also notice that if I move my flash drive to a different computer and the
drive letter changes like from l to m and I click on the mysql_start I get a
error message is there a way to correct this so that it will change to the
proper drive letter?


also this line  "-password=kristupukas shutdown"  in your code should I be
changing it to  "-password=mypassword shutdown"

is this correct from below?
on startup
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
end startup



Robert Mann
President
GP Racing LLC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras
Didziulis
Sent: Wednesday, August 02, 2006 10:28 AM
To: How to use Revolution
Subject: RE: u3 rev application with mysql/apache


Hi Robert,

try this with 3 buttons:

#start the server
on mouseUp
set the hideConsoleWindows to true
open process "MySQL Server 5.0\bin\mysqld" for neither
end mouseUp

#stop the server
on mouseUp
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
end mouseUp

#show server status
on mouseUp
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas status"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
answer it
end mouseUp

This should do the job.

Instead of using buttons you may want to load server (scripts of the stack):

on startup
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
end startup

and close it with:
on closeStack
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand
set the hideConsoleWindows to true
get shell(theCommand)
end closeStack

Viktoras


---Original Message---

From: Robert Mann
Date: 08/02/06 14:50:19
To: How to use Revolution
Subject: RE: u3 rev application with mysql/apache

Not sure how to code the call to start the mysql is there a sample out there

somewhere?

Thanks

Robert Mann
President
GP Racing LLC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras
Didziulis
Sent: Wednesday, August 02, 2006 2:39 AM
To: How to use Revolution
Subject: RE: u3 rev application with mysql/apache


Hi,

You have to call Mysql from the main application while it is loading or on
demand. Autorun wont start it automatically from a thumbdrive.

Viktoras

---Original Message---

From: Robert Mann
Date: 08/02/06 00:46:09
To: How to use Revolution
Subject: RE: u3 rev application with mysql/apache

tying to get your suggestion to work I have it so that it opens my app which


is the first 5 lines but I am not able to get the mysql started here is my
autorun.inf

[autorun]

action=SNmain.exe
open=/SNmain/Windows/SNmain.exe
shellexecute=/SNmain/Windows/SNmain.exe
shell\Auto=&SNmain.exe
shell\Auto\command=/SNmain/Windows/SNmain.exe

action=xampp_start.exe
open=/xampp/xampp_start.exe
shellexecute=/xampp/xampp_start.exe
shell\Auto=&xampp_start.exe
shell\Auto\command=/xampp/xampp_start.exe

Icon=sn.ico
shell=Auto
label=Suspension Network





Robert Mann
President
GP Racing LLC

-Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras
Didziulis
Sent: Monday, July 31, 2006 3:16 PM
To: How to use Revolution
Subject: Re: u3 rev application with mysql/apache


Hi Robert,

you do not need U3 drive for this. Some cool things can be done with
ordinary flashdrives. For MS Windows you use Autorun.inf like this:[autorun]


action=NAME_OF_YOUR_APP
open=your_app.exe
shellexecute=your_app.exe
shell\Auto=&NAME_OF_YOUR_APP
shell\Auto\command=your_app.exe
Icon=your_icon.ico
shell=Auto
label=NAME_OF_YOUR_APP

What you get is:
1) after insertion of the flashdrive your_icon will appear instead of the
default flashdrive icon;
2) if autoplay on users machine is enabled it will show NAME_OF_YOUR_APP
with your_icon as the first choice in autoplay menu and will allow to launch


your app from there;
3) it will launch the application on doubleclicking the flash_drive's icon
(your_icon)
4) it will provide the first option in the context menu as NAME_OF_YOUR_APP
(upon right mouse-click on flash-drive's icon)
5) it WILL NOT launch your application autom

RE: u3 rev application with mysql/apache

2006-08-02 Thread Viktoras Didziulis
Hi Robert,
 
try this with 3 buttons: 
 
#start the server 
on mouseUp 
set the hideConsoleWindows to true 
open process "MySQL Server 5.0\bin\mysqld" for neither 
end mouseUp 
 
#stop the server 
on mouseUp 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
end mouseUp 
 
#show server status 
on mouseUp 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas status"
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
answer it 
end mouseUp 
 
This should do the job. 
 
Instead of using buttons you may want to load server (scripts of the stack):

on startup 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
end startup 
 
and close it with: 
on closeStack 
put "MySQL Server 5.0\bin\mysqladmin -" & "-password=kristupukas shutdown"
into theCommand 
set the hideConsoleWindows to true 
get shell(theCommand) 
end closeStack 
 
Viktoras 
 
 
---Original Message--- 
 
From: Robert Mann 
Date: 08/02/06 14:50:19 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
Not sure how to code the call to start the mysql is there a sample out there

somewhere? 
 
Thanks 
 
Robert Mann 
President 
GP Racing LLC 
 
-Original Message- 
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras 
Didziulis 
Sent: Wednesday, August 02, 2006 2:39 AM 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
 
Hi, 
 
You have to call Mysql from the main application while it is loading or on 
demand. Autorun wont start it automatically from a thumbdrive. 
 
Viktoras 
 
---Original Message--- 
 
From: Robert Mann 
Date: 08/02/06 00:46:09 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
tying to get your suggestion to work I have it so that it opens my app which

 
is the first 5 lines but I am not able to get the mysql started here is my 
autorun.inf 
 
[autorun] 
 
action=SNmain.exe 
open=/SNmain/Windows/SNmain.exe 
shellexecute=/SNmain/Windows/SNmain.exe 
shell\Auto=&SNmain.exe 
shell\Auto\command=/SNmain/Windows/SNmain.exe 
 
action=xampp_start.exe 
open=/xampp/xampp_start.exe 
shellexecute=/xampp/xampp_start.exe 
shell\Auto=&xampp_start.exe 
shell\Auto\command=/xampp/xampp_start.exe 
 
Icon=sn.ico 
shell=Auto 
label=Suspension Network 
 
 
 
 
 
Robert Mann 
President 
GP Racing LLC 
 
-Original Message- 
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras 
Didziulis 
Sent: Monday, July 31, 2006 3:16 PM 
To: How to use Revolution 
Subject: Re: u3 rev application with mysql/apache 
 
 
Hi Robert, 
 
you do not need U3 drive for this. Some cool things can be done with 
ordinary flashdrives. For MS Windows you use Autorun.inf like this:[autorun]

 
action=NAME_OF_YOUR_APP 
open=your_app.exe 
shellexecute=your_app.exe 
shell\Auto=&NAME_OF_YOUR_APP 
shell\Auto\command=your_app.exe 
Icon=your_icon.ico 
shell=Auto 
label=NAME_OF_YOUR_APP 
 
What you get is: 
1) after insertion of the flashdrive your_icon will appear instead of the 
default flashdrive icon; 
2) if autoplay on users machine is enabled it will show NAME_OF_YOUR_APP 
with your_icon as the first choice in autoplay menu and will allow to launch

 
your app from there; 
3) it will launch the application on doubleclicking the flash_drive's icon 
(your_icon) 
4) it will provide the first option in the context menu as NAME_OF_YOUR_APP 
(upon right mouse-click on flash-drive's icon) 
5) it WILL NOT launch your application automatically on startup, which is 
good from a security point of view... 
 
For MacOS this tool can be of some use: 
http://www.naratt.com/MultipleLauncher.html 
 
I think it is more than enough for a non-U3 drive. I am also bundling my 
Contents Management Soft with Apache this way :-). 
 
All the best 
Viktoras 
 
---Original Message--- 
 
From: Robert Mann 
Date: 07/31/06 22:19:27 
To: rev list 
Subject: u3 rev application with mysql/apache 
 
I am building a rev standalone that works in conjunction with a mysql 
database, so If I bundle a install I need to also check first to see if 
apache is installed if not then install it with a mysql database, so was 
thinking that maybe this new u3 drive I can preinstall everything on it so 
then all I need to send the use is a flash drive, any thoughts as to is this

 
 
will be possible to run apache/mysql/rev application all within a u3 flash 
drive? 
 
Robert Mann 
President 
GP Racing LLC 
 
___ 
use-revolution mailing list 
use-revolution@lists.runrev.com 
Please visit this url to subscribe, unsubscribe and manage your subscription

 
preferences: 
http://lis

RE: u3 rev application with mysql/apache

2006-08-02 Thread Robert Mann
Not sure how to code the call to start the mysql is there a sample out there
somewhere?

Thanks

Robert Mann
President
GP Racing LLC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras
Didziulis
Sent: Wednesday, August 02, 2006 2:39 AM
To: How to use Revolution
Subject: RE: u3 rev application with mysql/apache


Hi,

You have to call Mysql from the main application while it is loading or on
demand. Autorun wont start it automatically from a thumbdrive.

Viktoras

---Original Message---

From: Robert Mann
Date: 08/02/06 00:46:09
To: How to use Revolution
Subject: RE: u3 rev application with mysql/apache

tying to get your suggestion to work I have it so that it opens my app which

is the first 5 lines but I am not able to get the mysql started here is my
autorun.inf

[autorun]

action=SNmain.exe
open=/SNmain/Windows/SNmain.exe
shellexecute=/SNmain/Windows/SNmain.exe
shell\Auto=&SNmain.exe
shell\Auto\command=/SNmain/Windows/SNmain.exe

action=xampp_start.exe
open=/xampp/xampp_start.exe
shellexecute=/xampp/xampp_start.exe
shell\Auto=&xampp_start.exe
shell\Auto\command=/xampp/xampp_start.exe

Icon=sn.ico
shell=Auto
label=Suspension Network





Robert Mann
President
GP Racing LLC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras
Didziulis
Sent: Monday, July 31, 2006 3:16 PM
To: How to use Revolution
Subject: Re: u3 rev application with mysql/apache


Hi Robert,

you do not need U3 drive for this. Some cool things can be done with
ordinary flashdrives. For MS Windows you use Autorun.inf like this:[autorun]

action=NAME_OF_YOUR_APP
open=your_app.exe
shellexecute=your_app.exe
shell\Auto=&NAME_OF_YOUR_APP
shell\Auto\command=your_app.exe
Icon=your_icon.ico
shell=Auto
label=NAME_OF_YOUR_APP

What you get is:
1) after insertion of the flashdrive your_icon will appear instead of the
default flashdrive icon;
2) if autoplay on users machine is enabled it will show NAME_OF_YOUR_APP
with your_icon as the first choice in autoplay menu and will allow to launch

your app from there;
3) it will launch the application on doubleclicking the flash_drive's icon
(your_icon)
4) it will provide the first option in the context menu as NAME_OF_YOUR_APP
(upon right mouse-click on flash-drive's icon)
5) it WILL NOT launch your application automatically on startup, which is
good from a security point of view...

For MacOS this tool can be of some use:
http://www.naratt.com/MultipleLauncher.html

I think it is more than enough for a non-U3 drive. I am also bundling my
Contents Management Soft with Apache this way :-).

All the best
Viktoras

---Original Message---

From: Robert Mann
Date: 07/31/06 22:19:27
To: rev list
Subject: u3 rev application with mysql/apache

I am building a rev standalone that works in conjunction with a mysql
database, so If I bundle a install I need to also check first to see if
apache is installed if not then install it with a mysql database, so was
thinking that maybe this new u3 drive I can preinstall everything on it so
then all I need to send the use is a flash drive, any thoughts as to is this


will be possible to run apache/mysql/rev application all within a u3 flash
drive?

Robert Mann
President
GP Racing LLC

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription

preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription

preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-08-02 Thread Viktoras Didziulis
Hi, 
 
You have to call Mysql from the main application while it is loading or on
demand. Autorun wont start it automatically from a thumbdrive. 
 
Viktoras 
 
---Original Message--- 
 
From: Robert Mann 
Date: 08/02/06 00:46:09 
To: How to use Revolution 
Subject: RE: u3 rev application with mysql/apache 
 
tying to get your suggestion to work I have it so that it opens my app which

is the first 5 lines but I am not able to get the mysql started here is my 
autorun.inf 
 
[autorun] 
 
action=SNmain.exe 
open=/SNmain/Windows/SNmain.exe 
shellexecute=/SNmain/Windows/SNmain.exe 
shell\Auto=&SNmain.exe 
shell\Auto\command=/SNmain/Windows/SNmain.exe 
 
action=xampp_start.exe 
open=/xampp/xampp_start.exe 
shellexecute=/xampp/xampp_start.exe 
shell\Auto=&xampp_start.exe 
shell\Auto\command=/xampp/xampp_start.exe 
 
Icon=sn.ico 
shell=Auto 
label=Suspension Network 
 
 
 
 
 
Robert Mann 
President 
GP Racing LLC 
 
-Original Message- 
From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras 
Didziulis 
Sent: Monday, July 31, 2006 3:16 PM 
To: How to use Revolution 
Subject: Re: u3 rev application with mysql/apache 
 
 
Hi Robert, 
 
you do not need U3 drive for this. Some cool things can be done with 
ordinary flashdrives. For MS Windows you use Autorun.inf like this:[autorun]

action=NAME_OF_YOUR_APP 
open=your_app.exe 
shellexecute=your_app.exe 
shell\Auto=&NAME_OF_YOUR_APP 
shell\Auto\command=your_app.exe 
Icon=your_icon.ico 
shell=Auto 
label=NAME_OF_YOUR_APP 
 
What you get is: 
1) after insertion of the flashdrive your_icon will appear instead of the 
default flashdrive icon; 
2) if autoplay on users machine is enabled it will show NAME_OF_YOUR_APP 
with your_icon as the first choice in autoplay menu and will allow to launch

your app from there; 
3) it will launch the application on doubleclicking the flash_drive's icon 
(your_icon) 
4) it will provide the first option in the context menu as NAME_OF_YOUR_APP 
(upon right mouse-click on flash-drive's icon) 
5) it WILL NOT launch your application automatically on startup, which is 
good from a security point of view... 
 
For MacOS this tool can be of some use: 
http://www.naratt.com/MultipleLauncher.html 
 
I think it is more than enough for a non-U3 drive. I am also bundling my 
Contents Management Soft with Apache this way :-). 
 
All the best 
Viktoras 
 
---Original Message--- 
 
From: Robert Mann 
Date: 07/31/06 22:19:27 
To: rev list 
Subject: u3 rev application with mysql/apache 
 
I am building a rev standalone that works in conjunction with a mysql 
database, so If I bundle a install I need to also check first to see if 
apache is installed if not then install it with a mysql database, so was 
thinking that maybe this new u3 drive I can preinstall everything on it so 
then all I need to send the use is a flash drive, any thoughts as to is this

 
will be possible to run apache/mysql/rev application all within a u3 flash 
drive? 
 
Robert Mann 
President 
GP Racing LLC 
 
___ 
use-revolution mailing list 
use-revolution@lists.runrev.com 
Please visit this url to subscribe, unsubscribe and manage your subscription

preferences: 
http://lists.runrev.com/mailman/listinfo/use-revolution 
___ 
use-revolution mailing list 
use-revolution@lists.runrev.com 
Please visit this url to subscribe, unsubscribe and manage your subscription

preferences: 
http://lists.runrev.com/mailman/listinfo/use-revolution 
 
 
___ 
use-revolution mailing list 
use-revolution@lists.runrev.com 
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences: 
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-08-01 Thread Robert Mann
tying to get your suggestion to work I have it so that it opens my app which
is the first 5 lines but I am not able to get the mysql started here is my
autorun.inf

[autorun]

action=SNmain.exe
open=/SNmain/Windows/SNmain.exe
shellexecute=/SNmain/Windows/SNmain.exe
shell\Auto=&SNmain.exe
shell\Auto\command=/SNmain/Windows/SNmain.exe

action=xampp_start.exe
open=/xampp/xampp_start.exe
shellexecute=/xampp/xampp_start.exe
shell\Auto=&xampp_start.exe
shell\Auto\command=/xampp/xampp_start.exe

Icon=sn.ico
shell=Auto
label=Suspension Network





Robert Mann
President
GP Racing LLC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Viktoras
Didziulis
Sent: Monday, July 31, 2006 3:16 PM
To: How to use Revolution
Subject: Re: u3 rev application with mysql/apache


 Hi Robert,

you do not need U3 drive for this. Some cool things can be done with
ordinary flashdrives. For MS Windows you use Autorun.inf like this:[autorun]
action=NAME_OF_YOUR_APP
open=your_app.exe
shellexecute=your_app.exe
shell\Auto=&NAME_OF_YOUR_APP
shell\Auto\command=your_app.exe
Icon=your_icon.ico
shell=Auto
label=NAME_OF_YOUR_APP

What you get is:
1) after insertion of the flashdrive your_icon will appear instead of the
default flashdrive icon;
2) if autoplay on users machine is enabled it will show NAME_OF_YOUR_APP
with your_icon as the first choice in autoplay menu and will allow to launch
your app from there;
3) it will launch the application on doubleclicking the flash_drive's icon
(your_icon)
4) it will provide the first option in the context menu as NAME_OF_YOUR_APP
(upon right mouse-click on flash-drive's icon)
5) it WILL NOT launch your application automatically on startup, which is
good from a security point of view...

For MacOS this tool can be of some use:
 http://www.naratt.com/MultipleLauncher.html

I think it is more than enough for a non-U3 drive. I am also bundling my
Contents Management Soft with Apache this way :-).

All the best
Viktoras

---Original Message---

From: Robert Mann
Date: 07/31/06 22:19:27
To: rev list
Subject: u3 rev application with mysql/apache

I am building a rev standalone that works in conjunction with a mysql
database, so If I bundle a install I need to also check first to see if
apache is installed if not then install it with a mysql database, so was
thinking that maybe this new u3 drive I can preinstall everything on it so
then all I need to send the use is a flash drive, any thoughts as to is this

will be possible to run apache/mysql/rev application all within a u3 flash
drive?

Robert Mann
President
GP Racing LLC

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-07-31 Thread Sean Shao
No you don't need Apache (or any webserver for that matter) to use PHP.. PHP 
returns it's replies in HTML format so you can just parse/use it as you 
require..


_
FREE pop-up blocking with the new MSN Toolbar – get it now! 
http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-07-31 Thread Stephen Barncard
you don't need PHP to connect to databases with rev...rev works 
directly with almost any database.



sqb



Don't you need apache for php to work? I have built a web site that is
mysql/php based now I am turning it into a stand alone for customers to use
locally and not have to connect to the net to use. also I want to be able to
sync the databases this way they can pull down the new info online and
upload the new info they have put into the database as they need.
Thanks for the suggestions I have started to test them out.

Robert Mann
President
GP Racing LLC


--
stephen barncard
s a n  f r a n c i s c o
- - -  - - - - - - - - -
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: u3 rev application with mysql/apache

2006-07-31 Thread Robert Mann
Don't you need apache for php to work? I have built a web site that is
mysql/php based now I am turning it into a stand alone for customers to use
locally and not have to connect to the net to use. also I want to be able to
sync the databases this way they can pull down the new info online and
upload the new info they have put into the database as they need.
Thanks for the suggestions I have started to test them out.

Robert Mann
President
GP Racing LLC

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Sean Shao
Sent: Monday, July 31, 2006 3:13 PM
To: use-revolution@lists.runrev.com
Subject: Re: u3 rev application with mysql/apache


Robert Mann wrote:
>I am building a rev standalone that works in  conjunction with a mysql
>database, so If I bundle a install I need to also check first to see if
>apache is installed if not then install it with a mysql database, so was

umm.. If you don't mind, why do you need to use Apache? MySQL will work
without it and Rev connects to it through it's database drivers. Also, will
altSQLite work for you instead of MySQL?

_
Express yourself instantly with MSN Messenger! Download today - it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: u3 rev application with mysql/apache

2006-07-31 Thread Viktoras Didziulis
 Hi Robert,
 
you do not need U3 drive for this. Some cool things can be done with
ordinary flashdrives. For MS Windows you use Autorun.inf like this:[autorun]
action=NAME_OF_YOUR_APP
open=your_app.exe
shellexecute=your_app.exe
shell\Auto=&NAME_OF_YOUR_APP
shell\Auto\command=your_app.exe
Icon=your_icon.ico
shell=Auto
label=NAME_OF_YOUR_APP
 
What you get is:
1) after insertion of the flashdrive your_icon will appear instead of the
default flashdrive icon;
2) if autoplay on users machine is enabled it will show NAME_OF_YOUR_APP
with your_icon as the first choice in autoplay menu and will allow to launch
your app from there;
3) it will launch the application on doubleclicking the flash_drive's icon
(your_icon)
4) it will provide the first option in the context menu as NAME_OF_YOUR_APP
(upon right mouse-click on flash-drive's icon)
5) it WILL NOT launch your application automatically on startup, which is
good from a security point of view...
 
For MacOS this tool can be of some use:
 http://www.naratt.com/MultipleLauncher.html
 
I think it is more than enough for a non-U3 drive. I am also bundling my
Contents Management Soft with Apache this way :-).
 
All the best
Viktoras
 
---Original Message--- 
 
From: Robert Mann 
Date: 07/31/06 22:19:27 
To: rev list 
Subject: u3 rev application with mysql/apache 
 
I am building a rev standalone that works in conjunction with a mysql 
database, so If I bundle a install I need to also check first to see if 
apache is installed if not then install it with a mysql database, so was 
thinking that maybe this new u3 drive I can preinstall everything on it so 
then all I need to send the use is a flash drive, any thoughts as to is this

will be possible to run apache/mysql/rev application all within a u3 flash 
drive? 
 
Robert Mann 
President 
GP Racing LLC 
 
___ 
use-revolution mailing list 
use-revolution@lists.runrev.com 
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences: 
http://lists.runrev.com/mailman/listinfo/use-revolution
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: u3 rev application with mysql/apache

2006-07-31 Thread Sean Shao

Robert Mann wrote:
I am building a rev standalone that works in  conjunction with a mysql 
database, so If I bundle a install I need to also check first to see if 
apache is installed if not then install it with a mysql database, so was


umm.. If you don't mind, why do you need to use Apache? MySQL will work 
without it and Rev connects to it through it's database drivers. Also, will 
altSQLite work for you instead of MySQL?


_
Express yourself instantly with MSN Messenger! Download today - it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: u3 rev application with mysql/apache

2006-07-31 Thread Martin Baxter

Robert Mann wrote:

I am building a rev standalone that works in  conjunction with a mysql
database, so If I bundle a install I need to also check first to see if
apache is installed if not then install it with a mysql database, so was
thinking that maybe this new u3 drive I can preinstall everything on it so
then all I need to send the use is a flash drive, any thoughts as to is this
will be possible to run apache/mysql/rev application all within a u3 flash
drive?

Robert Mann
President
GP Racing LLC



Robert,

It's possible, though I don't think there is a proper U3 solution. I've
installed XAMPP (a portable Apache, MySQL, PHP bundle designed to
install on removable media) on a U3 drive and it is fine as long as
you are a teensy bit geeky.

For a seamless non-geek user experience though, I don't think this will
work well. You have to start and remember to stop it yourself, since it
doesn't integrate with the U3 stuff at all, but is just regular win
software that has been modified so it doesn't install anything on the
host computer (unlike U3 which does).

Don't know why you want to use a U3 drive particularly. IMO It could be
easier to use a normal thumb drive and pStart, which gives you a popup
menu of apps in the system tray (effectively a start menu for your
portable drive), similar to U3 but without the (IMHO) tacky stuff.

Martin Baxter


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


u3 rev application with mysql/apache

2006-07-31 Thread Robert Mann
I am building a rev standalone that works in  conjunction with a mysql
database, so If I bundle a install I need to also check first to see if
apache is installed if not then install it with a mysql database, so was
thinking that maybe this new u3 drive I can preinstall everything on it so
then all I need to send the use is a flash drive, any thoughts as to is this
will be possible to run apache/mysql/rev application all within a u3 flash
drive?

Robert Mann
President
GP Racing LLC

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


u3 rev application with mysql/apache

2006-07-31 Thread Robert Mann
I am building a rev standalone that works in  conjunction with a mysql
database, so If I bundle a install I need to also check first to see if
apache is installed if not then install it with a mysql database, so was
thinking that maybe this new u3 drive I can preinstall everything on it so
then all I need to send the use is a flash drive, any thoughts as to is this
will be possible to run apache/mysql/rev application all within a u3 flash
drive?

Robert Mann
President
GP Racing LLC

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution