You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@turbine.apache.org by Robert Taylor <rj...@mediaone.net> on 2001/06/19 23:30:31 UTC

New installation

Greetings. I discovered Turbine today and installed it according to the 
Turbine How-To.  Things went well -- I was able to build and start-up the 
sample application and am able to access the servlet via web browser at 
http://localhost:8080/turbone/servlet/turbone/template/Index.vm (note, I 
changed the name from newapp to turbone at the outset of the installation 
and build).

Oh, I'm using WinME, jdk1.3.1, and MySQL 3.23.38.

One problem. When I try to execute the functions on the Index.vm page I get 
"Error".

I've tried to find an archive of Turbine mailing list messages to see if 
this has been covered but did not find one.

All help appreciated.


--
Robert Taylor
rjamestaylor@mediaone.net


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


Re: New installation

Posted by Jason van Zyl <jv...@apache.org>.
On 6/20/01 10:45 AM, "Robert Taylor" <rt...@mediaone.net> wrote:

> At 09:51 AM 6/20/2001 -0400, you wrote:
> 
>> Do you think you could run this and see what the os name is?
>> 
>> <project name="os" default="os" basedir=".">
>> 
>>   <target name="os">
>>     <echo message="OS Name: ${os.name}"/>
>>   </target>
>> 
>> </project>
>> 
>> If you find out what the OS name is than I will add that
>> to the target in the TDK that tries to determine what the
>> platform is than you can try it again.
> 
> Sure:
> 
> Buildfile: build.xml
> 
> os:
>     [echo] OS Name: Windows Me
> 
> BUILD SUCCESSFUL

Cool, much appreciated. I'll add that the search before
defaulting to unix.
 
> 
> 
>> --
>> 
>> jvz.
>> 
>> http://tambora.zenplex.org
>> http://jakarta.apache.org/turbine
>> http://jakarta.apache.org/velocity
>> http://jakarta.apache.org/alexandria
>> http://jakarta.apache.org/commons
> 
> Robert Taylor
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: turbine-user-help@jakarta.apache.org

-- 

jvz.

http://tambora.zenplex.org
http://jakarta.apache.org/turbine
http://jakarta.apache.org/velocity
http://jakarta.apache.org/alexandria
http://jakarta.apache.org/commons



---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


Re: New installation

Posted by Robert Taylor <rt...@mediaone.net>.
At 09:51 AM 6/20/2001 -0400, you wrote:

>Do you think you could run this and see what the os name is?
>
><project name="os" default="os" basedir=".">
>
>   <target name="os">
>     <echo message="OS Name: ${os.name}"/>
>   </target>
>
></project>
>
>If you find out what the OS name is than I will add that
>to the target in the TDK that tries to determine what the
>platform is than you can try it again.

Sure:

Buildfile: build.xml

os:
      [echo] OS Name: Windows Me

BUILD SUCCESSFUL



>--
>
>jvz.
>
>http://tambora.zenplex.org
>http://jakarta.apache.org/turbine
>http://jakarta.apache.org/velocity
>http://jakarta.apache.org/alexandria
>http://jakarta.apache.org/commons

Robert Taylor


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


Turbine + JSP

Posted by zahid <za...@hotmail.com>.
In templates/layouts/default.jsp I have include the TopNavigations how can i
include the different screens of jsps?
if someone know how to do it plz tell me

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


Re: New installation

Posted by Jason van Zyl <jv...@apache.org>.
On 6/20/01 12:02 AM, "Robert Taylor" <rj...@mediaone.net> wrote:

> At 08:50 PM 6/19/2001 -0700, you wrote:
> 
>>> One problem. When I try to execute the functions on the Index.vm page I get
>>> "Error".
>> 
>> Posting logs is helpful.
>> 
>> -jon
> 
> I now know where the logs are...but I've solved this problem. The problem
> was that the database generation failed. Ant, using build.xml, considered
> my WinME system as a UNIX environment and selected ".sh" as $ext. Thus, the
> auto-generation of  the newapp database didn't occur (Windows doesn't like
> to run UNIX scripts for some reason).
> 
> So, I changed database.manual.creation == true in build.properties,created
> the newapp database in MySQL manually, and voila! everything works.

Do you think you could run this and see what the os name is?

<project name="os" default="os" basedir=".">

  <target name="os">
    <echo message="OS Name: ${os.name}"/>
  </target>

</project>

If you find out what the OS name is than I will add that
to the target in the TDK that tries to determine what the
platform is than you can try it again.

> 
> It's great.
> 
> 
> --
> Robert Taylor
> rjamestaylor@mediaone.net
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: turbine-user-help@jakarta.apache.org

-- 

jvz.

http://tambora.zenplex.org
http://jakarta.apache.org/turbine
http://jakarta.apache.org/velocity
http://jakarta.apache.org/alexandria
http://jakarta.apache.org/commons



---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


Re: FW: New installation

Posted by Robert Taylor <rj...@mediaone.net>.
At 08:50 PM 6/19/2001 -0700, you wrote:

> > One problem. When I try to execute the functions on the Index.vm page I get
> > "Error".
>
>Posting logs is helpful.
>
>-jon

I now know where the logs are...but I've solved this problem. The problem 
was that the database generation failed. Ant, using build.xml, considered 
my WinME system as a UNIX environment and selected ".sh" as $ext. Thus, the 
auto-generation of  the newapp database didn't occur (Windows doesn't like 
to run UNIX scripts for some reason).

So, I changed database.manual.creation == true in build.properties,created 
the newapp database in MySQL manually, and voila! everything works.

It's great.


--
Robert Taylor
rjamestaylor@mediaone.net


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org


Re: New installation

Posted by Jon Stevens <jo...@latchkey.com>.
on 6/19/01 2:30 PM, "Robert Taylor" <rj...@mediaone.net> wrote:

> One problem. When I try to execute the functions on the Index.vm page I get
> "Error".

Posting logs is helpful.

> I've tried to find an archive of Turbine mailing list messages to see if
> this has been covered but did not find one.

The same place where you subscribed. :-)

<http://jakarta.apache.org/site/mail2.html>

-jon

-- 
"Open source is not available to commercial companies."
            -Steve Ballmer, CEO Microsoft
<http://www.suntimes.com/output/tech/cst-fin-micro01.html>


---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-user-help@jakarta.apache.org