Slawek K
|
| Posted: 02/24/2002, 11:47 AM |
|
My problem is:
I add some commands to the event window (open) :
$var1="something";
print "adbcd" . $var1;
This is very simple code and when i run it on my server it's return me
"Internal Server Error".
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 02/25/2002, 12:50 AM |
|
If you remove this code does the generated app run smoothly ?
--
Alex
CodeCharge Developer
"Slawek K" <slawek@ampmedia.com.pl> wrote in message
news:a5bfvp$tsi$1@news.codecharge.com...
> My problem is:
>
> I add some commands to the event window (open) :
> $var1="something";
> print "adbcd" . $var1;
>
> This is very simple code and when i run it on my server it's return me
> "Internal Server Error".
>
>
>
>
|
|
|
 |
Slawek K
|
| Posted: 02/25/2002, 9:43 AM |
|
Yes !!
Użytkownik "Alexey Alexapolsky" <alexa@codecharge.com> napisał w wiadomości
news:a5ctrl$7vl$2@news.codecharge.com...
> If you remove this code does the generated app run smoothly ?
>
> --
> Alex
> CodeCharge Developer
>
>
> "Slawek K" <slawek@ampmedia.com.pl> wrote in message
>news:a5bfvp$tsi$1@news.codecharge.com...
> > My problem is:
> >
> > I add some commands to the event window (open) :
> > $var1="something";
> > print "adbcd" . $var1;
> >
> > This is very simple code and when i run it on my server it's return me
> > "Internal Server Error".
> >
> >
> >
> >
>
>
|
|
|
 |
Alexey Alexapolsky
|
| Posted: 02/26/2002, 4:30 AM |
|
Usually this happens when putting print statements
violates http protocol , e.g. you try to print something
before redirect is performed , while output must be empty
before this operation.
--
Alex
CodeCharge Developer
"Slawek K" <slawek@ampmedia.com.pl> wrote in message
news:a5dt3u$4jd$1@news.codecharge.com...
> Yes !!
>
> Użytkownik "Alexey Alexapolsky" <alexa@codecharge.com> napisał w
wiadomości
>news:a5ctrl$7vl$2@news.codecharge.com...
> > If you remove this code does the generated app run smoothly ?
> >
> > --
> > Alex
> > CodeCharge Developer
> >
> >
> > "Slawek K" <slawek@ampmedia.com.pl> wrote in message
> >news:a5bfvp$tsi$1@news.codecharge.com...
> > > My problem is:
> > >
> > > I add some commands to the event window (open) :
> > > $var1="something";
> > > print "adbcd" . $var1;
> > >
> > > This is very simple code and when i run it on my server it's return me
> > > "Internal Server Error".
> > >
> > >
> > >
> > >
> >
> >
>
>
|
|
|
 |