phpweather-devel Mailing List for PHP Weather (Page 17)
Brought to you by:
iridium
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(2) |
Feb
(52) |
Mar
(79) |
Apr
(9) |
May
(28) |
Jun
(17) |
Jul
(25) |
Aug
(48) |
Sep
(18) |
Oct
(6) |
Nov
|
Dec
(8) |
2003 |
Jan
(26) |
Feb
(10) |
Mar
(2) |
Apr
(21) |
May
(23) |
Jun
(15) |
Jul
(15) |
Aug
(8) |
Sep
(16) |
Oct
(3) |
Nov
(4) |
Dec
|
2004 |
Jan
(35) |
Feb
(35) |
Mar
(9) |
Apr
(6) |
May
(1) |
Jun
(3) |
Jul
(3) |
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
(4) |
Feb
(6) |
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(2) |
Nov
|
Dec
|
2006 |
Jan
|
Feb
(5) |
Mar
(7) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Max H. <ma...@fl...> - 2002-05-21 20:35:38
|
> > elseif ($meters_per_second == 2 > > || $meters_per_second == 3 > > || $meters_per_second == 4) { > > $this->strings['meters_per_second'] = ' metre za sekundu'; > > } Can I suggest that you use switch {} statements instead? It might be simpler to see and understand... Max |
From: Martin G. <gim...@gi...> - 2002-05-21 16:54:20
|
Ondrej Jombik <ne...@po...> writes: > And what about this solution: There's a couple of problems, look below: =20 > function print_pretty_wind($wind) > { > extract($wind); >=20 > if (! empty($meters_per_second)) { > if ($meters_per_second - floor($meters_per_second) > 0) { > $this->strings['meters_per_second'] =3D ' metra za sekundu'; > } > elseif ($meters_per_second =3D=3D 1) { > $this->strings['meters_per_second'] =3D ' meter za sekundu'; > } The windspeed doesn't have to be a whole number of meters per hour: it's converted from a whole number of knots into meters/second and miles/hour so it will not be a whole number after the conversion. > elseif ($meters_per_second =3D=3D 2 > || $meters_per_second =3D=3D 3 > || $meters_per_second =3D=3D 4) { > $this->strings['meters_per_second'] =3D ' metre za sekundu'; > } What if the windspeed is more than 4 meters per second? Don't you miss that case? > } > if (! empty($miles_per_hour)) { > if ($miles_per_hour =3D=3D 1) { > $this->strings['miles_per_hour'] =3D ' m=ED=B5a za hodinu'; > } > elseif ($miles_per_hour =3D=3D 2 > || $miles_per_hour =3D=3D 3 > || $miles_per_hour =3D=3D 4) { > $this->strings['miles_per_hour'] =3D ' m=EDle za hodinu'; > } > } >=20 > return parent::print_pretty_wind($wind); Ahh - very clever! :-) At first I didn't understand what you were trying to do, but now I see it - pretty cool. There should probably be a little comment that explains it to others...=20 =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Ondrej J. <ne...@po...> - 2002-05-21 15:24:42
|
Maxim, 17:10:11 21. maj 2002 (utorok) Greetings. > > =09I hope you understand where is problem. Slovak traslations of > > words ``hour'' and ``minute'' depends on used number. In others > > fields is situation similar. > > =09Should I override pw_text methods or other solution should be used? > Yes, exactly. You would simply copy the function print_pretty_time > From pw_text.php to pw_text_sk.php and then you would be able to > change how the time is formatted. > [... ...] =09And what about this solution: function print_pretty_wind($wind) { extract($wind); if (! empty($meters_per_second)) { if ($meters_per_second - floor($meters_per_second) > 0) { $this->strings['meters_per_second'] =3D ' metra za sekundu'; } elseif ($meters_per_second =3D=3D 1) { $this->strings['meters_per_second'] =3D ' meter za sekundu'; } elseif ($meters_per_second =3D=3D 2 || $meters_per_second =3D=3D 3 || $meters_per_second =3D=3D 4) { $this->strings['meters_per_second'] =3D ' metre za sekundu'; } } if (! empty($miles_per_hour)) { if ($miles_per_hour =3D=3D 1) { $this->strings['miles_per_hour'] =3D ' m=ED=B5a za hodinu'; } elseif ($miles_per_hour =3D=3D 2 || $miles_per_hour =3D=3D 3 || $miles_per_hour =3D=3D 4) { $this->strings['miles_per_hour'] =3D ' m=EDle za hodinu'; } } return parent::print_pretty_wind($wind); } =09I tried it and it works. May it be? I think that parent:: calls are=20 nothing undesirable. =09=3DNepto=3D ___________________________________________________________________________= _ Ondrej 'Nepto' Jombik, http://www.nepto.sk/ nepto@atomicpile.s= k |
From: Martin G. <gim...@gi...> - 2002-05-20 18:57:27
|
Ondrej Jombik <ne...@po...> writes: > Maxim, 19:37:40 > 20. maj 2002 (pondelok) > Greetings. >=20 > I recognize to make Slovak translation of phpWeather, Great! > but I have a few problems. It seems to be impossible to make proper > translation of report only with existing translation array. >=20 > One example for all. I want to say when report was made in Slovak=20 > language. >=20 > Report bol urobeny 1 hodinu a 1 minutu dozadu. > Report bol urobeny 2 hodiny a 2 minuty dozadu. > Report bol urobeny 5 hodin a 5 minut dozadu. > Report bol urobeny 22 hodin a 22 minut dozadu. >=20 > I hope you understand where is problem. Slovak traslations of > words ``hour'' and ``minute'' depends on used number. In others > fields is situation similar. >=20 > Should I override pw_text methods or other solution should be used? Yes, exactly. You would simply copy the function print_pretty_time From=20pw_text.php to pw_text_sk.php and then you would be able to change how the time is formatted. You would probably have to change the $minutes =3D sprintf($this->strings['time_minutes'], $this->properties['mark_begin'], $minutes, $this->properties['mark_end']); into something like this: if ($minutes =3D=3D 1) { $minutes =3D sprintf('a %s1%s minutu dozadu', $this->properties['mark_begin'], $this->properties['mark_end']); } elseif ($minutes =3D=3D 2) { $minutes =3D sprintf('a %s2%s minuty dozadu', $this->properties['mark_begin'], $this->properties['mark_end']); } else { $minutes =3D sprintf('a %s%s%s minuty dozadu', $this->properties['mark_begin'], $minutes, $this->properties['mark_end']); } The same goes for the hours. =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Max H. <ma...@fl...> - 2002-05-20 18:49:12
|
Hi, > I recognize to make Slovak translation of phpWeather, but I have a > few problems. It seems to be impossible to make proper > translation of report > only with existing translation array. > > One example for all. I want to say when report was made in Slovak > language. > > Report bol urobeny 1 hodinu a 1 minutu dozadu. > Report bol urobeny 2 hodiny a 2 minuty dozadu. > Report bol urobeny 5 hodin a 5 minut dozadu. > Report bol urobeny 22 hodin a 22 minut dozadu. > > I hope you understand where is problem. Slovak traslations of words > ``hour'' and ``minute'' depends on used number. In others fields is > situation similar. > > Should I override pw_text methods or other solution should be used? Yes, just override pw_text in pw_text_xy (i don't know the code for slovak!) - we designed it to make it easy for translators to do this. Cheers, Max |
From: Ondrej J. <ne...@po...> - 2002-05-20 18:20:31
|
Maxim, 19:37:40 20. maj 2002 (pondelok) Greetings. I recognize to make Slovak translation of phpWeather, but I have a few problems. It seems to be impossible to make proper translation of report only with existing translation array. One example for all. I want to say when report was made in Slovak language. Report bol urobeny 1 hodinu a 1 minutu dozadu. Report bol urobeny 2 hodiny a 2 minuty dozadu. Report bol urobeny 5 hodin a 5 minut dozadu. Report bol urobeny 22 hodin a 22 minut dozadu. I hope you understand where is problem. Slovak traslations of words ``hour'' and ``minute'' depends on used number. In others fields is situation similar. Should I override pw_text methods or other solution should be used? =Nepto= ____________________________________________________________________________ Ondrej 'Nepto' Jombik, http://www.nepto.sk/ ne...@at... |
From: Martin G. <gim...@gi...> - 2002-05-20 17:43:51
|
Ondrej Jombik <ne...@po...> writes: > In INSTALL file is configurator.php script mentioned. I have > recent CVS version of phpWeather, but there is no file with that > name. I think that stuff was moved into config/ subdirectory. Thanks - you're right about it being moved to config/ - I've fixed INSTALL in CVS! =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Ondrej J. <ne...@po...> - 2002-05-20 15:57:39
|
Maxim, 11:31:31 20. maj 2002 (pondelok) Greetings. In INSTALL file is configurator.php script mentioned. I have recent CVS version of phpWeather, but there is no file with that name. I think that stuff was moved into config/ subdirectory. Regards, =Nepto= ____________________________________________________________________________ Ondrej 'Nepto' Jombik, perl -le '$_=1;(1x$_)!~/^(11+)\1+$/&&print while$_++' |
From: Max H. <ma...@fl...> - 2002-05-16 21:27:19
|
> > Combined windchill and heatindex into one 'feels like' - sorry > > translators. I think this is a better solution > > Yes, it's a good solution. I see that you have updated the various > translation with the English string - why don't we just subclass > pw_text_en instead? > > So pw_text_da should extend pw_text_en instead of pw_text. And the > Norwegian translation could even extend the Danish one - the Danish > strings are pretty similar to the Norwegian ones. No - I don't think that would be a good solution. It's logical the way things work at the moment, I think we should leave it alone. It's important to make sure that the translations are correct, and probably the best way of doing this is to have them separate. Max |
From: Martin G. <gim...@gi...> - 2002-05-16 20:21:50
|
Max Hammond <ir...@us...> writes: > Update of /cvsroot/phpweather/phpweather/output > In directory usw-pr-cvs1:/tmp/cvs-serv3089 >=20 > Modified Files: > pw_text.php pw_text_da.php pw_text_en.php pw_text_hu.php=20 > pw_text_no.php=20 > Log Message: > Combined windchill and heatindex into one 'feels like' - sorry > translators. I think this is a better solution Yes, it's a good solution. I see that you have updated the various translation with the English string - why don't we just subclass pw_text_en instead? So pw_text_da should extend pw_text_en instead of pw_text. And the Norwegian translation could even extend the Danish one - the Danish strings are pretty similar to the Norwegian ones. The downside of this is, that the PHP engine has to parse more files before it can do any work. But I'm not sure that this is something that we should be worried about - I've seen sites that included 5000 lines of PHP code in every page, so the extra ~200 lines in pw_text_en shouldn't make that big a difference. If noone objects, then I'll do the change. At the same time, then it would be cool to have a script that could check the translations for missing strings. =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Martin G. <gim...@gi...> - 2002-05-16 15:07:31
|
Ondrej Jombik <ne...@po...> writes: > My second request is about configuration file separation. I > think, that configuration should be stored in examaple in > config.inc.php file. The main advantage of this is that I need to > configure several arguments in phpweather.inc. When time to time > this file change (new features, bug fixes, ..), I need to rewrite > whole configuration options to make new version work. That problem is actually solved in the CVS-version of PHP Weather, version 2.x as it's called. You can download a snapshot here: http://phpweather.sourceforge.net/downloads/ Or you can use CVS to checkout a copy, instructions are here: http://sourceforge.net/cvs/?group_id=3D23245 Here the configuration is splitted out into two files: defaults-dist.php which contains the defaults distributed with PHP Weather and defaults.php which is loaded after defaults-dist.php so that you can override the defaults. Also, you can use the make_config.php script found in /config to generate the defaults.php file. =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Ondrej J. <ne...@po...> - 2002-05-16 11:31:29
|
Pauli, 13:29:46 16. maj 2002 (stvrtok) Greetings. > > I want to this feature to some my pages. I want also provide > > historical weather service. I glance at source codes, but phpWeather > > seems not to have support for this. Weather for specific stations > > seems to be always overwritten when new data are fetched. My request > > is for option to log also old metars with ability to display them in > > human readable form on website. > It would be quite easy to make the SQL-backends insert new METARs to > the table instead of updating the existing ones, but the DBA-backends > would require more work. But I'm sure that it can be done for those > backends as well. Yes I agree. > As for the system that should display the data, then I don't know how that > should be done. Perhaps the existing functions could default to return the > newest METAR, and then older METARs through an optional argument... Well, good idea. I don't remember exact API in phpWeather, but all functions retrieving records from database should have an optional argument date. If not present, behaviour will be the same as it is now. But I think that SQL structure change will be neccessary. Currently is primary key only the station. Combination station-datetime should be the primary key for proper work. My second request is about configuration file separation. I think, that configuration should be stored in examaple in config.inc.php file. The main advantage of this is that I need to configure several arguments in phpweather.inc. When time to time this file change (new features, bug fixes, ...), I need to rewrite whole configuration options to make new version work. Best regards, =Nepto= ____________________________________________________________________________ Ondrej 'Nepto' Jombik, Open Source software developer, http://www.platon.sk/ |
From: Martin G. <gim...@gi...> - 2002-05-15 15:47:34
|
"mac.com" <pe...@ma...> writes: > Thanks Martin, it was actually a typo. oops! sorry (wrong database > name) Great! I'm glad to hear that it wasn't an error in PHP Weather... =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: mac.com <pe...@ma...> - 2002-05-14 21:56:56
|
Thanks Martin, it was actually a typo. oops! sorry (wrong database name) Thanks again. G. |
From: Martin G. <gim...@gi...> - 2002-05-14 15:44:06
|
pe...@ma... writes: > hi there, I've install phpweather on my machine (MaosX runing mysql) > at home and everything works fine no problems. When I try to install > it onto a server where my website is hosted it gives me an error : >=20 > Warning: Supplied argument is not a valid MySQL result resource in / > path on the server /phpweather.inc on line 428 >=20 > line 428 is: if (mysql_num_rows($result)) { /* found station */ >=20 > any clues what the problem might be? Not really - apart from the normal problems - have you checked that you're using the correct username, password and hostname? Also, have you created the necessary table in the database? You could make a simple test-page to see if you can connect to the server, just something like this: mysql_connect('host', 'username', 'password'); mysql_query('SELECT 1+2'); =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: <pe...@ma...> - 2002-05-14 10:55:41
|
hi there, I've install phpweather on my machine (MaosX runing mysql) at home and everything works fine no problems. When I try to install it onto a server where my website is hosted it gives me an error : Warning: Supplied argument is not a valid MySQL result resource in / path on the server /phpweather.inc on line 428 line 428 is: if (mysql_num_rows($result)) { /* found station */ any clues what the problem might be? thanks very much. G. |
From: Max H. <ma...@fl...> - 2002-05-10 18:37:33
|
Hi, > -----Original Message----- > From: ky [mailto:kai...@ho...] > Sent: 10 May 2002 19:26 > To: ma...@fl... > Subject: a question > > > Hello: > I am making tests with phpweather2 and I would like to only put the report > of my city (LEMO) but I am not able to make it. > Can you make me some indication? It was missing from PHPWeather! I have added it to the CVS system now. If you'd like to add it to your database yourself, you need to run this kind of command in mysql: mysql> INSERT INTO stations SET icao="LEMO",name="Moron De La Frontera",cc="ES",Country="Spain"; Cheers, Max |
From: <no...@so...> - 2002-04-17 15:32:04
|
Feature Requests item #545190, was opened at 2002-04-17 14:31 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=377955&aid=545190&group_id=23245 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Logo Image Initial Comment: I have worked up a .jpg image quite a bit different than the logo you currently have. Sort of a more professional image - would like to know if I can send it to someone to check out. Email me - rga...@mo... ---------------------------------------------------------------------- >Comment By: Max Hammond (iridium) Date: 2002-04-17 15:31 Message: Logged In: YES user_id=81516 You can just attach the file to this tracker... ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=377955&aid=545190&group_id=23245 |
From: <no...@so...> - 2002-04-17 14:31:38
|
Feature Requests item #545190, was opened at 2002-04-17 07:31 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=377955&aid=545190&group_id=23245 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Logo Image Initial Comment: I have worked up a .jpg image quite a bit different than the logo you currently have. Sort of a more professional image - would like to know if I can send it to someone to check out. Email me - rga...@mo... ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=377955&aid=545190&group_id=23245 |
From: Donovan A. H. <do...@hu...> - 2002-04-17 02:23:26
|
Hello Richard, What syntax/code are you using to display the precipitation; I=92m = having a few issues getting the precipitation to display. Here is some of the code I'm using: include('./weather/locale_en.inc'); include('./weather/images.inc'); include('./weather/phpweather.inc'); $metar =3D get_metar('KVCT'); $decoded_metar=3Dprocess_metar($metar); $data =3D process_metar($metar); $temp_f =3D $data['temp_f']; $windmph =3D $data['wind_miles_per_hour']; $winddir =3D $data['wind_dir_text_short']; $dewf =3D $data['dew_f']; $humidity =3D $data['rel_humidity']; $visibility =3D $data['visibility_miles']; if (empty($data['precip_6h_in'])) {$precipin =3D 'None';} else {$precipin =3D $data['precip_6h_in'];} I'm displaying the current sky conditions in image format with: echo " '" . get_sky_image($decoded_metar) . "'"; Regards, Donovan=20 -----Original Message----- From: php...@li... [mailto:php...@li...] On Behalf Of Richard Garland Sent: Tuesday, April 16, 2002 4:32 PM To: 'php...@gi...' Subject: Display issue Everything is working fine on my install with the exception of the cloud layer. When the report for this area is CLR, no information is displayed, but all others are. I can see where the problem is in the scripting, but I do not know what to change to correct this. I am using version 1.60. =A0 Thanks, RG |
From: Richard G. <rga...@mo...> - 2002-04-16 21:30:20
|
Everything is working fine on my install with the exception of the cloud layer. When the report for this area is CLR, no information is displayed, but all others are. I can see where the problem is in the scripting, but I do not know what to change to correct this. I am using version 1.60. Thanks, RG |
From: Martin G. <gim...@gi...> - 2002-04-09 23:28:56
|
Martin Geisler <gim...@gi...> writes: > It actually boils down to this: can you use regular expression in > Javascript? It does! I've just modified the page so that the input is evaluated on-the-fly - try it yourself: http://phpweather.sourceforge.net/phpweather/config/index.php For example: the icao entry field will only accept a string of four characters and the error-message is updated as you type. I've tested it in Mozilla 0.9.9 - let me know how it goes with other browsers. =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Martin G. <gim...@gi...> - 2002-04-09 20:00:06
|
"Max Hammond" <ma...@fl...> writes: > Hi all, >=20 > I've been having a discussion with Martin about the new configurator > that he wrote (only in CVS and the tarballs), And also here: http://phpweather.sourceforge.net/phpweather/config/ >> And now that we're dreaming... it would be extra cool if the form >> could be checked by some Javascript at the client - it would be >> easy to make the pw_validator_range class generate the right >> Javascript, but I don't know about the pw_validator_ereg class. It actually boils down to this: can you use regular expression in Javascript? =2D-=20 Martin Geisler My GnuPG Key: 0xF7F6B57B See my homepage at http://www.gimpster.com/ for: PHP Weather =3D> Shows the current weather on your webpage. PHP Shell =3D> A telnet-connection (almost :-) in a PHP page. |
From: Max H. <ma...@fl...> - 2002-04-09 18:55:30
|
Hi all, I've been having a discussion with Martin about the new configurator that he wrote (only in CVS and the tarballs), but we think it would be better here, so here we go... > >> I've thought about hiding some of the options instead, so that you > >> would click on a group to expand it, and then click on it again if > >> you don't want to see it. If we splitted the options into more > >> groups, then I think it would remove some of the clutter. > > > > this doesn't need to be done by submitting a form. This is the kind > > of thing that javascript is great for. > > Oh, yes that would be super! I really don't know anything except the > most basic stuff about Java - would you be able to program such a > tree-thing in Java? (Perhaps we should continue the discussion on > phpweather-devel - there might just be a great Java-hacker lurking > there...) I could probably do it, but I'm very much a javascript hacker rather than any kind of real programmer :) All layers and visibility and junk. So here we are on phpweather-devel... The basic idea is that on the configurator, it would be best if the options for configuring a database were only visible if a database is chosen. At the moment, there's a kind of solution where the form is submitted and php sorts it all out server-side, but it's a mess. javascript is the real way to do this. any volunteers? > And now that we're dreaming... it would be extra cool if the form > could be checked by some Javascript at the client - it would be easy > to make the pw_validator_range class generate the right Javascript, > but I don't know about the pw_validator_ereg class. Max |
From: Max H. <ma...@fl...> - 2002-04-06 18:20:45
|
Hi all, You must make sure that there is no blank space of any kind (spaces or line returns or anything) at either end of the defaults.php file - I'm guessing you've got a blank line at the end. The error is because it's trying to send a HTTP header, which it can only do before any information has been send. When the defaults file is include()'d, it sends the blank line. Max -- A man on a mission is far different from a drone on a deadline. * Rheta Grimsley Johnson > -----Original Message----- > From: php...@li... > [mailto:php...@li...]On Behalf Of David > Kjellquist > Sent: 06 April 2002 17:05 > To: php...@li... > Subject: Header Warning message > > > Max et al; > I have downloaded april 6 CVS snapshot to set up on my > web page. I have setup the defaults and saved in > defaults.php. When I run the index.php I am getting an > on-screen warning telling me that header data (line > 99) can not be added because ouput has already been > started in defaults.php (line 52). > > I didn't this warning from previous snapshots? > > _______________________________________________ > PHPWeather-devel mailing list > PHP...@li... > https://lists.sourceforge.net/lists/listinfo/phpweather-devel |