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: Simon R. <si...@ai...> - 2001-11-14 00:35:57
|
> First step is incorporating $table_prefix to all mysql statements that > reference tables in the database. I was going to go through the files one > at a time and implement it and commit it. Don't commit *any* CVS files until you've got the *whole thing* working properly on your test server. That way a) there isn't a broken/partially-completed version in CVS at any time b) when you submit all the changes at once, it's easier to see that they're related, and they can be rolled back if needed See the WinCvs Daily Use Guide http://www.computas.com/pub/wincvs-howto/ The tips are slanted towards that product, but the ideas are common, and very important. |
From: Dynomite <dyn...@us...> - 2001-11-14 00:22:37
|
Jeremy/Brian, Thanks for giving me access to the CVS. I was able to commit the sql files for the database right now. Hopefully anyone who modifies the database scheme can update those files as well. Matt, I hope your okay with me working on this $table_prefix portion. I have tried to add $table_prefix to all the mysql statements in the phpwhosonline module that I made. No problems implementing it and using it on the current versions of phpwebsite. So the steps to implement $table_prefix will have to be two fold before it can be customized. First step is incorporating $table_prefix to all mysql statements that reference tables in the database. I was going to go through the files one at a time and implement it and commit it. Unless there is an objection. I would like to get the CVS to run, but I'm in no rush. I noticed that the install script right now checks to see if main_page_content was created and if not, says the install failed. Of course, it has been changed to mod_main_page_data. I noticed the main_page_content was commented out. Is this being tested or is this a sure thing to be kept in the next version? Helps me to correct CVS on my side and not step on any shoes while I implement the $table_prefixes. Tat |
From: Alessandro P. (T. / J578) <al...@ti...> - 2001-11-13 16:04:51
|
Hi all. I investigated bug #479949 "bug in login", and as far as I see in user.php the bug is originated by the usage of crypt($stringtoencrypt, $salt), where $salt is always the same; this causes strings like "string" and "string1" and "stringJKAHIUDGD" to be have the same encryption-result. It is okay to move to md5() encryption instead as admin.php does ? If answer is "yes" then I can check-in the patch in CVS. Please let me know. Bye, Alessandro -- Alessandro "TXM" Pisani - al...@ti... - ICQ #2209087 INWO Project coordinator http://www.inwoproject.f2s.com "Violence is the last refuge of the incompetent" - S. Hardin [Isaac Asimov, "Foundation"] |
From: Matthew M. <mcn...@tu...> - 2001-11-12 14:41:41
|
While we think this is a good idea, we are not approaching this with as much vigor as we do making modules and fixing bugs. I will go ahead and make a promise to implement this early in the new core. The new core already does multiple sites on one code base. I'll go ahead and write in multiple sites on one db. Matt -- Matthew McNaney Internet Systems Architect Electronic Student Services Email: mcn...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 |
From: <dig...@ya...> - 2001-11-12 06:05:56
|
Adam, I just noticed that you are modifying the main_page_content to be mod_main_page_content in CVS. When I look at the setup/install.php file, the tables have been updated to mod_main_page_content. Is this how the schema will change for the next version? Just making sure, don't want to have two main_page_content tables. :^) Dynomite _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: <dig...@ya...> - 2001-11-11 21:42:37
|
Many users are running on virtual hosts which prevent the use of multiple databases. Others would like to keep everything in one database. In any case, the table names are very generic right now and can or will conflict with other programs that create tables of similar titles, such as users, sessions, etc. By adding table prefixes, we prevent conflicts and/or provide the ability to have multiple installations. _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: <dig...@ya...> - 2001-11-11 21:07:02
|
Concept Incorporate phpws_ prefix to all table names. Write a script that can replace "phpws_" with any table prefix of choice. Then have the script install the database. An example is used for the forum phpbb2. I can write this up for the 8.1 version to give you an idea, and when the table schemes change, the script can be adapted later. What do you do you think? _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: <dig...@ya...> - 2001-11-11 18:13:07
|
I have started investigating some of the content managers out there and what phpwebsite is missing. I am starting to look into the CVS of phpwebsite and create a better installation script if no one is working on it. Was the table prefix ever implemented? Anyone working on it? ------------------------------------------------------------- An article at geeklog by the name of ezra gave a summary of where everything stands for portal systems. In the past month or two I have installed or compared just about every piece of software that bills itself as a content manager, portal, or weblog, searching for a site manager that would work for both the classes I teach at Cal State Nortridge and for a couple of sites with politically sensitive material that might come under hacker attack. I essentially have been living on freshmeat and sourceforge, with frequent side trips to hotscripts and Zend. Some reactions: There are surprisingly only two systems with good flood control (the ability to restrict the frequency of posts by a malevolent user), Geeklog and Drupal. Drupal unfortunately has a downright Byzantine system for community voting on both items and comments. If you don't like it you need to rip out code in massive hunks. However, the Drupal engine has been stripped down and incorporated into the latest version of HPE, the software that runs NewsIsFree, so it bears watching. Of phpNuke and its forks, the parent program has a large following, lots of plugins, an irascible project owner, and the code is pretty bad spaghetti. MyPhpNuke has a development community beset by bickering and is probably worth avoiding. PostNuke is progressing nicely, but suffers from a kind of kitchen sink approach. Of all the forks, the one I like the most is phpWebSite, largely because it's being developed in an academic setting (Appalachian State) and thus seems to be a more orderly project, and because its releases are becoming increasingly modular. But I'll probably be switching from phpWS to Geeklog for the security features. If you don't mind Perl, Scoop is the most robust and active open source project. Finally, if your needs are more content management driven and if you've got root access and/or JSP servlet support, check out EZPublish, Typo3, and if you're really brave, Knight-Ridder's CoFax content management system. But you really need to have your own server rather than a virtual host. -------------------------- _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: Brian W. B. <br...@tu...> - 2001-11-09 01:20:08
|
Some interesting information regarding some serious security flaws with Windows XP and Micro$oft's Passport system: http://www.internetworld.com/news.php?inc=security/11082001c.html It is also interesting to note that Internet World is using PHP... Kind Regards, Brian -- Brian W. Brown Director, Electronic Student Services Student Development Room 269, John Thomas Hall Appalachian State University Boone, NC 28608 vox: 828-262-7124 fax: 828-262-2585 L I N U X .~. /V\ // \\ /( )\ ^^-^^ Fear the Penguin |
From: <ti...@ya...> - 2001-11-05 23:12:02
|
Ed Ritter gave me developer access to plugins at sourceforge, but no authorization to upload files. I can upload to phpwebsite files at sourceforge, but it would fit better at the plugin place. I need to have the files put somewhere so it won't get corrupted. Can the developers put it up as they did before at phpwebsite? File is attached. Thanks, Dynomite |
From: <dig...@ya...> - 2001-11-05 19:04:01
|
Hey developers, I was curious about how everyone is communicating on the phpwsii source. I was wondering if you have taken a look at phpbb2 yet? The source code looks clean. Don't know about the speed, but it looks nice. You know I never understood why the administrator table and user tables were separated. Could educationally guess that screening the author table for admin is more efficient then having separate tables, but this will be bothersome when admin wants to access normal user stuff, etc. On the new level of access for the future portal system, will you switch to one table or continue with the separate tables? dynomite _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com |
From: Benji S. <ben...@mo...> - 2001-10-30 18:13:41
|
In versions prior to 0.8.0, the number of sections was configurable in the config.php file. However in this version, it has (rightfully) been moved to the userpage_config.php file. Prior versions also recorded this number in the database.... Now, does this mean that it is safe to change the number of sections over time (which wasn't recommended before)? It was also recommended not to change the number of layouts. In 0.8.0, is it safe to change the number of layouts (and add layouts?)? benji --- Ben Spencer Web Support bsp...@mo... x 2288 |
From: Geoff S. <ge...@ho...> - 2001-10-28 00:44:14
|
I noticed on the plugins website the following error messages: Warning: php_hostconnect: connect failed in /home/groups/p/ph/phpwsplugins/htdocs/plug-ins/phpheadlines/phpheadlines.inc on line 32 Warning: file("http://phpwebsite.appstate.edu/backend.php") - Bad file descriptor in /home/groups/p/ph/phpwsplugins/htdocs/plug-ins/phpheadlines/phpheadlines.inc on line 32 Warning: Bad arguments to implode() in /home/groups/p/ph/phpwsplugins/htdocs/plug-ins/phpheadlines/phpheadlines.inc on line 32 This is caused because phpwebsite.appstate.edu happens to be down at the moment. phpHeadlines needs a graceful message when this happens. Geoff Staples www.Hostricity.com Web Hosting |
From: Geoff S. <ge...@ho...> - 2001-10-28 00:35:16
|
Sorry to be posting this here, but SourceForge is down for maintenance. Apparently, fopen doesn't have a timeout. Since phpwebsite.appstate.edu, is down at the moment as well, phpWebSite hangs on the @fopen when checking the phpWebSite version. Turning off the version checking bypasses the problem. The solution would be to use fsockopen so that a timeout can be set. I would have written the code and tested it except that phpwebsite.appstate.edu is down, so, I can't test the code. Also, apparently, there are a number of other references to stuff on phpwebsite.appstate.edu (primarily references to graphics in some of the themes, I think.). These need to be fixed as well so that they don't hang phpWebsite sites. Geoff Staples www.Hostricity.com Web Hosting |
From: Adam M. <ad...@tu...> - 2001-10-23 18:17:43
|
Vlad, I had trouble opening your email entitled "Funky Slashes". If it was a bug you found, please go to sourceforge.net and post it to the bugs for phpWebSite. If it was something else please resend the email to me or this list. BTW, did anyone else have trouble opening this? Thanks, Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: Matthew M. <mcn...@tu...> - 2001-10-23 18:09:45
|
> first of all, 0.8 is a very good release, imho. Thank ya! > instead i have been using: > > opensidebox("Title"); > echo "content"; //or just plain html > closebox(); Clever. Plus it will work with templates without too much fuss. I would like templates to be anything the admin wants 1) straight HTML, 2) theme assisted, 3) module driven on-the-fly changes. Matt |
From: Vlad S. <vl...@hu...> - 2001-10-22 19:52:45
|
aGVsbG8gLSANCg0KaWYgeW91IGhhdmUgYSAnIHN5bWJvbCBpbiBvbmUgb2YgdGhlIGNob2ljZXMg aW4gdGhlIHBvbGxzLCBpdCBkaXNwbGF5cyBhIHNsYXNoIGluIGZyb250IG9mIGl0Lg0KDQpteSBx dWljayBmaXg6DQoNCmFib3V0IGxpbmUgMTgsIG1vZC9wb2xsL3BvbGxfZnVuY3Rpb25zLnBocA0K CS4uLi4uDQogICAgICAgICRyZXN1bHQgPSBteXNxbF9xdWVyeSgiU0VMRUNUIGRhdGEgRlJPTSBt b2RfcG9sbF9kYXRhIFdIRVJFIHBpZD0nJHBpZCciKTsNCiAgICAgICAgbGlzdCgkZGF0YSkgPSBt eXNxbF9mZXRjaF9yb3coJHJlc3VsdCk7DQogICAgICAgIHN0cmlwc2xhc2hlcygkZGF0YSk7CQkJ CSMgaW5zZXJ0IHRoaXMgbGluZQ0KICAgICAgICAkY3VycmVudF9wb2xsID0gbmV3IHBvbGw7DQog ICAgICAgICRjdXJyZW50X3BvbGwgPSB1bnNlcmlhbGl6ZSgkZGF0YSk7DQoJLi4uLi4NCg0KDQpi ZXN0IHJlZ2FyZHMsDQoNClZsYWQNCg== |
From: Benji S. <ben...@mo...> - 2001-10-22 19:40:41
|
in 0.8.0 we noticed that there was an inconsistency with how new lines were handled for announcements between the front page announcement, and the full text announcement. You can use the following as an example. I put this text in the intro text box, as well as the full text box and nothing but a test<br> this is line 2, but there shouldn't be a space above here And this is line 3 <ul> <li> Point 1 <li> Point 2 </ul> link 'em time...(the next line should be blank) <a href=http://www.yahoo.com>Go Away</a> when viewed on the home page, each \n is translated to a <br />, however when things are viewed in a full text look, the \n are ignored and not translated into <br />'s Is that on purpose? Which one is the intended way? thanks benji --- Benji Spencer Web Programmer Moody Bible Institute 312-329-2288 |
From: spiggy <th...@me...> - 2001-10-22 19:10:58
|
(makes me wonder where did the first one go....) ---------------------------------------------------- first of all, 0.8 is a very good release, imho. while writing several mods for my sisters of mercy site (thats a rock = band btw :) ive had to think about the theming stuff a lot. i want everything = to be in themeboxes so when the theme changes, everything changes.. it is = very difficult and probably resource intensive to be appending strings to a variable and then spit it out in the end. so what phpws has is: $boxtitle=3D"Title"; $boxcontent=3D"content"; themesidebox($boxtitle, $boxcontent) instead i have been using: opensidebox("Title"); echo "content"; //or just plain html closebox(); wouldnt this be a faster way to do it or am i thinking backasswards (is = that a word?) here? was the boxfunction a decision or just a 'legacy nuke' = thing? it would be a lot easier to wrap the theme design around all the boxes = with my way. one boxstyle for the sides and one for the middle.. plus the = usuals for the special styles. plugin could be passing the location and thus determining what style it needs.. the same could be added to the = sideboxes too if right and left sideboxes needed to be different.. of course im pushing the limits for the non-php-programmer theme designers but hey, = its a thought :) of course this will not be relevant in the new (phpws2) version if = everybody is thinking about the templates.. but im not sure how far the thought process in on that either so meanwhile... any thoughts? paivi |
From: Karsten D. <k.d...@fi...> - 2001-10-22 17:11:56
|
On Mon, Oct 22, 2001 at 07:25:21PM +0200, Karsten Dambekalns wrote: > > I am by no means an expert, but I am learning as quickly > > as I can. I may attempt to put together more documentation as I learn the > > code. Please let me know if there are any errors. > > OK, I will look at it quickly, since no one responded I assume the > information is correct :-) > > I will put it up at my site ASAP. After having a quick look, I decided to put it up *now*. Even if there are errors in it, it is *better* than the old stuff... :-) I updated the api documentation along the way. Maybe everybody should take a look (especially the report) and think about it... :-/ 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: Karsten D. <k.d...@fi...> - 2001-10-22 16:22:02
|
On Thu, Oct 18, 2001 at 10:45:22PM -0500, ecrossTexas wrote: > I have updated the part of Karsten's developer documentation that walks > through index.php. Cool! > I am by no means an expert, but I am learning as quickly > as I can. I may attempt to put together more documentation as I learn the > code. Please let me know if there are any errors. OK, I will look at it quickly, since no one responded I assume the information is correct :-) I will put it up at my site ASAP. 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: ecrossTexas <ecr...@ma...> - 2001-10-19 03:54:29
|
I have updated the part of Karsten's developer documentation that walks through index.php. I am by no means an expert, but I am learning as quickly as I can. I may attempt to put together more documentation as I learn the code. Please let me know if there are any errors. This was written with 0.8.0rc5 code...I don't think there have been any changes since 10/13 when I wrote this. =================================================================== Eric T. Wallace ecr...@ma... =================================================================== "To educate a man in mind and not in morals is to educate a menace to society" -- Theodore Roosevelt |
From: Brian W. B. <br...@tu...> - 2001-10-18 18:53:22
|
Dear phpWebSite User: Version 0.8.0 has been released and is now posted. Please see: http://phpwebsite.appstate.edu/ 0.8.0 is an important release for several reasons: o We have finalized an API for Plug-Ins, which means that Plug-Ins written for 0.8.0 will work in a consistent manner, and will continue to work with future versions of phpWebSite. o The transition to class-based modules for the phpWebSite core has been implemented for Web Page creation and the Poll Booth. phpWebSite is becoming increasingly modular in design, and the code is getting smaller. You should notice some performance improvement with this release. o Increased stability. 0.8.0 has gone through five release candidates, and has been extensively tested at Appalachian State University. This upgrade does involve database conversion - PLEASE BACKUP YOUR CURRENT FILES AND DATABASE *BEFORE* ATTEMPTING THE UPGRADE! You will need manually copy your images from /images/user_pages/ to /mod/userpage/images/ Also note that existing plug-ins may not work, although several developers have already ported plug-ins to 0.8.0. Additionally, themes will require some modifications to the poll section of the footer.php file - see the footer.php in the tarball for details. We hope you enjoy this release. Thanks and Kind Regards, Brian Brown phpWebSite Project Manager -- Brian W. Brown Director, Electronic Student Services Student Development Room 269, John Thomas Hall Appalachian State University Boone, NC 28608 vox: 828-262-7124 fax: 828-262-2585 |
From: Adam M. <ad...@tu...> - 2001-10-18 17:20:40
|
Version 0.8.0 has been released and is now posted under downloads at http://phpwebsite.appstate.edu . Be sure to take note of the warning message in the setup script if you are upgrading from a previous version of phpWebSite. Unfortunately the french build is not yet available due to some issues with the pre-processor files that are used in translating. We will get the french build up as soon as possible. Enjoy! Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |
From: Adam M. <ad...@tu...> - 2001-10-04 21:59:51
|
New release canidate has been posted under the downloads on http://phpwebsite.appstate.edu . We're very close to a stable version 8 we just have a couple of modules in the making that we want to get in and tested and are fixing minor upgrade bugs. Anyone who can check-out a current CVS copy and start some testing for us, please do so!! :) It would be greatly appreciated! Take care, Adam --------------------------------- Adam Morton Developer - Web Technology Group Appalachian State University ad...@tu... |