Thread: CVS: phpweather INSTALL,1.5,1.6 README,1.12,1.13
Brought to you by:
iridium
From: Max H. <ir...@us...> - 2002-03-27 10:59:36
|
Update of /cvsroot/phpweather/phpweather In directory usw-pr-cvs1:/tmp/cvs-serv7233 Modified Files: INSTALL README Log Message: Updated Index: INSTALL =================================================================== RCS file: /cvsroot/phpweather/phpweather/INSTALL,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- INSTALL 8 Jul 2001 19:43:29 -0000 1.5 +++ INSTALL 27 Mar 2002 10:59:33 -0000 1.6 @@ -1,5 +1,5 @@ Installation instructions for PHP Weather #VERSION# #DATE# -Copyright (C) 2000, 2001 Martin Geisler <gim...@gi...> +Copyright (C) 2000-2002 Martin Geisler <gim...@gi...> Licensed under the GNU GPL. See the file COPYING for details. @@ -7,19 +7,23 @@ ----------------- You can always get the latest version from - http://phpweather.sourceforge.net + http://www.phpweather.net Installation ------------ -To try out PHP Weather to see how it works, just untar the tarball -into a directory on your webserver, and load the page index.php into -your favourite browser. +To try out PHP Weather to see that it works, just untar the tarball +into a directory on your webserver, and load the page index.php in your +favorite browser. + +There will be a drop-down list where you can select a city and a +language, so have the weather for that city displayed in the chosen +language. -For detailed and current information about using PHP Weather please -see the webpage at this address: +For detailed information about using PHP Weather please +see the PHP Weather webpages at this address: - http://phpweather.sourceforge.net + http://www.phpweather.net I've chosen to put the documentation there, because it's easier for me to update. It also gives you a chance to see all the features of PHP @@ -28,42 +32,30 @@ Database Setup -------------- -To use a MySQL database, you should create a table with the following -SQL-statement: +You should use the script configurator.php to create the database tables +that you need. Two tables are configured, one that holds METARs, and one +that holds a database of station names. -CREATE TABLE metars ( - metar VARCHAR(255) NOT NULL, - timestamp TIMESTAMP(14), - station VARCHAR(4) NOT NULL, - PRIMARY KEY (station), - UNIQUE station (station) -); - -If you're using a PostgreSQL database, you should use this statement -instead: - -CREATE TABLE metars ( - metar VARCHAR(255) NOT NULL, - timestamp TIMESTAMP, - station VARCHAR(4) PRIMARY KEY NOT NULL -); +The configurator currently asks you what you'd like to call a table of +countries - this table is not created. Don't panic. Bugs? ----- -If you find a bug or miss something in PHP Weather, please don't -hesitate to mail to this address: - - <php...@li...> - -The address is a mailinglist for reporting bugs and general -discussions about PHP Weather. To join the list, please mail -to this page: +If you find a bug or have a feature request for PHP Weather, please +don't hesitate to report it at http://sourceforge.net/projects/phpweather/ +We have a mailing list for general discussions about PHP Weather, +but before you can send mails to the list, you have to subscribe +to it - go to this page to subscribe: http://lists.sourceforge.net/lists/listinfo/phpweather-devel -Please remember to include the raw METAR you're having problems with -if you send me a message. Without it I can't really help. - +If PHP Weather is decoding a METAR incorrectly, please remember to +include that METAR you're having problems with when you send a +message or submit a bug. Without it, we can't really help you. + +This version of PHP Weather only works with PHP4. The PHP Weather +1.x series work with PHP3, and are available from the project +page on sourceforge. -Enjoy the good weather! - Martin Geisler <gim...@gi...> +Enjoy! - Martin Geisler <gim...@gi...> Index: README =================================================================== RCS file: /cvsroot/phpweather/phpweather/README,v retrieving revision 1.12 retrieving revision 1.13 diff -u -3 -r1.12 -r1.13 --- README 8 Jul 2001 18:47:53 -0000 1.12 +++ README 27 Mar 2002 10:59:33 -0000 1.13 @@ -1,5 +1,5 @@ README for PHP Weather #VERSION# #DATE# -Copyright (C) 2000, 2001 Martin Geisler <gim...@gi...> +Copyright (C) 2000-2002 Martin Geisler <gim...@gi...> Licensed under the GNU GPL. See the file COPYING for details. @@ -32,23 +32,23 @@ you can add a translation. o Can be used with WAP-phones. Example-page is included. -Please see http://phpweather.sourceforge.net/ for full details and +Please see http://www.phpweather.net/ for full details and examples. How to contact me ----------------- -If you encounter problems with PHP Weather, or just want to suggest a -new feature, then please don't hesitate to contact me at this address: - - <php...@li...>. - -The address is a mailinglist, please go to this address to subscribe: +If you find a bug or have a feature request for PHP Weather, please +don't hesitate to report it at http://sourceforge.net/projects/phpweather/ +We have a mailing list for general discussions about PHP Weather, +but before you can send mails to the list, you have to subscribe +to it - go to this page to subscribe: http://lists.sourceforge.net/lists/listinfo/phpweather-devel -Please remember to include the raw METAR which you have problems with, -if you send me a message. Without it I can't really help. +If PHP Weather is decoding a METAR incorrectly, please remember to +include that METAR you're having problems with when you send a +message or submit a bug. Without it, we can't really help you. You can always get the newest version at |