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: Doug R. <dou...@re...> - 2003-12-16 21:47:15
|
I've been playing with inc/runtime.php and 0.9.3-2 but I can't use session variables to point at a class reliably. I'd like to at least work out what is going on before hacking it to work in the always array. I need runtime.php to check for a session pointer to a class, and if it doesn't exist, to create it. It appears to work once, and then on subsequent reloads, the session pointer is still set but not pointing at the class. Trivial example: I create an inc/runtime.php which looks like: <?php require_once(PHPWS_SOURCE_DIR . 'mod/kcart/class/kcTest.php'); if (!isset($_SESSION["SES_kcart_kctest"])) { $_SESSION["SES_kcart_kctest"] = new kcTest; } if (isset($_SESSION["SES_kcart_kctest"])) { print "<p><hr>session var is set<p><hr><p>"; } $_SESSION["SES_kcart_kctest"]->hello(); ?> And a kcTest.php class which looks like: <?php class kcTest { var $foo; function kcTest() { $this->foo = "hi"; } function hello() { print "<p><hr><p>Hello, in kcTest. foo is >".$this->foo."<<p><hr><p>"; } } ?> Stick 'em both in /mod/kcart/inc and away we go. Once. Fire up a new browser and go to /index.php, and it works fine. Hit reload, and I get: Fatal error: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition kctest of the object you are trying to operate on was loaded _before_ the session was started in /home/doug/src/projects/kcart/inc/runtime.php on line 9 I've taken a look at calendar, pagemaster and rssfeeds but they don't appear to be doing anything very different to what I am. Help! Doug Rinckes |
From: Jim W. <ji...@ke...> - 2003-12-14 18:49:33
|
Brian Ghidinelli wrote before I joined the list: > David Macbanay writes: >> Now I get a error from line 484 where it performs a "show index" query. > > I rewrote this too, but I don't know how well it will fare on multi-column > indexes. It works fine for the default case of a single primary key though: > > function sqlGetIndex($tableName){ > > $tablename = $this->tbl_prefix . $tableName; > $sql = "SELECT c2.relname, i.indisprimary, i.indisunique, > pg_catalog.pg_get_indexdef(i.indexrelid) as column FROM pg_catalog.pg_class > c, pg_catalog.pg_class c2, pg_catalog.pg_index i WHERE c.oid = (SELECT c.oid > FROM pg_catalog.pg_class c WHERE c.relname ~ '^" . $tablename . "$') AND > c.oid = i.indrelid AND i.indexrelid = c2.oid ORDER BY i.indisprimary DESC, > i.indisunique DESC, c2.relname"; > // echo $sql; > > if ($tableInfo = $this->getAllAssoc($sql)) > { > > if (strlen($tableInfo[0]["column"]) > 0) > { > $start = strpos($tableInfo[0]["column"], "(") + 1; > $end = strpos($tableInfo[0]["column"], "("); > return substr($tableInfo[0]["column"], $start, $end-$start); > } > > } > > return NULL; > } You can pull off the same thing with a simpler query on just the pg_indexes table. Note that the index names end with "_pkey" if they are primary for the table. You are right about this function not working with multicolumn indexes, depending on what you mean by "not working" that is. If the purpose is to establish next ID values _prior_ to inserting the rows, this is will as you said work with those single column indices. The only sensible solution to this problem I can think of is to build a core application table of autoincremented primary keys that is queried in this routine. Actually the routine should be renamed to something else like sqlgetAIkey or something similar, since it isn't ever going to do what it says. I'm wondering where you are at with this project of getting running in postgres. It seems that I've got something working now here, still going through the different modules to check functionality. My changes are based on the 0.9.3-1 release and the backport fixes that were posted on this list week before last (the phpws-0.9.3-1.supplemental.zip file). If there is interest, I could easily supply a diff -u file for anyone who wants it. Also, I'm kind of wondering where this project actually is in terms of moving toward multiple database support. There seems to be some work in the 094 cvs, but much, and reading some of the archives it appears that the developers may be more concerned with other issues. Is there much interest in this moving forward? Best regards, Jim |
From: Geoff S. <ge...@ho...> - 2003-12-14 00:32:28
|
Am I nuts? I thought that there was a tell-a-friend module. But, I sure can't find it now that I want to use it. Geoff |
From: Steven L. <st...@tu...> - 2003-12-10 16:16:35
|
Hello Everyone. In order to fix problems with branch installs/upgrades some changes are going to need to be made. It has recently become apparent to me that making tbl_prefix and home_dir defines was a pretty bone-headed idea on my behalf. These values change on the fly when boost/branch are running and defines cannot be changed. So we all need to change PHPWS_HOME_DIR to $GLOBALS['core']->home_dir and update usage of PHPWS_TBL_PREFIX in install.php and update.php files. -- Steven Levin Computer Systems Admin I Electronic Student Services Appalachian State University Phone: 828.262.6740 http://phpwebsite.appstate.edu |
From: Wendall C. <wen...@83...> - 2003-12-10 06:40:44
|
phpwsRSSFeeds is a module for the phpWebSite CMS 0.9.3-1 or higher. It gives the ability to display and create syndicated news feeds. The module is built on the PEAR XML_RSS Parser. New in this version is the ability to create RSS 1.0 backend feeds from Announcements and Calendar. Special thanks to Shaun Murray (singletrack) for all the bugs he found in the 0.1.1 (0.2.0-prerelease) yesterday. Everything should work perfect now and every feature you would ever dream of has been added. ;) (for today anyway) Enjoy! Wendall |
From: Jonathan F. <jon...@fa...> - 2003-12-04 02:22:39
|
Sorry about the confusion from my original post. I don't have a CSS/Layout issue as much as a question about the workings of the layout module and configuring the transfers.tpl file. Normally a theme's theme.tpl file looks like this: =========================== <table> <tr> <td> {LEFT_COL_TOP} {LEFT_COL_MID} {LEFT_COL_BOTTOM} </td> <td> {TOP} {BODY} {BOTTOM} <td> </td> {RIGHT_COL_TOP} {RIGHT_COL_MID} {RIGHT_COL_BOTTOM} </td> </tr> </table> ========================== and a corresponding transfers.tpl file that looks like this: ========================== top:2:1 body:2:2 bottom:2:3 left_col_top:1:1 left_col_mid:1:2 left_col_bottom:1:3 right_col_top:3:1 right_col_mid:3:2 right_col_bottom:3:3 ========================== Trying to get away from the inherent left/middle/right structure of the layout module I came across this note in the old ./mod/layout/docs/theme_creation.txt file "Also, if nothing else, make SURE you have a BODY theme variable. phpWebSite defaults blocks to that variable if it gets confused." I created a theme.tpl file that only contained the {BODY} theme variable assuming that all content would simply default to that theme variable. I plan on controlling the layout of all pages using CSS. My question is, if my theme.tpl file only has the {BODY} tag, what should the transfers.tpl file look like? I tried: body:2:2 body:1:1 and body But when using this new theme setup, I notice that some "elements" appear twice. There are two mini calendar boxes and two main menu boxes in the output. This is before any use of CSS, just the raw output from theme.tpl. Does anyone know why this is happening or how to fix it? Does anyone know what the transfers.tpl file should look like if the only theme variable in use is the {BODY}? Jonathan ----- Original Message ----- From: "aDarkling" <ju...@re...> Cc: "phpWebSite Devs" <php...@li...> Sent: Tuesday, December 02, 2003 10:44 AM Subject: Re: [Phpwebsite-developers] Need help overriding the layout module > It's probably going to be pretty hard to get help on a CSS/Layout > interactivity issue without providing a demo site so we can see what > you're talking about. > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > |
From: Matthew M. <ma...@tu...> - 2003-12-03 13:13:26
|
This has been fixed in 0.9.3-2. Matt On Wed, 2003-12-03 at 06:57, Richard Sumilang wrote: > I don't know about you guys but this is the way my constructor looks > like for the PHPWS_User_Groups class in the User mod. If you notice > you'll see that the $members variable is erased if it got or didn't get > the information and I was just wondering if that made sense? The > alternative is just to use the loadGroup function after the constructor > which makes it 2 steps to get the group information. > > function PHPWS_User_Groups($group_id=NULL){ > if (isset($group_id) && is_numeric($group_id)) > if (!$this->loadGroup($group_id)) > $this->members=array(); > else > $this->members=array(); > } > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Richard S. <ri...@ri...> - 2003-12-03 11:57:16
|
I don't know about you guys but this is the way my constructor looks like for the PHPWS_User_Groups class in the User mod. If you notice you'll see that the $members variable is erased if it got or didn't get the information and I was just wondering if that made sense? The alternative is just to use the loadGroup function after the constructor which makes it 2 steps to get the group information. function PHPWS_User_Groups($group_id=NULL){ if (isset($group_id) && is_numeric($group_id)) if (!$this->loadGroup($group_id)) $this->members=array(); else $this->members=array(); } |
From: Wendall C. <we...@83...> - 2003-12-03 11:13:29
|
Thanks Don. Updating my readme files now. Wendall On Mon, 2003-12-01 at 08:18, Don Seiler wrote: > Some of the users and developers might be familiar with the > phpws-0.9.3-1.supplemental.zip file that I require for all my modules. > I put this file together with Steven "JYDAllStar" Levin's help to > address some bugs fixed in phpws 0.9.3-2, so users can take advantage > now. > > This file is now centrally hosted at ASU. The URL is: > > http://phpwebsite.appstate.edu/downloads/misc/phpws-0.9.3-1.supplemental.zip > > I'll work on changing all my docs to reference this. FYI. Any and all > other developers feel free to utilize this. Basically it allows my to > make my module compatible with 0.9.3-1 (plus supplemental) and 0.9.3-2, > which is a pretty different beast. > > Don. |
From: aDarkling <ju...@re...> - 2003-12-02 15:45:27
|
It's probably going to be pretty hard to get help on a CSS/Layout interactivity issue without providing a demo site so we can see what you're talking about. |
From: Jonathan F. <jon...@fa...> - 2003-12-02 06:29:19
|
Inspired by this site http://www.csszengarden.com I have spent the last couple of days designing a phpws theme using only CSS for both design elements AND content placement. I started by creating a theme.tpl file that looked something like this. (stuff in between <head></head> tags not withstanding) ====================== <div id="container"> <div id="left"> {LEFT_COL_TOP} {LEFT_COL_MID} {LEFT_COL_BOTTOM} </div> <div id="main"> {TOP} {BODY} {BOTTOM} </div> <div id="right"> {RIGHT_COL_TOP} {RIGHT_COL_MID} {RIGHT_COL_BOTTOM} </div> </div> ====================== Then changed my default_box.tpl to be ---------------------- <div id="defaultbox"> <p class="title">{TITLE}</p> <p class="content">{CONTENT}</p> </div> ---------------------- After that, I created a number of other boxes for each phpws "element" ---------------------- <div id="minicalendar"> <p class="title">{TITLE}</p> <p class="content">{CONTENT}</p> </div> ---------------------- <div id="adminmenu"> ... </div> ---------------------- <div id="menu"> ... </div> ---------------------- Etc... Using the layout module to set the custom boxstyle for each "element" I could then manipulate the look and feel of each through the css, plus specify the location/position. An example from my style.css for the calendar is ====================== #minicalendar { position: absolute; top: 50px; left: 560px; display: block; } #minicalendar .title { display: none; } ====================== This means that my mini calendar appears in the upper right hand corner of my site (and actually on top of a nice top banner image specified in the css) even if the mini calendar is actually in the {LEFT_COL_MID} theme variable. SO... Not to bore you with the specifics of css2 absolute and relate positioning tags (http://www.stopdesign.com/also/articles/absolute/) but eventually the standard theme variables {LEFT_COL_TOP}, {LEFT_COL_MID} etc became more of a hindrance than a help. If I wanted to specify an absolute position for the <div id="left"> tag (see theme.tpl example above) but wanted my minicalendar to appear at the top of the page, I was forced to move the the minicalendar element from the Left side to the Right side using the Layout Control Panel "Move Boxes" option. If you can't already guess, that's now out of control. Since the position of the minicalendar content is controlled through the css by the <div id="minicalendar"> from a custom "minicalendar_box.tpl" template file, but the layout module's move buttons appear outside of that div tag, the minicalendar might appear on one side of the page, and the move options for that content might appear some place all together different, and its impossible to match up which move option goes with which element. Essentially, the Move Boxes option of the layout module do not apply to what I am trying to do, nor do I expect them to apply. I started to look for a way to free myself for the move boxes concept of the layout module. I read in the old ./mod/layout/docs/theme_creation.txt file that phpws will default boxes to the {BODY} theme variable if it gets confused about where to place "elements". Well this is really all I want - just to have phpws output all content to the one {BODY} variable, then I can use the Layout module to simply change the boxstyle for each "element" and control their layout through the .css Well I tried to create a theme.tpl file with only a {BODY} theme variable - but am still not sure what to do about the transfers.tpl file. I first tried simply body:2:2 Then tried just having body:1:1 But in both cases I noticed that some elements like the mini calendar and admin menu now appear twice in the final HTML output and I couldn't figure out why or how to prevent this. If anyone has made it this far do you have any ideas to achieve a single theme variable {BODY} in the theme.tpl file and what a corresponding transfers.tpl file would look like? I just need to prevent the double output of some of the "elements". Thanks Jonathan Fallin |
From: Don S. <do...@se...> - 2003-12-01 16:21:49
|
Some of the users and developers might be familiar with the phpws-0.9.3-1.supplemental.zip file that I require for all my modules. I put this file together with Steven "JYDAllStar" Levin's help to address some bugs fixed in phpws 0.9.3-2, so users can take advantage now. This file is now centrally hosted at ASU. The URL is: http://phpwebsite.appstate.edu/downloads/misc/phpws-0.9.3-1.supplemental.zip I'll work on changing all my docs to reference this. FYI. Any and all other developers feel free to utilize this. Basically it allows my to make my module compatible with 0.9.3-1 (plus supplemental) and 0.9.3-2, which is a pretty different beast. Don. --=20 "If anybody harbors a terrorist, they're a terrorist. If they fund a terrorist, they're a terrorist. If they house terrorists, they're terroris= ts. I mean, I can't make it any more clearly to other nations around the world." George W. Bush November 26, 2001 Answering questions from the press at the White House. Source: BBC World N= ews and The NewsHour with Jim Lehrer (PBS). |
From: Geoff S. <ge...@ho...> - 2003-12-01 04:10:44
|
I'm having a template problem. Take a look at this page:=20 http://www.skinnerforsenate.com/index.php?module=3Dpagemaster&PAGE_user_op=3Dvi= ew_page&PAGE_id=3D19 I cannot figure out how to get rid of the word "PageMaster" in the header. Also, I can't seem to get rid of the image behind the word "PageMaster" Geoff |
From: Don S. <do...@se...> - 2003-11-22 03:39:03
|
phpwsBB is a native bulletin board module for the phpWebSite content manage system, version 0.9.3-1 or later. It features thread monitoring and administration, including marking threads sticky, locking threads, and forking messages off to new threads. phpwsBB 0.6.1 has a minor bug fix where topic counts in the forum listings weren't being updated when topics were deleted. Also utilizing new search code for phpWS 0.9.3-2 core. 0.9.3-1 users are unaffected. IMPORTANT: If you are using this with phpWebSite 0.9.3-1 or lower, you WILL need the supplemental core files found here: http://phpwsbb.sourceforge.net/phpws-0.9.3-1.supplemental.zip If you file bugs or support requests because you didn't do this, you will soon know the true meaning of pain. http://phpwsbb.sourceforge.net --=20 "There's not going to be enough people in the system to take advantage of people like me." George W. Bush June 9, 2000 Referring to a possible Social Security crisis. Wilton, Connecticut. |
From: Don S. <do...@se...> - 2003-11-22 03:14:20
|
LeagueSite is a PHPWebSite (>=3D 0.9.3-1) module that adds roster, stats, and schedule information for a sports league or team onto the PHPWS base. It can be used to create a website for their fans to learn more about the league and its teams and players. Release 0.4.0 is now 0.9.3-2 compliant, and also compatible with 0.9.3-1 (with supplements). Also a couple of bug fixes. If you are using this on 0.9.3-1, you'll need the phpws supplemental file found here: http://leaguesite.sourceforge.net/phpws-0.9.3-1.supplemental.zip Any help or support requests due to not utilizing this file properly will be met with the evil eye. The supplement is NOT needed if using 0.9.3-2 or later. http://leaguesite.sourceforge.net --=20 "This is still a dangerous world. It's a world of madmen and uncertainty a= nd potential mential losses." George W. Bush January 14, 2000 Quoted in the Financial Times. |
From: Steven L. <st...@tu...> - 2003-11-19 19:40:30
|
Hello Folks, I am putting together a list of third party modules for phpWebSite. The current list can be found here: http://phpwebsite.appstate.edu/index.php?module=pagemaster&PAGE_user_op=view_page&PAGE_id=52 Please look over it and make sure I have you modules listed. If not send me an email to steven[at]tux[dot]appstate[dot]edu. Also if there is incorrect info please correct me and send any extra info you might what posted about your module. (ie. screen-shot or extra text) -- Steven Levin Computer Systems Admin I Electronic Student Services Appalachian State University Phone: 828.262.6740 http://phpwebsite.appstate.edu |
From: Don S. <do...@se...> - 2003-11-15 07:06:54
|
LeagueSite is a PHPWebSite (>= 0.9.3-1) module that adds roster, stats, and schedule information for a sports league or team onto the PHPWS base. It can be used to create a website for their fans to learn more about the league and its teams and players. Release 0.3.1 fixes a couple of bugs, the most important one causing games with empty scores to be saved as 0-0 ties, which messed up standings, as you might well see. As with 0.3.0, you'll need the phpws supplemental file found here: http://leaguesite.sourceforge.net/phpws-0.9.3-1.supplemental.zip Any help or support requests due to not utilizing this file properly will be met with the evil eye. http://leaguesite.sourceforge.net |
From: Richard S. <ri...@ri...> - 2003-11-13 19:20:24
|
Sorry about that. I didn't read that email. On Nov 13, 2003, at 10:40 AM, Matthew McNaney wrote: > Richard, > > This is a pre alpha version that I released just for testing. I warned > everyone that these files were missing. > > Here is an updated tarball: > http://phpwebsite.appstate.edu/downloads/pear/pear-1.3b3+.tar.gz > > When 0.9.4 is ready for general release, library files and the like > will > accompany it. > > For now it is in a raw state and not ready for criticism concerning its > readiness. > > Matt > > > On Thu, 2003-11-13 at 12:33, Richard Sumilang wrote: >> No I don't, I copied the library from a previous version of PHPWS. >> Where can I download it and why isn't PHPWS not shipped with it? >> >> - Richard S. >> >> >> On Nov 11, 2003, at 12:39 PM, Matthew McNaney wrote: >> >>> Do you have the Pear File library in your lib/pear directory? >>> >>> >>> On Tue, 2003-11-11 at 15:00, Richard Sumilang wrote: >>>> I get this error trying to install it... >>>> >>>> Warning: writeconfigfile(File.php): failed to open stream: No such >>>> file >>>> or directory in >>>> /Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on >>>> line62 >>>> >>>> Fatal error: writeconfigfile(): Failed opening required 'File.php' >>>> (include_path='.:./lib/pear/') >>>> in/Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on >>>> line >>>> 62 >>>> >>>> It also kept on asking me for a password for my database when trying >>>> to >>>> install it. I don't have a password but it insisted that I must type >>>> one in. >>>> >>>> My system is Mac OS X Panther, PHP 4.3.3, PostgreSQL 7.3.3. >>>> >>>> Also, I copied the lib folder from PHPWS 0.9.3 because this one had >>>> an >>>> empty lib folder and was missing the files and images directory. >>>> >>>> Regards >>>> Richard S. >>>> >>>> >>>> On Nov 11, 2003, at 9:57 AM, Matthew McNaney wrote: >>>> >>>>> In case you can't get to. >>>>> >>>>> http://phpwebsite.appstate.edu/downloads/phpws094.tar.gz >>>>> >>>>> -- >>>>> Matthew McNaney >>>>> Internet Systems Architect >>>>> Electronic Student Services >>>>> Appalachian State University >>>>> Phone: 828-262-6493 >>>>> http://phpwebsite.appstate.edu >>>>> http://ess.appstate.edu >>>>> >>>>> >>>>> >>>>> ------------------------------------------------------- >>>>> This SF.Net email sponsored by: ApacheCon 2003, >>>>> 16-19 November in Las Vegas. Learn firsthand the latest >>>>> developments in Apache, PHP, Perl, XML, Java, MySQL, >>>>> WebDAV, and more! http://www.apachecon.com/ >>>>> _______________________________________________ >>>>> Phpwebsite-developers mailing list >>>>> Php...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers >>>>> >>>>> >>>> >>>> >>>> >>>> ------------------------------------------------------- >>>> This SF.Net email sponsored by: ApacheCon 2003, >>>> 16-19 November in Las Vegas. Learn firsthand the latest >>>> developments in Apache, PHP, Perl, XML, Java, MySQL, >>>> WebDAV, and more! http://www.apachecon.com/ >>>> _______________________________________________ >>>> Phpwebsite-developers mailing list >>>> Php...@li... >>>> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers >>> -- >>> Matthew McNaney >>> Internet Systems Architect >>> Electronic Student Services >>> Appalachian State University >>> Phone: 828-262-6493 >>> http://phpwebsite.appstate.edu >>> http://ess.appstate.edu >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email sponsored by: ApacheCon 2003, >>> 16-19 November in Las Vegas. Learn firsthand the latest >>> developments in Apache, PHP, Perl, XML, Java, MySQL, >>> WebDAV, and more! http://www.apachecon.com/ >>> _______________________________________________ >>> Phpwebsite-developers mailing list >>> Php...@li... >>> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers >>> >>> > -- > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Appalachian State University > Phone: 828-262-6493 > http://phpwebsite.appstate.edu > http://ess.appstate.edu > > > |
From: Matthew M. <ma...@tu...> - 2003-11-13 18:44:12
|
Richard, This is a pre alpha version that I released just for testing. I warned everyone that these files were missing. Here is an updated tarball: http://phpwebsite.appstate.edu/downloads/pear/pear-1.3b3+.tar.gz When 0.9.4 is ready for general release, library files and the like will accompany it. For now it is in a raw state and not ready for criticism concerning its readiness. Matt On Thu, 2003-11-13 at 12:33, Richard Sumilang wrote: > No I don't, I copied the library from a previous version of PHPWS. > Where can I download it and why isn't PHPWS not shipped with it? > > - Richard S. > > > On Nov 11, 2003, at 12:39 PM, Matthew McNaney wrote: > > > Do you have the Pear File library in your lib/pear directory? > > > > > > On Tue, 2003-11-11 at 15:00, Richard Sumilang wrote: > >> I get this error trying to install it... > >> > >> Warning: writeconfigfile(File.php): failed to open stream: No such > >> file > >> or directory in > >> /Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on line62 > >> > >> Fatal error: writeconfigfile(): Failed opening required 'File.php' > >> (include_path='.:./lib/pear/') > >> in/Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on line > >> 62 > >> > >> It also kept on asking me for a password for my database when trying > >> to > >> install it. I don't have a password but it insisted that I must type > >> one in. > >> > >> My system is Mac OS X Panther, PHP 4.3.3, PostgreSQL 7.3.3. > >> > >> Also, I copied the lib folder from PHPWS 0.9.3 because this one had an > >> empty lib folder and was missing the files and images directory. > >> > >> Regards > >> Richard S. > >> > >> > >> On Nov 11, 2003, at 9:57 AM, Matthew McNaney wrote: > >> > >>> In case you can't get to. > >>> > >>> http://phpwebsite.appstate.edu/downloads/phpws094.tar.gz > >>> > >>> -- > >>> Matthew McNaney > >>> Internet Systems Architect > >>> Electronic Student Services > >>> Appalachian State University > >>> Phone: 828-262-6493 > >>> http://phpwebsite.appstate.edu > >>> http://ess.appstate.edu > >>> > >>> > >>> > >>> ------------------------------------------------------- > >>> This SF.Net email sponsored by: ApacheCon 2003, > >>> 16-19 November in Las Vegas. Learn firsthand the latest > >>> developments in Apache, PHP, Perl, XML, Java, MySQL, > >>> WebDAV, and more! http://www.apachecon.com/ > >>> _______________________________________________ > >>> Phpwebsite-developers mailing list > >>> Php...@li... > >>> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > >>> > >>> > >> > >> > >> > >> ------------------------------------------------------- > >> This SF.Net email sponsored by: ApacheCon 2003, > >> 16-19 November in Las Vegas. Learn firsthand the latest > >> developments in Apache, PHP, Perl, XML, Java, MySQL, > >> WebDAV, and more! http://www.apachecon.com/ > >> _______________________________________________ > >> Phpwebsite-developers mailing list > >> Php...@li... > >> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > -- > > Matthew McNaney > > Internet Systems Architect > > Electronic Student Services > > Appalachian State University > > Phone: 828-262-6493 > > http://phpwebsite.appstate.edu > > http://ess.appstate.edu > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: ApacheCon 2003, > > 16-19 November in Las Vegas. Learn firsthand the latest > > developments in Apache, PHP, Perl, XML, Java, MySQL, > > WebDAV, and more! http://www.apachecon.com/ > > _______________________________________________ > > Phpwebsite-developers mailing list > > Php...@li... > > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > > -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Richard S. <ri...@ri...> - 2003-11-13 17:33:11
|
No I don't, I copied the library from a previous version of PHPWS. Where can I download it and why isn't PHPWS not shipped with it? - Richard S. On Nov 11, 2003, at 12:39 PM, Matthew McNaney wrote: > Do you have the Pear File library in your lib/pear directory? > > > On Tue, 2003-11-11 at 15:00, Richard Sumilang wrote: >> I get this error trying to install it... >> >> Warning: writeconfigfile(File.php): failed to open stream: No such >> file >> or directory in >> /Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on line62 >> >> Fatal error: writeconfigfile(): Failed opening required 'File.php' >> (include_path='.:./lib/pear/') >> in/Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on line >> 62 >> >> It also kept on asking me for a password for my database when trying >> to >> install it. I don't have a password but it insisted that I must type >> one in. >> >> My system is Mac OS X Panther, PHP 4.3.3, PostgreSQL 7.3.3. >> >> Also, I copied the lib folder from PHPWS 0.9.3 because this one had an >> empty lib folder and was missing the files and images directory. >> >> Regards >> Richard S. >> >> >> On Nov 11, 2003, at 9:57 AM, Matthew McNaney wrote: >> >>> In case you can't get to. >>> >>> http://phpwebsite.appstate.edu/downloads/phpws094.tar.gz >>> >>> -- >>> Matthew McNaney >>> Internet Systems Architect >>> Electronic Student Services >>> Appalachian State University >>> Phone: 828-262-6493 >>> http://phpwebsite.appstate.edu >>> http://ess.appstate.edu >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email sponsored by: ApacheCon 2003, >>> 16-19 November in Las Vegas. Learn firsthand the latest >>> developments in Apache, PHP, Perl, XML, Java, MySQL, >>> WebDAV, and more! http://www.apachecon.com/ >>> _______________________________________________ >>> Phpwebsite-developers mailing list >>> Php...@li... >>> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers >>> >>> >> >> >> >> ------------------------------------------------------- >> This SF.Net email sponsored by: ApacheCon 2003, >> 16-19 November in Las Vegas. Learn firsthand the latest >> developments in Apache, PHP, Perl, XML, Java, MySQL, >> WebDAV, and more! http://www.apachecon.com/ >> _______________________________________________ >> Phpwebsite-developers mailing list >> Php...@li... >> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > -- > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Appalachian State University > Phone: 828-262-6493 > http://phpwebsite.appstate.edu > http://ess.appstate.edu > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > |
From: Matthew M. <ma...@tu...> - 2003-11-11 20:41:31
|
Do you have the Pear File library in your lib/pear directory? On Tue, 2003-11-11 at 15:00, Richard Sumilang wrote: > I get this error trying to install it... > > Warning: writeconfigfile(File.php): failed to open stream: No such file > or directory in > /Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on line62 > > Fatal error: writeconfigfile(): Failed opening required 'File.php' > (include_path='.:./lib/pear/') > in/Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on line > 62 > > It also kept on asking me for a password for my database when trying to > install it. I don't have a password but it insisted that I must type > one in. > > My system is Mac OS X Panther, PHP 4.3.3, PostgreSQL 7.3.3. > > Also, I copied the lib folder from PHPWS 0.9.3 because this one had an > empty lib folder and was missing the files and images directory. > > Regards > Richard S. > > > On Nov 11, 2003, at 9:57 AM, Matthew McNaney wrote: > > > In case you can't get to. > > > > http://phpwebsite.appstate.edu/downloads/phpws094.tar.gz > > > > -- > > Matthew McNaney > > Internet Systems Architect > > Electronic Student Services > > Appalachian State University > > Phone: 828-262-6493 > > http://phpwebsite.appstate.edu > > http://ess.appstate.edu > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: ApacheCon 2003, > > 16-19 November in Las Vegas. Learn firsthand the latest > > developments in Apache, PHP, Perl, XML, Java, MySQL, > > WebDAV, and more! http://www.apachecon.com/ > > _______________________________________________ > > Phpwebsite-developers mailing list > > Php...@li... > > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Richard S. <ri...@ri...> - 2003-11-11 20:00:36
|
I get this error trying to install it... Warning: writeconfigfile(File.php): failed to open stream: No such file or directory in /Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on line62 Fatal error: writeconfigfile(): Failed opening required 'File.php' (include_path='.:./lib/pear/') in/Library/WebServer/Sites/phpwebsite094/setup/class/Setup.php on line 62 It also kept on asking me for a password for my database when trying to install it. I don't have a password but it insisted that I must type one in. My system is Mac OS X Panther, PHP 4.3.3, PostgreSQL 7.3.3. Also, I copied the lib folder from PHPWS 0.9.3 because this one had an empty lib folder and was missing the files and images directory. Regards Richard S. On Nov 11, 2003, at 9:57 AM, Matthew McNaney wrote: > In case you can't get to. > > http://phpwebsite.appstate.edu/downloads/phpws094.tar.gz > > -- > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Appalachian State University > Phone: 828-262-6493 > http://phpwebsite.appstate.edu > http://ess.appstate.edu > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > |
From: Matthew M. <ma...@tu...> - 2003-11-11 18:02:04
|
In case you can't get to. http://phpwebsite.appstate.edu/downloads/phpws094.tar.gz -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Richard S. <ri...@ri...> - 2003-11-11 16:58:23
|
After using postgres and seeing it's advantages over mysql you might not want go back ;-) On Nov 11, 2003, at 5:41 AM, Matthew McNaney wrote: > Well, Wendall got me to test phpwebsite in Windows so I might as well > learn postgres. > > I am trying to get it to run in my postgres installation. When I get it > fixed I'll commit the changes. > > Also Don (rizzo) suggested these discussions go on in SF. I *suppose* > we > could start bug tracking and discussion on it but it may be too early. > Anyone else have ideas on this? > > Matt > > > On Mon, 2003-11-10 at 15:28, Brian Ghidinelli wrote: >> Matthew McNaney writes: >> >>> Developers, if you get a chance, please download a copy of >>> phpwebsite094 >>> from CVS and try an install. >> >> I'm trying on Redhat 7.3 with Postgres 7.3. Firstly, the new install >> screens/process is much easier to follow than before. That being >> said, it >> seemed to go quite smoothly until installing modules where there were >> some >> problems registering user module to the core. I'm pretty sure this is >> caused by the autoincrement/sequence in Postgres not working properly >> (e.g., >> I think it needs to be specified in the insert even though it >> automatically >> increments). The error.log indicates: >> >> 12:21:32 11/10/03 Error [notice] [-1] INSERT INTO users (created, >> updated, >> active, approved, username, password, deity) VALUES (1068495691, >> 1068495691, >> 1, 1, 'Anonymous', NULL, 0) [nativecode=ERROR: ExecInsert: Fail to >> add null >> value in not null attribute id >> ] >> 12:21:32 11/10/03 Error [notice] [-1] INSERT INTO users (created, >> updated, >> active, approved, username, password, deity) VALUES (1068495692, >> 1068495692, >> 1, 1, 'xxx', 'xxx', 1) [nativecode=ERROR: ExecInsert: Fail to add >> null >> value in not null attribute id >> ] >> 12:21:34 11/10/03 Error [notice] [-1] INSERT INTO modules (title, >> proper_name, version, active, register) VALUES ('users', 'Users', >> '2.0', 1, >> 1) [nativecode=ERROR: ExecInsert: Fail to add null value in not null >> attribute priority >> ] >> >> >> The next step generated more of the same errors trying to install the >> control panel and layout manager: >> >> 12:24:41 11/10/03 Error [notice] [-1] INSERT INTO modules (title, >> proper_name, version, active, register) VALUES ('layout', 'Layout', >> '2.0', >> 1, 0) [nativecode=ERROR: ExecInsert: Fail to add null value in not >> null >> attribute priority >> ] >> 12:24:43 11/10/03 Error [notice] [-1] INSERT INTO modules (title, >> proper_name, version, active, register) VALUES ('controlpanel', >> 'Control >> Panel', '2.0', 1, 1) [nativecode=ERROR: ExecInsert: Fail to add null >> value >> in not null attribute priority >> ] >> >> I believe the queries for PG need to have id specified in the list of >> columns and then nextval() for the value or something to that effect. >> I >> don't have much experience with auto-incrementing columns as I tend >> to use >> UUID/GUIDs for my PKs. >> >> But, awesome work, I can already see it coming together. I'll be >> happy to >> help hack away on this as much as possible. >> >> >> Brian >> >> >> >> ------------------------------------------------------- >> This SF.Net email sponsored by: ApacheCon 2003, >> 16-19 November in Las Vegas. Learn firsthand the latest >> developments in Apache, PHP, Perl, XML, Java, MySQL, >> WebDAV, and more! http://www.apachecon.com/ >> _______________________________________________ >> Phpwebsite-developers mailing list >> Php...@li... >> https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > -- > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Appalachian State University > Phone: 828-262-6493 > http://phpwebsite.appstate.edu > http://ess.appstate.edu > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > |
From: Matthew M. <ma...@tu...> - 2003-11-11 16:33:26
|
phpwebsite 094 has been tested under postgres. I have gotten it to successfully install. Please see if you can replicate my success. Thanks to Brian for pointing out postgres shortcomings. - Matt -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |