Page 7 of 8

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Tue Dec 04, 2012 12:21 pm
by Antonio Linares
Something more:

When we are going to perform an action from the client side, we need to decide if it is an action that we can solve locally (using javascript and using FiveWeb javascript functions) or if we need to request it from the server (database management, new requests, etc.)

The server app can ve invoked many times, and providing a parameter to it, then we can decide what to do from the same server app:

function Main( cWhatToDo )

so when we call our app, we do: //server/myapp?TheActionToDo

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Tue Dec 04, 2012 5:59 pm
by FiveWiDi
Antonio Linares wrote:Something more:

When we are going to perform an action from the client side, we need to decide if it is an action that we can solve locally (using javascript and using FiveWeb javascript functions) or if we need to request it from the server (database management, new requests, etc.)

The server app can ve invoked many times, and providing a parameter to it, then we can decide what to do from the same server app:

function Main( cWhatToDo )

so when we call our app, we do: //server/myapp?TheActionToDo


I like it.
"No me lo puedo creer! Vuelvo a ser un níño con zapatos nuevos!!"

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Wed Dec 05, 2012 10:07 am
by Antonio Linares
Folders support from the FiveWeb forms designer:

http://www.fivetechsoft.net/cgi-bin/fiveform

Image

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Wed Dec 05, 2012 12:56 pm
by Antonio Linares
Added center vertically and horizontally, and delete of controls:

http://www.fivetechsoft.net/cgi-bin/fiveform

Image

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Wed Dec 05, 2012 8:16 pm
by Gale FORd
I could not get the examples to run on our IIS server. I finally downloaded and installed Apache xampp. Now I have the examples running except the menus do not work properly.
They run along the left side of the browser window, not across the top like your examples.
Any ideas what I can do the get the menus to work ok?

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Thu Dec 06, 2012 4:21 am
by Antonio Linares
Gale,

Please try it with Google Chrome :-)

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Thu Dec 06, 2012 5:03 am
by Gale FORd
I can try that but it looks ok when I run the sample links you provide. I tried it with Firefox and IE. It just doesn't work on web server.

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Thu Dec 06, 2012 11:51 am
by Antonio Linares

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Thu Dec 06, 2012 2:14 pm
by Gale FORd
I have already been through that page of information and could not get it to work on our IIS server.
Thanks

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Fri Dec 07, 2012 10:46 am
by Antonio Linares
Preferences support on FiveForm:

http://www.fivetechsoft.net/cgi-bin/fiveform

Image

FiveTech's FiveWeb (free up to version 1.0) CGI-FastCGI

PostPosted: Sat Dec 08, 2012 10:09 am
by FiveWiDi
Hola a todos,

A ver quien me puede resolver esta duda. La pongo aquí porque creo que algunos se encontraran con lo mismo y está relacionado con el uso de FiveWeb (de esta version al menos).
Si contrato un servicio de Hosting que me permite FastCGI, ¿Debo entender que tambien soportará CGI?

Perdonen mi ignorancia, en esto estoy "en pañales".
Si ya se, la empresa de hosting me lo responderá, pero seguro que ustedes seran más rápidos. :)

Gracias.

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Tue Dec 18, 2012 10:07 am
by cdmmaui
Dear Antonio,

How is FiveWeb coming along? When do you expect to release version 1.0? Can you provide a functions list? I would like to convert a small FWH application to FiveWeb to insure all functions are working properly before I convert a much larger application.

Sincerely,

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Tue Dec 18, 2012 3:08 pm
by Antonio Linares
Carlos,

El servicio de hosting tiene que proporcionar soporte de CGIs, y cambio de permisos de ficheros (a ejecución).

A mi personalmente lo que aprecio mucho es que me permitan conexión por SSH, lo que se traduce en que puedes controlar el ordenador remotamente

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Tue Dec 18, 2012 3:14 pm
by Antonio Linares
Darrell,

Its moving along nicely and also step by step...

I would like to comment that you can not think on a full 100% portability. Keep in mind that a desktop app is going to be converted to a client/server model and that means some changes.

We will upgrade the wiki for FIveWeb as we move along and define and implement more and more the required functionalities.

Re: FiveTech's FiveWeb (free up to version 1.0)

PostPosted: Wed Dec 26, 2012 1:51 pm
by Antonio Linares
Added Class TImage to support images:

http://www.fivetechsoft.net/cgi-bin/testimg

testimg.prg
Code: Select all  Expand view
include "FiveWeb.ch"

function Main()

   local oDlg, oImg

   DEFINE DIALOG oDlg TITLE "Using images"

   @ 10, 10 IMAGE oImg OF oDlg SIZE 100, 80

   ACTIVATE DIALOG oDlg

return nil


Image