Help for Fivewin Web

Help for Fivewin Web

Postby Silvio.Falconi » Thu Mar 30, 2017 3:18 pm

I wish compile a test with Fweb using xMate.
I must create a file env to compile a test (fweb) with xmate
I have a Main folder called "Work" and then I have the other subfolders as you can see here :

----work
-------bcc7
-------bcc582
-------fwh
-------xharbour
-------harbour
-------xmate
-------PellesC
-------Fweb
-------Errori ( where I have my tests)
-------Prg ( where I have my application )
-------LIB32 ( where I have my classes and functions)

Someone can help me please ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6768
Joined: Thu Oct 18, 2012 7:17 pm

Re: Help for Fivewin Web

Postby Antonio Linares » Thu Mar 30, 2017 4:08 pm

Silvio,

If you are using a single PRG then you can use FiveWeb\samples\build.bat to build the FiveWeb EXE (CGI app)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: Help for Fivewin Web

Postby Silvio.Falconi » Thu Mar 30, 2017 4:17 pm

yes of corse for the test it is ok
I saw there is testbrowse but it not have a complete manage of dbf (edit,modify,search..)
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6768
Joined: Thu Oct 18, 2012 7:17 pm

Re: Help for Fivewin Web

Postby Silvio.Falconi » Thu Mar 30, 2017 4:30 pm

I try with


C:\Work\Fweb>win-make c:\work\fweb\samples\tutor01.prg

win-make: Nothing to be done for `c:\work\fweb\samples\tutor01.prg'.

C:\Work\Fweb>

any solution ?
I modify the Makefile_win
Code: Select all  Expand view
# FiveWeb makefile

all : .\lib\fiveweb.lib

PRG_OBJS = ./obj/fiveweb.obj \
        ./obj/bootstra.obj \
    ./obj/browse.obj \
    ./obj/button.obj \
    ./obj/checkbox.obj \
    ./obj/combobox.obj \
    ./obj/control.obj \
    ./obj/datepick.obj \
    ./obj/dialog.obj \
    ./obj/errsys.obj \
    ./obj/filename.obj \
    ./obj/folder.obj \
    ./obj/get.obj \
    ./obj/harbour.obj \
    ./obj/image.obj \
    ./obj/menu.obj \
    ./obj/menuitem.obj \
    ./obj/pdmenu.obj \
    ./obj/progbar.obj \
    ./obj/radio.obj \
    ./obj/toolbar.obj \
    ./obj/valblank.obj \
    ./obj/say.obj \
    ./obj/window.obj

.\lib\fiveweb.lib : $(PRG_OBJS)

./obj/%.obj : ./obj/%.c
    c:\work\bcc7\bin\bcc32 -c -I./../harbour/include -o$@ $<
    c:\work\bcc7\bin\tlib lib\fiveweb -+ obj\$*.obj

./obj/%.c : ./source/function/%.prg
    .\..\harbour\bin\harbour $< -o.\$@ -n -I.\..\harbour\include -I.\include

./obj/%.c : ./source/classes/%.prg
    .\..\harbour\bin\harbour $< -o.\$@ -n -I.\..\harbour\include -I.\include

 


perhaps there is somethink not run ok ...
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6768
Joined: Thu Oct 18, 2012 7:17 pm

Re: Help for Fivewin Web

Postby Silvio.Falconi » Thu Mar 30, 2017 4:36 pm

for this problem I prefer use xmate
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6768
Joined: Thu Oct 18, 2012 7:17 pm

Re: Help for Fivewin Web

Postby Silvio.Falconi » Thu Mar 30, 2017 5:18 pm

Ok I compiled tutor01.exe
I insert it on www.bpascal.it/cgi-bin/tutor01.exe

but give me an error

I contacted p my provider and he sad me my server support cgi ... How I must make to run it I must set any parameter on my server ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6768
Joined: Thu Oct 18, 2012 7:17 pm

Re: Help for Fivewin Web

Postby Silvio.Falconi » Thu Mar 30, 2017 5:33 pm

I tried with xampp
and run ok

Image
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6768
Joined: Thu Oct 18, 2012 7:17 pm

Re: Help for Fivewin Web

Postby Silvio.Falconi » Thu Mar 30, 2017 6:56 pm

Antonio,
I need a small sample have a dbf with search
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
User avatar
Silvio.Falconi
 
Posts: 6768
Joined: Thu Oct 18, 2012 7:17 pm

Re: Help for Fivewin Web

Postby Antonio Linares » Thu Mar 30, 2017 10:14 pm

Please review samples\fivegen.prg and testbrow.prg
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41314
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: Google [Bot] and 25 guests