PEAK XOOPS - Error message... in englishin japanese

Error message...

  • You cannot open a new topic into this forum
  • Guests cannot post into this forum
Previous post - Next post | Parent - Children.1 | Posted on 2004/7/21 0:25
bluwu  企霹始   Posts: 9
When I am logged in as the administrator and i add an event i get the following error message...

---error message---
"Warning: Cannot modify header information - headers already sent in /home/virtual/site5/fst/var/www/html/events/modules/piCal/piCal.php on line 2134"
----end error message----
Votes:0 Average:0.00
Previous post - Next post | Parent - Children.1 | Posted on 2004/7/21 18:50
GIJOE  黎扦烦菱   Posts: 4110
hi bluwu.
It's not an issue of piCal.

Perhaps another modules echoes blank line or notices,warnings etc. before piCal's redirection.


Votes:1 Average:10.00
Previous post - Next post | Parent - Children.1 | Posted on 2004/7/23 21:21
jsg  企霹始   Posts: 3
I get exactly the same error message. I'm using version 0.6 on Xoops 2.0.7. Help! Thanks.
Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1
Previous post - Next post | Parent - Children.1 | Posted on 2004/7/26 6:51
GIJOE  黎扦烦菱   Posts: 4110
Quote:
It's not an issue of piCal.

Perhaps another modules echoes blank line or notices,warnings etc. before piCal's redirection.
You have to check another modules at first.
Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1
Previous post - Next post | Parent - Children.1 .2 | Posted on 2004/7/29 12:30
bluwu  企霹始   Posts: 9
Well I turned off and unstalled all of the modules except piCal and System Admin.... i still get the same error.

It's wierd.

Does it happen to you?

Basically, I turned on the debug mode. Without it I get a blank screen every time. I have a clean install of XOOPS 2.0.7 and only the piCal mod installed.

Please help.
Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1.1
Previous post - Next post | Parent - Children.1 | Posted on 2004/7/29 15:25
jsg  企霹始   Posts: 3
Thanks for doing the testing, bluwu. I couldn't, because my site is live and public.

I'm afraid I've given up. For now, I'm using tinyevent. If I need the extra features, maybe I'll try Agenda-X.

No blame, but as an old friend of mine used to say, it's very, very good if it works.
Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1.1.1
Previous post - Next post | Parent - Children.1 | Posted on 2004/7/30 6:42
bluwu  企霹始   Posts: 9
No problem... I'm just wondering if piCal behaves the same fort the Sarge and if it works what version of XOOPS is in use.

Anyway, how well does Tiny Event work? I'm looking for something that will all me to add people resources like speakers and camera men. I would like them to login and be able to see what their schedules look like.

I would also like to install many calendars not just one version of piCal... or that piCal will have the ability to make group type calendars, shared, etc. You see where i'm going...

if you know of anything let me know
Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1.1.1.1
Previous post - Next post | Parent - Children.1 | Posted on 2004/7/30 19:04
jsg  企霹始   Posts: 3
Tinyevent is truly tiny: a list of events, and er, that's it. If you want something more sophisticated, and piCal doesn't work for you, probably your only option is Agenda-X.
Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1.1.1.1.1
Previous post - Next post | Parent - No child | Posted on 2004/7/31 7:09
bluwu  企霹始   Posts: 9
Kewl I'll try Agenda until there is resolution with piCal or just keep using it if its better for what i need.
Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1.2
Previous post - Next post | Parent - Children.1 | Posted on 2004/7/31 17:37
GIJOE  黎扦烦菱   Posts: 4110
hi bluwu.
Quote:
Well I turned off and unstalled all of the modules except piCal and System Admin.... i still get the same error.

It's wierd.

Does it happen to you?

Basically, I turned on the debug mode. Without it I get a blank screen every time. I have a clean install of XOOPS 2.0.7 and only the piCal mod installed.

Please help.
The warning "Header already sent" is often caused by coding mistakes like
<?php

?>

Such blank line will be outputted.
Once some output is occured, any header() can't be send.
And I can't guess which file has such a wrong code.
(I guess some language files has such a wrong code)

Such a wrong code might harm somewhere other than piCal.

Thus I reccomend you to check such a wrong code by youself at first.

It's easy to use piCal with such a wrong code.
All you have to do is modifying the way to redirect only.

eg)
line 2134 in piCal.php
		 Header( "Location: $this->connection://$HTTP_HOST$PHP_SELF?smode={$_POST['last_smode']}&caldate=".date('Y-n-j',$start) ) ;
		redirect_header( "$PHP_SELF?smode={$_POST['last_smode']}&caldate=".date('Y-n-j',$start) , 0 ) ;

And I'll never recommend Agenda-X to my friends.
It has full of security holes. (CSRF, SQL Injection, XSS and so on)
Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1.2.1
Previous post - Next post | Parent - Children.1 | Posted on 2004/8/1 13:50
bluwu  企霹始   Posts: 9
Hey, thanks Joe... now that is useful. I'll try it.

Agenda-X is really that crappy eh? It looked cool but SQL injection is pretty serious stuff. I'll bang it up and see what I can get into.

Votes:0 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1.2.1.1
Previous post - Next post | Parent - Children.1 | Posted on 2004/8/13 16:58
GIJOE  黎扦烦菱   Posts: 4110
hi bluwu.

I don't want to talk about Agenda-X.
It is fact that we reported the security holes into dev.xoops.org on this March.
He didnot patch any more.

I don't criticize some developpers makes security hole.
But, once it is reported by someone, they must check and repair it with sincerity.

When sourceforge was cracked by Agenda-X's hole, I made a patch for the serious vulnerablity.
But he ignored the patch, and he blamed me "This is a plot".
His attitude was a thing not too believed easily for me.

Although I don't blame wjue's lack of skill, I don't like his insincerity.


p.s. The SQL injection will be a serious hole too if you use MySQL >= 4.0 as you know.
You are easily stolen your hashed password from crackers via Agenda-X.
And now, plain password can be calicurated from hashed password in one hour.

So, I have a plan to make a module for protecting from attacks of "SQL Injection".
This module will be useful especially for Agenda-X's users.
Votes:1 Average:0.00

question Re: Error message...

msg# 1.1.1.1.1.2.1.1.1
Previous post - Next post | Parent - No child | Posted on 2004/8/17 0:06
bluwu  企霹始   Posts: 9
Cool... i am using piCal now and the users are really happy with it. I'll be on the lookout for your updates. I added in the option to make people a speaker. I like it so piCal it is.

Anyway, I appreciate your principles and I hope to see piCal in use everywhere. I can't wait for piCal version 99!

bluwu
Votes:0 Average:0.00

  Advanced search


Login
Username or e-mail:

Password:

Remember Me

Lost Password?

Register now!