Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> strange problems with Ora9idb and apache.
I've just installed a fresh database (9.0.1.1) on WIndows 2000 Proffessional
(sp2).
I've created 2 dads for my 2 development users which went fine. plsql mod is operational also.
I did an export of my old database (8.1.7) and imported this one on the 9.0.1.1 machine. The first thing I noticed was that in ALL my packages the following statements where changed.
SELECT COUNT(*) ..... on 8.1.7 became
SELECT COUNT .... on 9.0.1.1 thus giving all sorts of compilation errors.
another problem I'm having is with the following 2 procedures (for test purposes)
create or replace procedure test1 is
begin
htp.formopen('/pls/flitsond/test2','post'); htp.formhidden('p_id','10'); htp.formsubmit( 'p_submit','submit'); htp.formclose;
htp.htmlopen; htp.p('Pl/sql toolkit is working, id = '|| p_id); htp.htmlclose;
procedure 1 creates a simple form with only a submit button, when the button is pressed the test2 procedure must be executed.
htp.formopen('test2','post'); --> doesnt work htp.formopen('test2','get'); --> works fine htp.formopen('/flitsond/test2','post'); --> doesnt work htp.formopen('/flitsond/test2','get'); --> works fine htp.formopen('/pls/flitsond/test2','post'); --> doesnt work htp.formopen('/pls/flitsond/test2','get'); --> works fine
seems everything with the post method fails.
Anyone here has had the same problems and knows what has gone wrong?
regards
Martin
Received on Thu Nov 01 2001 - 02:33:45 CST
![]() |
![]() |