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: Steven L. <st...@tu...> - 2002-10-08 14:49:32
|
Hello all, I have updated my core_start.sh shell script once again. A new variable can be found at the top, PHPWS_GROUP, this needs to be set to the proper group for when permissions are set back to the developer. Also the script will now change permissions on all the doc and template directories so they can be edited with Adam's textpad module. Enjoy :) -- Steven Levin Electronic Student Services Appalachian State University Phone: 828.262.2431 PhpWebsite Development Team URL: http://phpwebsite.appstate.edu Email: st...@tu... |
From: Steven L. <st...@tu...> - 2002-10-08 14:17:35
|
+1 I like the idea but we will have to come up with a way to vote via the mailing list. We may even have to vote on it, ha. -- Steven Levin Electronic Student Services Appalachian State University Phone: 828.262.2431 PhpWebsite Development Team URL: http://phpwebsite.appstate.edu Email: st...@tu... |
From: Adam M. <ad...@tu...> - 2002-10-08 13:56:08
|
I'm going to start converting all legacy function calls this morning. Just wanted everyone to know to watch out for huge commits across all files. May the force be with me... Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University http://phpwebsite.appstate.edu |
From: Adam M. <ad...@tu...> - 2002-10-08 13:52:43
|
Hey folks! Just an idea that I think will help us out now and in the future when we get some more developers wanting to add or make changes to the core. I think any time someone has a function or class they want to see added to the core that they submit a vote to this list along with the code itself or a link to the source somewhere. Then we can all vote accordingly. If we implement this, I would like to start immediately. This will help us to track changes to the core more closely and to filter out wanna-be core functions. This will also make more apparent who our outside contributors are, and whether they are submitting usable code or not. Also this allows the public and our developers a voice in core decisions. Let me know what you think! Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University http://phpwebsite.appstate.edu |
From: Steven L. <st...@tu...> - 2002-10-07 18:55:14
|
Hello All, The phpWebSite Debugger is now fully in CVS and functioning. Check it out and let me know what you think. FYI the core functions test_array and test_object will be removed from the core soon. Please begin to use these functions now provided by PHPWS_Debug. Old calls: $GLOBALS['core']->test_array($array); $GLOBALS['core']->test_object($object); New calls: $_SESSION['PHPWS_Debug']->testArray($array); $_SESSION['PHPWS_Debug']->testObject($object); Enjoy :) -- Steven Levin Electronic Student Services Appalachian State University Phone: 828.262.2431 PhpWebsite Development Team URL: http://phpwebsite.appstate.edu Email: st...@tu... |
From: Adam M. <ad...@tu...> - 2002-10-07 18:01:54
|
Hello all, Below is a list or the changes that have been made to the function names in the core. These were existing functions that just needed better names to stick with the coding style we have adopted. Somef unctions have comments next to them denoting that there could be some changes to them later. Other functions fall under the "QUESTIONABLE:" category which means they will have their names changed, be merged into another function or removed entirely. Any code you write in the future will need to use these new function names. If you have any issues with a function name, please let me know and we will work something out. I will be attempting to do a massive search and replace through all our code in house to catch all these function names and get everyone up to par so I can remove the patch functions for legacy calls. I will be sure to warn everyone of this since it will require everyone to hold what they are doing until I am finished or risk massive conflicts in CVS. ATTENTION!!! If you have not done so already, please read through the core files and comment any functions you've written. Please give detailed comments! Also read over any existing comments and make sure they make sense and you can understand them (Remember to think like a new module developer when doing this. We have used these functions for months now and could probably write a module without ever looking at the core files, others do not have that advantage.). These comments are going to directly translate into the developers manual! Cheers! Adam DATABASE: --------- CHANGED: load_database() = loadDatabase() query_db() = query() quick_fetch() = quickFetch() fetchmode() = setFetchMode() make_where() = makeWhere() sql_friendly_name() = sqlFriendlyName() sql_insert() = sqlInsert() sql_select() = sqlSelect() sql_update() = sqlUpdate() sql_lock() = sqlLock() sql_unlock() = sqlUnlock() sql_delete() = sqlDelete() sql_maxvalue() = sqlMaxValue() sql_table_exists() = sqlTableExists() sql_column_exists() = sqlColumnExists() sql_create_table() = sqlCreateTable() sql_droptable() = sqlDropTable() sql_add_column() = sqlAddColumn() sql_drop_column() = sqlDropColumn() sql_import() = sqlImport() add_prefix() = addTablePrefix() QUESTIONABLE: dbReady() //Need better name here. (prepares a value for database insertion) KEEPERS: getOne() getRow() getCol() getAssoc() getAllAssoc() getAll() TEXT: ----- CHANGED: unserialize_it() = unserialize() serialize_it() = serialize() profanity_filter() = profanityFilter() //RENAME: filterProfanity? is_alpha() = isAlpha() magicstrip() = stripslashes() valid_form() = isValidInput() image_tag() = imageTag() ez_table() = ezTable() check_link() = checkLink() strip_spaces() = stripSpaces() alpha_num() = alphaNum() strip_quotes() = stripQuotes() QUESTIONABLE: alphabet() //English only....WizardBag? parse() //MERGE into re-writes of parse functions sentence() //Not sure what this is for breaker() //MERGE into re-writes of parse functions error_list() //Not sure what this is for KEEPERS: addslashes() link() ARRAY: ------ CHANGED: max_key() = maxKey() shove_assoc() = shoveAssoc() array_to_object() = arrayToObject() object_to_array() = objectToArray() drop_nulls() = dropNulls() test_post() = testPost() //No patch test_cookie() = testCookie() //No patch test_request() = testRequest() //No patch test_globals() = testGlobals() //No patch test_object() = testObject() //No patch test_array() = testArray() //No patch QUESTIONABLE: XML_it() //Not sure what this is for. ksort() //Why is this here? (use PHP provided: ksort() or reverse(ksort())) cmp() //Attached to ksort...not really needed interval() //Not sure of functionality here (used in PHPWS_Form::clock()) KEEPERS: shove() yank() paginateDataArray() CORE: ----- CHANGED: list_all_mods() = listModules() mod_dir() = getModuleDir() destroy_all_sessions() = killAllSessions() destroy_session() = killSession() set_module_info() = setModuleInfo() get_mod_info() = getModuleInfo() DATETIME: --------- CHANGED: mk_date() = mkdate() FILE: ----- CHANGED: read_dir() = readDirectory() rec_copy() = recursiveFileCopy() write_file() = writeFile() read_file() = readFile() file_copy() = fileCopy() make_thumbnail() = makeThumbnail() FORM: ----- CHANGED: make_form() = makeForm() input_radio() = formRadio() input_hidden() = formHidden() input_file() = formFile() input_text() = formTextField() input_password() = formPassword() input_textarea() = formTextArea() input_check() = formCheckBox() input_options() = formSelect() input_options() = formMultipleSelect() input_submit() = formSubmit() input_button() = formButton() input_sql_options() = formSqlSelect() QUESTIONABLE: clock() //MOVE to PHPWS_DateTime? Only function that uses interval? Not sure what this really does. --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University http://phpwebsite.appstate.edu |
From: Steven L. <st...@tu...> - 2002-10-07 15:56:51
|
Hello fellow developers, I stumbled upon this today and thought it was pretty cool so I wanted to share. When committing something to cvs if you pass -e editor you can define which editor you want to use to edit the cvs log. I like to use it like this cvs -e emacs commit Enjoy :) -- Steven Levin Electronic Student Services Appalachian State University Phone: 828.262.2431 PhpWebsite Development Team URL: http://phpwebsite.appstate.edu Email: st...@tu... |
From: Don S. <do...@se...> - 2002-10-07 15:01:25
|
Just wondering if/when there will be a new 0.8 release to include the fix for the XSS vuln. Thanks, Don. |
From: Adam M. <ad...@tu...> - 2002-10-04 17:01:49
|
I got the bug fixed. In the future please post bugs like this to sourceforge so we can keep a running log of them. Thanks! Adam > You are right, I will go ahead and fix this. Thanks for the post. > > -- > Steven Levin > Electronic Student Services > Appalachian State University > Phone: 828.262.2431 > PhpWebsite Development Team > URL: http://phpwebsite.appstate.edu > Email: st...@tu... > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University http://phpwebsite.appstate.edu |
From: Steven L. <st...@tu...> - 2002-10-04 16:24:49
|
You are right, I will go ahead and fix this. Thanks for the post. -- Steven Levin Electronic Student Services Appalachian State University Phone: 828.262.2431 PhpWebsite Development Team URL: http://phpwebsite.appstate.edu Email: st...@tu... |
From: Mohanaraj <sar...@am...> - 2002-10-04 16:04:09
|
Mates, There seems to be a bug in the setup (at least for the RC download on the main site,). The setup seems to declare that there are no tables in the DB although tables exists. It detects the database itself fine. I believe the offending line is line 87, as follows $table_check = count(PHPWS_Core::getCol("show tables from $dbname")); I believe it should be $table_check = count($core->getCol("show tables from $dbname")); Is this correct or am I just muckintg around. Mohan |
From: Mike N. <mh...@us...> - 2002-10-04 14:39:25
|
On Fri, 2002-10-04 at 05:55, Don Seiler wrote: > Alright let's say I go forward with the fantasy sports module. > > What I really would want to do is to make a bunch of modules and have them > available one-at-a-time or installed altogether, sort of like > Bundle::Slash in CPAN. <snip> > I'm wondering what you guys think of this setup, and if it violates any > taboos on modules intermixing or installing each other, or grouping > modules. Everyone, You can get an idea of what the FFL project members are trying to create, by looking at the FFL home page. Suggestions for accomplishing this task using phpWS as a framework are appreciated. Thanks. http://ffl.sourceforge.net/ -- Mike Noyes <mh...@us...> http://sourceforge.net/users/mhnoyes/ http://leaf-project.org/ |
From: Don S. <do...@se...> - 2002-10-04 12:55:30
|
Alright let's say I go forward with the fantasy sports module. What I really would want to do is to make a bunch of modules and have them available one-at-a-time or installed altogether, sort of like Bundle::Slash in CPAN. For example let's say I envision these modules: leagues fflteams proteams players schedule What I propose is to be able to install these all with a single click, or install some. The reason being is that I can use the players, proteams, and schedule modules for my sports team website. I'm wondering what you guys think of this setup, and if it violates any taboos on modules intermixing or installing each other, or grouping modules. Don. |
From: Adam M. <ad...@tu...> - 2002-10-03 18:56:52
|
I used the first command with success today to do some replacements in the announcements module. Just wanted to let you all know it works :) Also there is no output to let you know what replacements it made so you have to trust in the force (or pass it a verbose switch). Adam > Oops lets try that link again > > http://www.ctssn.com/linux/perlReplacementScript.html > >> In spite of my personal distaste for "studlyCaps" convention, I'll >> offer this way to do it quick-like: >> >> To change all instance of cms_port to cms_bridge, in every file in the >> current directory and below: >> >> perl -pi -e 's?cms_port?cms_bridge?g' . >> >> >> To do the same thing, but finding files with grep that contain >> "doobee": >> perl -pi -e 's?cms_port?cms_bridge?g' `grep -lr doobee` >> >> >> Enjoy! >> >> >> >> ------------------------------------------------------- >> This sf.net email is sponsored by: DEDICATED SERVERS only $89! >> Linux or FreeBSD, FREE setup, FAST network. Get your own server >> today at http://www.ServePath.com/indexfm.htm >> _______________________________________________ >> Phpwebsite-developers mailing list >> Php...@li... >> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Email: ma...@tu... > URL: http://phpwebsite.appstate.edu > Phone: 828-262-6493 > ICQ: 141057403 > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University http://phpwebsite.appstate.edu |
From: Matthew M. <ma...@tu...> - 2002-10-03 17:52:52
|
Oops lets try that link again http://www.ctssn.com/linux/perlReplacementScript.html > In spite of my personal distaste for "studlyCaps" convention, I'll offer > this way to do it quick-like: > > To change all instance of cms_port to cms_bridge, in every file in the > current directory and below: > > perl -pi -e 's?cms_port?cms_bridge?g' . > > > To do the same thing, but finding files with grep that contain "doobee": > perl -pi -e 's?cms_port?cms_bridge?g' `grep -lr doobee` > > > Enjoy! > > > > ------------------------------------------------------- > This sf.net email is sponsored by: DEDICATED SERVERS only $89! > Linux or FreeBSD, FREE setup, FAST network. Get your own server > today at http://www.ServePath.com/indexfm.htm > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Matthew M. <ma...@tu...> - 2002-10-03 17:51:29
|
Thanks for that tip. Read more about it here http://www.ctssn.com/linux/shellaccount.html BTW not crazy about the capitalization thing at first but I am getting used to it. > In spite of my personal distaste for "studlyCaps" convention, I'll offer > this way to do it quick-like: > > To change all instance of cms_port to cms_bridge, in every file in the > current directory and below: > > perl -pi -e 's?cms_port?cms_bridge?g' . > > > To do the same thing, but finding files with grep that contain "doobee": > perl -pi -e 's?cms_port?cms_bridge?g' `grep -lr doobee` > > > Enjoy! > > > > ------------------------------------------------------- > This sf.net email is sponsored by: DEDICATED SERVERS only $89! > Linux or FreeBSD, FREE setup, FAST network. Get your own server > today at http://www.ServePath.com/indexfm.htm > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Steven L. <st...@tu...> - 2002-10-02 22:35:28
|
Hello All, Ealier today I committed a file to the core the completely made fallout unusable. I am sorry if I disrupted anyones work. The updated core/Text.php file is now in cvs and works properly. -- Steven Levin Electronic Student Services Appalachian State University Phone: 828.262.2431 PhpWebsite Development Team URL: http://phpwebsite.appstate.edu Email: st...@tu... |
From: Steven L. <st...@tu...> - 2002-10-02 19:42:26
|
I have committed my changes to the PHPWS_Text class. Functions have been renamed to the PEAR style. Patch functions have been put in place to recover from legacy function calls, in this class and the classes Adam is working on. Please make sure in new code that you are calling the new functions and not the old. Thanks! -- Steven Levin Electronic Student Services Appalachian State University Phone: 828.262.2431 PhpWebsite Development Team URL: http://phpwebsite.appstate.edu Email: st...@tu... |
From: Bob T <bo...@el...> - 2002-10-01 21:34:26
|
In spite of my personal distaste for "studlyCaps" convention, I'll offer this way to do it quick-like: To change all instance of cms_port to cms_bridge, in every file in the current directory and below: perl -pi -e 's?cms_port?cms_bridge?g' . To do the same thing, but finding files with grep that contain "doobee": perl -pi -e 's?cms_port?cms_bridge?g' `grep -lr doobee` Enjoy! |
From: Adam M. <ad...@tu...> - 2002-10-01 17:03:03
|
ah ha! It's recursiveCopy() hooray! Adam > > Hey All, > > Does anyone know what the funciton rec_copy() in File.php is for and is > anyone using it? If you answered "yes" then please give me a more > descriptive name for it. > > Thanks, > Adam > > --------------------------------- > Adam Morton > Developer - Web Technology Group > Appalachian State University > http://phpwebsite.appstate.edu > ad...@tu... > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: DEDICATED SERVERS only $89! > Linux or FreeBSD, FREE setup, FAST network. Get your own server > today at http://www.ServePath.com/indexfm.htm > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University http://phpwebsite.appstate.edu ad...@tu... |
From: Adam M. <ad...@tu...> - 2002-10-01 16:40:53
|
Hey All, Does anyone know what the funciton rec_copy() in File.php is for and is anyone using it? If you answered "yes" then please give me a more descriptive name for it. Thanks, Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University http://phpwebsite.appstate.edu ad...@tu... |
From: Matthew M. <ma...@tu...> - 2002-10-01 13:43:31
|
Layout has been updated to use .tpl instead of .thm for boxstyles. If your mod_layout_box table still has .thm, run an sql update on them. Otherwise, reinstallation should do the trick. Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Martin D. <m....@di...> - 2002-10-01 13:08:42
|
From: Don S. <do...@se...> - 2002-10-01 12:59:19
|
Thanks for the info. These really sounds great. I still have to talk it over with my other developers. I'm not sure how hot they will be on the idea. But I definitely look forward to doing some other module development. Mainly something to turn a phpws install into a fan/official site about a sports team. I was thinking of a "sportsteam" module that would include a roster/player/personnel structure and a games/schedule structure which would/could be a mod of the existing calendar system. Let me know what you think in that regards. I look forward to seeing your docs. FANTASTIC job on phpws overall. 0.9 is definitely a "killer app" in my book and will save me tons of time setting up sites for people pro bono. Don. On Tue, 1 Oct 2002, Adam Morton wrote: > Don, > > That sounds like an awsome idea! And I think it can be done with phpws > 0.9.x. I'm not a huge sports nut so forgive me if I fumble through some > of this. I am a uge code nut though, so I'll give you any help in that > department that I can. Some things to keep in mind so you can implement > this module the way you want: > > - Look into dynamic table creation. This would allow you to add/remove > fantasy leagues or teams. Or if you have a database-savvy person on your > team, they may be able to come up with a better solution. This was just > the first thing that came to my mind since I recently implemented that in > a module I created for ASU. > > - Transfer variables are your friend. Matt could probably shed more light > on this subject than I can but I believe you could have your module show > up wherever you wish and show whatever content you wish. This would allow > you to show arbitrary data to the anonymous user on the mainpage and > user-specific data to a user that has logged in. You could even have > several blocks show up upon login that could show anything you like (e.g.: > the icons you mentioned, or maybe scores from a game that the user wanted > to monitor?) > > I am working on the core classes some more this week (just changing naming > conventions and shuffling a bit to get us up to par with the PEAR style). > As I finish each class I'm going to put together some documentation on > that classes functions and what they do. This should be a good reference > for you and other module developers out there. I'll be sure to post to > the list when it becomes available. > > I hope some of this info is useful to you. If you run into problems or > have any questions, post to this list and I'll try to help in any way I > can. > > Good Luck! > Adam > > > hullo. > > > > I and a select group of others, including mhnoyes of mhnoyes fame, are > > developers on the ffl project at sourceforge. I'll spare your frenzied > > searching and tell you that it is a php/mysql cms for fantasy football. > > Originally the project was me going solo. > > > > However mhnoyes got me and the developers of the other sourceforge ffl > > projects together for a meeting of the proverbial Five Families. Except > > there were only 4 of us. And 2 were on the same project. Whatever. > > You know what I mean. Basically we agreed that we need to come > > together and make a kick-ass fantasy sports website that would support > > any sport using a fantasy "core" and sport-specific "modules". > > > > We were going to write it all from the ground up. Mike (mhnoyes) > > proposed just writing it as a big fat module for phpwebsite. I knew > > nothing of phpws and shrugged the idea off. However now I've seen the > > light and the 0.9 version is it. > > > > Contrary to what you're thinking, I didn't write to give you my personal > > A&E Biography. I'd like to know what your thoughts are on how to go > > about implementing a fantasy sports site that would support multiple > > leagues. Obviously if it were to only support a single league then > > there is no problem. > > > > What I'd like to see is when the user logs in he/she will be presented > > with icons or a menu with a link to each of his existing fantasy teams > > on the various leagues installed on that site. Then an option to join > > others etc. If user is not logged in just show basic non-league > > specific blah. > > > > I'm going back and forth on whether or not this would work as a phpws > > module. Mike brought up the idea of the branch creator, but as I > > understand it that would be a separate install, and I would like all the > > leagues in the one database so a single login would give access to them > > all. > > > > So I thought I'd go to the source and see what the masters think. > > > > Don. > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Phpwebsite-developers mailing list > > Php...@li... > > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > --------------------------------- > Adam Morton > Developer - Web Technology Group > Appalachian State University > http://phpwebsite.appstate.edu > ad...@tu... > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: DEDICATED SERVERS only $89! > Linux or FreeBSD, FREE setup, FAST network. Get your own server > today at http://www.ServePath.com/indexfm.htm > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > |
From: Matthew M. <ma...@tu...> - 2002-10-01 12:05:52
|
Since most of the problems we have had with RC0 stem from people having difficulties with PEAR, it would be best if we discuss what the best solution would be. PEAR is in a transition period. When they are finished implementing their standards and it ships with the latest PHP version, many of our problems will disappear. Until then, what is the best course of action? Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |