You can subscribe to this list here.
2001 |
Jan
|
Feb
(1) |
Mar
(265) |
Apr
(166) |
May
(25) |
Jun
(17) |
Jul
(20) |
Aug
(47) |
Sep
(6) |
Oct
(14) |
Nov
(66) |
Dec
(64) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(109) |
Feb
(64) |
Mar
(34) |
Apr
(23) |
May
(64) |
Jun
(9) |
Jul
(13) |
Aug
(6) |
Sep
(33) |
Oct
(272) |
Nov
(67) |
Dec
(75) |
2003 |
Jan
(264) |
Feb
(244) |
Mar
(171) |
Apr
(119) |
May
(54) |
Jun
(93) |
Jul
(51) |
Aug
(48) |
Sep
(14) |
Oct
(49) |
Nov
(47) |
Dec
(15) |
2004 |
Jan
(13) |
Feb
(27) |
Mar
(18) |
Apr
(44) |
May
(35) |
Jun
(24) |
Jul
(39) |
Aug
(142) |
Sep
(35) |
Oct
(34) |
Nov
(49) |
Dec
(24) |
2005 |
Jan
(60) |
Feb
(71) |
Mar
(19) |
Apr
(27) |
May
(68) |
Jun
(4) |
Jul
(30) |
Aug
(10) |
Sep
(23) |
Oct
(24) |
Nov
(13) |
Dec
(6) |
2006 |
Jan
(4) |
Feb
(46) |
Mar
(64) |
Apr
(18) |
May
(16) |
Jun
(37) |
Jul
(7) |
Aug
(19) |
Sep
(9) |
Oct
(8) |
Nov
(3) |
Dec
(23) |
2007 |
Jan
(25) |
Feb
(21) |
Mar
(32) |
Apr
(36) |
May
(12) |
Jun
(1) |
Jul
(7) |
Aug
(15) |
Sep
(13) |
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
(3) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
|
Jun
(1) |
Jul
(2) |
Aug
(7) |
Sep
|
Oct
(5) |
Nov
(1) |
Dec
|
2009 |
Jan
(7) |
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Adam M. <ad...@tu...> - 2001-09-20 16:57:33
|
by: Anonymous on: Wednesday 19 September @ 06:09:36 Sorry about that, this problem came from incompleted upload file that I did this morning (GMT+7) and because of bad internet connection. Now it ready for you to test, have fun :) I have to reupload my scripts because I found small bug inside new module structure of phpwebsite in following section if($admintest == $security_hash) switch($op) { case this_admin_op: this_admin_op(); break; //DO NOT INCLUDE A DEFAULT CASE!! If you do //it will not continue on to the user switch. } switch($op) { case this_user_op: this_user_op(); break; case default: default_operation; break; } if user login as admin and do admin function after load admin function by '$op' in the admin switch block, this '$op' will go to 'default' section of the user switch. To avoid this we have to add one flag for check '$op' The new code will look like $adminflag = 0; if($admintest == $security_hash) switch($op) { case this_admin_op: $adminflag = 1; this_admin_op(); break; //DO NOT INCLUDE A DEFAULT CASE!! If you do //it will not continue on to the user switch. } switch($op) { case this_user_op: this_user_op(); break; case default: if (!$adminflag) { default_operation; } break; } Just for your information. badguy by: Adam on: Thursday 20 September @ 12:42:45 (User Info) http://tux.appstate.edu/~adam Thanks for the post, Anon. I have changed the core modules to accomodate for this bug. I've also changed the module documentation to reflect this. This is what I did: //USER SWITCH switch($op) { default: if(!$op) default_op(); break; } Thanks again Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: Jeremy A. <ja...@tu...> - 2001-09-11 05:13:40
|
Just wanted to let everyone know we just released 0.8.0-RC2. You can download it on our website. -- Jeremy Agee phpWebSite Development Team (http://phpwebsite.appstate.edu) Appalachian State University phpEasyAdmin (http://easyadmin.sourceforge.net) |
From: J. W. <jwa...@ho...> - 2001-09-10 18:13:15
|
Howdy! I'd like to get involved with development/testing. Can someone point me to the information I need to do so? I'd like to find out who's leading which projects. I'd also like to know to whom I should submit bugs/fixes. Thanks, Jeff _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp |
From: Guy B. <guy...@is...> - 2001-09-03 19:47:59
|
Alain Fontaine (al...@va...) on 03/09/2001 at 20:50 wrote: > I won't be able to work on the french version anytime soon now, I hope > someone can help out :) I just posted a note saying I'm willing to take over this translation. BTW, fr.pp is out of sync with en.pp and I have a hard time rolling back to the en.pp version it's based on :( There seems to be typos in the en.pp itself : interesting and wanted to send it to you.]] announcement]] responsible for its content]] off polls!!!]] not sure these fragments should be on a starting new line. -- bug |
From: Alain F. <al...@va...> - 2001-09-03 18:50:59
|
Hi, I won't be able to work on the french version anytime soon now, I hope someone can help out :) -----Message d'origine----- De : php...@li... [mailto:php...@li...]De la part de Adam Morton Envoyé : vendredi 31 août 2001 21:23 À : php...@li... Objet : [Phpwebsite-developers] A word to the translators Hello everyone. I just wanted to drop a line and remind the translators to be very careful in constructing their respective *.pp files. There has been several bugs submitted that are caused by problems in specific language versions of phpwebsite. When doing your translations please make sure you follow these guidelines: 1. If you have a single or double quote in your translation make sure it has been properly escaped. 2. Make sure you pay attention to the case of your letters as the shell script used to run the translation IS case sensitive. 3. TEST! You can export a CVS copy and run the makedisto script to test your particular language. (ie: "makedistro en" will make an english version only, "makedistro fr" will make a french version only, etc.) We all appreciate the hard work you have done so far in helping us get so many languages out there and I hope you will continue to stick with it through the duration of this project. Take care, Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... _______________________________________________ Phpwebsite-developers mailing list Php...@li... http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Jeremy A. <ja...@tu...> - 2001-09-02 06:09:53
|
This is just a little administrative info to let you know what=92s going = on=20 down the road. We now have both the themes - managed by: deeze and=20 plugins/mods - managed by: esritter on there own at Sourceforge. This is= =20 what will be happening for our cvs(res1.stddev.appstate.edu). We will be=20 mirroring the themes and mods cvs off of SF on the res1 server. This will= =20 be from the nightly cvs tarball from your cvs files. We will also strip o= ut=20 all non-core mods and almost all themes from the core. If you want to wor= k=20 on one of these contact the project admins so they can add you to the SF=20 project. We will also place a big emphasis on going to the mods and them= es=20 page to finish out the installation of 0.8. We will have info in the set= up=20 or upgrade section and the standard page you will start with after=20 installation. --=20 Jeremy Agee phpWebSite Development Team (http://phpwebsite.appstate.edu) Appalachian State University phpEasyAdmin (http://easyadmin.sourceforge.net) |
From: Adam M. <ad...@tu...> - 2001-08-31 19:29:33
|
Hello everyone. I just wanted to drop a line and remind the translators to be very careful in constructing their respective *.pp files. There has been several bugs submitted that are caused by problems in specific language versions of phpwebsite. When doing your translations please make sure you follow these guidelines: 1. If you have a single or double quote in your translation make sure it has been properly escaped. 2. Make sure you pay attention to the case of your letters as the shell script used to run the translation IS case sensitive. 3. TEST! You can export a CVS copy and run the makedisto script to test your particular language. (ie: "makedistro en" will make an english version only, "makedistro fr" will make a french version only, etc.) We all appreciate the hard work you have done so far in helping us get so many languages out there and I hope you will continue to stick with it through the duration of this project. Take care, Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: Adam M. <ad...@tu...> - 2001-08-30 20:49:21
|
Hey everyone! The v0.8.0 Release Candidate has been posted to the downloads on phpwebsite.appstate.edu. We only posted the english version for now til everyone can catch up on the new TRANSLATE statements added. Please grab a copy and pound on it for a bit and let us know through sourceforge if you find any resident bugs. Also a small warning...we have not officially upgraded the phpwebsite home page to v0.8.0-rc1 so if you use this version and go to the admin side it will tell you that you are not using the most current version. This is nothing to worry about just a heads up for you. Take care, Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: Adam M. <ad...@tu...> - 2001-08-27 20:41:57
|
You should check out the Changes file in the make_distro directory of a CVS copy of phpws. I have been listing all my added and removed stuff there. It's actually easy to read too :) Adam > On Fri, Aug 03, 2001 at 03:18:07PM +0200, Fridtjof Busse wrote: >> I must say that I hate it to look through the **.err, it would be much >> easier if you get a nice formatted output of changed translations, und >> a shell script is not very useable for Win-users. > > It is a shell script because it is a rewrite of the old > "system". Besides, it also depends on sed/awk as well, do you have > those on your windows machine? (If yes you probably have bash as well > :-) > > Regarding the *.err files: They are not really meant to help in the > translation/synchronisation process of the *.pp files. They are rather > targeted at spotting typos like TRNASLATE etc. Ideally you should get a > maximum of ten lines in those *.err files :-/ In those cases they are > sufficiently easy to read, I think. > > Anyway, choice is good :-) > > Regards, > Karsten > > PS: I am back from vacation. It was good, I am relaxed. What is on the > TODO? > -- > fishfarm - Karsten Dambekalns > Echternstr. 73 - 38100 Braunschweig > > Tel. +49 531 1232902 mailto:k.d...@fi... > Fax. +49 531 1232906 http://www.fishfarm.de/ > ----------------------------------------------------- > > > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: webmaster <web...@is...> - 2001-08-24 20:13:23
|
I have done one as well and you can see it here.... http://www.islandncs.com/index.php Bob McCambridge -----Original Message----- From: php...@li... [mailto:php...@li...] On Behalf Of Scott Rogers Sent: Friday, August 24, 2001 8:54 AM To: php...@li... Subject: Re: [Phpwebsite-developers] Plug-ins Any interest in guestbook plug in? check out www.highcountryrugby.com for an example. It's very simple. Scott Rogers ----- Original Message ----- From: "Karsten Dambekalns" <k.d...@fi...> To: <php...@li...> Sent: Friday, August 24, 2001 7:31 AM Subject: Re: [Phpwebsite-developers] Plug-ins > On Sat, Aug 04, 2001 at 10:37:20AM +0200, Alain Fontaine wrote: > > This has been answered, but my 2 cents anyway: > > > I mind sound very stupid now, but how do I configure/use the plug-ins with > > phpWebSite, I mean the ones that are included in the distribution package > > like phpWeather? I have checked my installation dirs for documentation, but > > I can't seem to find anything :) > > Doh! Look at point eight of the INSTALL file in the docs dir. I can > clearly see it :-) If any of this needs to be corrected, drop me an > email. > > Regards, > Karsten > -- > fishfarm - Karsten Dambekalns > Echternstr. 73 - 38100 Braunschweig > > Tel. +49 531 1232902 mailto:k.d...@fi... > Fax. +49 531 1232906 http://www.fishfarm.de/ > ----------------------------------------------------- > > > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > _______________________________________________ Phpwebsite-developers mailing list Php...@li... http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Scott R. <sc...@sc...> - 2001-08-24 12:54:50
|
Any interest in guestbook plug in? check out www.highcountryrugby.com for an example. It's very simple. Scott Rogers ----- Original Message ----- From: "Karsten Dambekalns" <k.d...@fi...> To: <php...@li...> Sent: Friday, August 24, 2001 7:31 AM Subject: Re: [Phpwebsite-developers] Plug-ins > On Sat, Aug 04, 2001 at 10:37:20AM +0200, Alain Fontaine wrote: > > This has been answered, but my 2 cents anyway: > > > I mind sound very stupid now, but how do I configure/use the plug-ins with > > phpWebSite, I mean the ones that are included in the distribution package > > like phpWeather? I have checked my installation dirs for documentation, but > > I can't seem to find anything :) > > Doh! Look at point eight of the INSTALL file in the docs dir. I can > clearly see it :-) If any of this needs to be corrected, drop me an > email. > > Regards, > Karsten > -- > fishfarm - Karsten Dambekalns > Echternstr. 73 - 38100 Braunschweig > > Tel. +49 531 1232902 mailto:k.d...@fi... > Fax. +49 531 1232906 http://www.fishfarm.de/ > ----------------------------------------------------- > > > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > |
From: Karsten D. <k.d...@fi...> - 2001-08-24 11:42:02
|
On Fri, Aug 03, 2001 at 03:18:07PM +0200, Fridtjof Busse wrote: > I must say that I hate it to look through the **.err, it would be much > easier if you get a nice formatted output of changed translations, und a > shell script is not very useable for Win-users. It is a shell script because it is a rewrite of the old "system". Besides, it also depends on sed/awk as well, do you have those on your windows machine? (If yes you probably have bash as well :-) Regarding the *.err files: They are not really meant to help in the translation/synchronisation process of the *.pp files. They are rather targeted at spotting typos like TRNASLATE etc. Ideally you should get a maximum of ten lines in those *.err files :-/ In those cases they are sufficiently easy to read, I think. Anyway, choice is good :-) Regards, Karsten PS: I am back from vacation. It was good, I am relaxed. What is on the TODO? -- fishfarm - Karsten Dambekalns Echternstr. 73 - 38100 Braunschweig Tel. +49 531 1232902 mailto:k.d...@fi... Fax. +49 531 1232906 http://www.fishfarm.de/ ----------------------------------------------------- |
From: Karsten D. <k.d...@fi...> - 2001-08-24 11:42:01
|
On Sat, Aug 04, 2001 at 10:37:20AM +0200, Alain Fontaine wrote: This has been answered, but my 2 cents anyway: > I mind sound very stupid now, but how do I configure/use the plug-ins with > phpWebSite, I mean the ones that are included in the distribution package > like phpWeather? I have checked my installation dirs for documentation, but > I can't seem to find anything :) Doh! Look at point eight of the INSTALL file in the docs dir. I can clearly see it :-) If any of this needs to be corrected, drop me an email. Regards, Karsten -- fishfarm - Karsten Dambekalns Echternstr. 73 - 38100 Braunschweig Tel. +49 531 1232902 mailto:k.d...@fi... Fax. +49 531 1232906 http://www.fishfarm.de/ ----------------------------------------------------- |
From: Scott R. <sc...@sc...> - 2001-08-14 19:02:00
|
Hello all. Am I correct in saying 'Currently with phpwebsite the plug-in architecture only allows for dynamic content in the left box(es) at all times and in the center portion only when logged in as admin'? I ask because I'm integrating a Guestbook and Phone list into my phpwebsite (www.highcountryrugby.com). I'm going to do something like pass content.php a 'magic' number like say 9999 or something that tells it to go to the plug-in table for the code to include and execute for the center portion. The thing is, I don't want to do 'double-work' if possible. Scott Rogers |
From: Adam M. <ad...@tu...> - 2001-08-13 22:54:47
|
In CVS, the current code is indeed functional. I am hoping to have a solid v.0.8.0 release candidate up for downloading by early next week. There are some issues with upgrading that have to be hammered out but a fresh install of the current CVS copy should pose minimal problems. Adam > Hello Adam, > While snooping the phpWS cvs I peeped into your rewrite... > Is it functional? What's the story? It looks clean thus far... more > towards the ability of separating layout vs. content :) > Cheers, > WD > > __________________________________________________ > FREE voicemail, email, and fax...all in one place. > Sign Up Now! http://www.onebox.com > > > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: W.D.Sumilang <wa...@on...> - 2001-08-09 21:01:41
|
Hello Adam, While snooping the phpWS cvs I peeped into your rewrite... Is it functional? What's the story? It looks clean thus far... more towards the ability of separating layout vs. content :) Cheers, WD __________________________________________________ FREE voicemail, email, and fax...all in one place. Sign Up Now! http://www.onebox.com |
From: Eric W. <ewa...@ma...> - 2001-08-08 04:47:41
|
With the recent code red activity it has gotten me thinking about any vulnerabilities within phpwebsite. I ran across this article <http://www.securereality.com.au/studyinscarlet.txt> that details some common problems with php based scripts. It makes for some really good reading. There is some good supporting material that breaks down specific scripts. How much has the development team looked into fixed security holes? Thanks, Eric =================================================================== Eric T. Wallace ewa...@ma... =================================================================== "To educate a man in mind and not in morals is to educate a menace to society" -- Theodore Roosevelt |
From: Adam M. <ad...@tu...> - 2001-08-05 02:36:59
|
I renamed the table called 'plugins' to 'modules'. Anyone who is running a CVS copy of phpwebsite should also make this change. If you are running v0.7.10 you do not need to worry about this. I will provide the SQL needed to make this change: SQL === ALTER TABLE plugins RENAME TO modules Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: Adam M. <ad...@tu...> - 2001-08-05 01:53:16
|
If everyone hasn't noticed already, there have been some directory changes made in CVS. If you had a module in the plug-ins directory this applies to you. I have moved all modules into a directory named 'mod'. If your module is in the repository I made the directory changes to your files there. You may want to test your mod and make sure I didn't break anything since I only did some minor testing. As I mentioned before, I'll write up some documentation on how the new module stuff will work. It should be easy to convert old modules to the new style. Take care, Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: Alain F. <al...@va...> - 2001-08-04 21:48:50
|
Hello Adam, Okay, that sounds great. Thanks! -----Message d'origine----- De : php...@li... [mailto:php...@li...]De la part de Adam Morton Envoyé : samedi 4 août 2001 20:08 À : php...@li... Objet : Re: [Phpwebsite-developers] Plug-ins The way we handle pulg-ins is changing a bit, Alain. I will be writing up some docs on how to write a plug-in and include it in v0.8.0. Adam > Hello, > > I mind sound very stupid now, but how do I configure/use the plug-ins > with phpWebSite, I mean the ones that are included in the distribution > package like phpWeather? I have checked my installation dirs for > documentation, but I can't seem to find anything :) > > Thanks for some light on this... > > ----------------------- > Alain Fontaine > Consultant & Developer > VAlain S.A. > Tél: +32-4-2522950 > ----------------------- > > > > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... _______________________________________________ Phpwebsite-developers mailing list Php...@li... http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Adam M. <ad...@tu...> - 2001-08-04 18:12:30
|
The way we handle pulg-ins is changing a bit, Alain. I will be writing u= p some docs on how to write a plug-in and include it in v0.8.0. Adam > Hello, >=20 > I mind sound very stupid now, but how do I configure/use the plug-ins > with phpWebSite, I mean the ones that are included in the distribution > package like phpWeather? I have checked my installation dirs for > documentation, but I can't seem to find anything :) >=20 > Thanks for some light on this... >=20 > ----------------------- > Alain Fontaine > Consultant & Developer > VAlain S.A. > T=E9l: +32-4-2522950 > ----------------------- >=20 >=20 >=20 > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: Alain F. <al...@va...> - 2001-08-04 14:40:17
|
Hello, One more for you: How do you go about to install the "Polls" plugin? Thanks. ----------------------- Alain Fontaine Consultant & Developer VAlain S.A. Tél: +32-4-2522950 ----------------------- |
From: Alain F. <al...@va...> - 2001-08-04 14:27:52
|
Hello! This plug-in is completely broken... the setup page is broken, the script inserts three references into the plug-ins table, and clicking the icon in the plug-in administration leads to a 404 because the link points to the wrong place :) FYI Thanks. ----------------------- Alain Fontaine Consultant & Developer VAlain S.A. Tél: +32-4-2522950 ----------------------- |
From: Alain F. <al...@va...> - 2001-08-04 14:11:10
|
Hello, Yes, indeed, I got it integrated now. I do have some trouble getting the locale to "french", though. I have made the modifications to the phpweather.php file like this: <-- snip --> require('plug-ins/phpweather/locale_fr.inc'); include('plug-ins/phpweather/phpweather.inc'); $metar = get_metar('EBAW'); $box_content = pretty_print_metar_wap($metar, 'Belgique'); register_shutdown_function('update_metars_db'); <-- snip --> But everything is still displayed in US metrics etc. Maybe the plugin doesn't support the localization? Thanks :) -----Message d'origine----- De : php...@li... [mailto:php...@li...]De la part de Laurent Rathle Envoyé : samedi 4 août 2001 15:47 À : php...@li... Objet : Re: [Phpwebsite-developers] Plug-ins Le Samedi 4 Août 2001 15:18, Alain Fontaine a écrit : > Hello, > > Yup, that's what I thought, but the phpWeather thing does not have a setup > script. Here's the list of files I have: > You have to look at the root of your website. You'll find the files weather_setup.php and weather_admin.php. -- Laurent Rathle _______________________________________________ Phpwebsite-developers mailing list Php...@li... http://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Laurent R. <lr...@te...> - 2001-08-04 13:42:11
|
Le Samedi 4 Août 2001 15:18, Alain Fontaine a écrit : > Hello, > > Yup, that's what I thought, but the phpWeather thing does not have a setup > script. Here's the list of files I have: > You have to look at the root of your website. You'll find the files weather_setup.php and weather_admin.php. -- Laurent Rathle |