From: phpWebSite @ Mistral-Networks.co.u. <php...@mi...> - 2001-07-20 10:21:14
|
Hi Y'all, Just starting to work with phphWebSite and see massive potential for it. I'm looking at using it for a site with a PostgreSQL backend rather than MySQL. Is any one working on porting phpWebSite to use the PEAR db class or a custom built DB abstaction layer? Regards Dean |
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: Matthew M. <ma...@tu...> - 2002-01-04 13:05:44
|
> >can't checkout 'fallout' using wincvs, i get: >cvs server: Updating fallout >cvs server: failed to create lock directory in repository `/home/cvsroot/fallout': >Permission denied >cvs server: failed to obtain dir lock in repository `/home/cvsroot/fallout' >cvs [server aborted]: read lock failed - giving up > >However, i can get 'phpwebsite' just fine. Can someone shed some light?:) >TIA, >-W.D. i am taking a look at it. I can't figure out why it is not working now :( I'll let you know when it is fixed. Matt 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-08-07 00:23:58
|
Greetings all, There are some major changes in the core that need explaining. First, CVS. The development team has been working on a new format for CVS. The core will be separated into its own checkout. Modules will be put into a different directory as will themes. There will also be levels of permission on these directories. Expect these changes to go into effect soon. The second big change is a recoding of the core to allow register globals to be turned off. This is in response to the direction PHP is taking. Since they went to all the trouble of creating their predefined variables, we might as well take advantage of them :) What this means was a change in the way the core works. Traditional globals are no longer used. They were extremely convenient but unfortunately not so secure. Sessions also changed, but you will not have to worry about them. The new code takes care of that. So what is required of module developers? Well there is good news and bad news. The good news. Before, you had to "global" essential objects in your function like so: function foo(){ global $core, $OBJ_layout, $OBJ_fatcat; ..code You can change those to: function foo(){ extract($GLOBALS); ..code The bright side is that you should never have to worry about not having the object you need in your function. Now the bad news. First, content variables are kind of goofy. Sometimes you need to send your content variable to the GLOBALS array like so: function foo() { ... code ... $GLOBALS["CNT_my_mod"] = $CNT_my_mod; } The old global was nice because if called you could read and write to the variable and the changes would be made. Not so with register_globals turned off. You must plug the information back into the $GLOBALS array. Program accordingly. Something else you will need to change are post, get, and cookie variables. These processes do not initialize a usable variable. You will need to call the variable from the appropriate array: $_POST, $_GET, or $_COOKIE. On the bright side, they are automatically global, so you can easily access them in your functions. You can also use $_REQUEST if you are getting both posts and gets to your file. I apologize if these are ideas you are already familiar with, but you will probably need to make adjustments to your current modules to get them to function. One more thing, as the core has gone through many changes since I wrote the old module compatibility, we are going to revisit this again later. We have taken out legacy code and will rewrite scripts to handle them later. Please ignore the documentation that explains conversions for now. I hope these changes will make phpWebSite better in the long run. I think it will. I thank the Sourceforge community for bringing it to my attention. Sincerely, Matt McNaney ----------------------------- 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: Steven L. <st...@tu...> - 2002-10-14 14:44:26
|
Hello All, I wanted to bring something up for discussion that I thought might be a good idea. Matt I saw that you had made a class dir in your module directory for fatcat to place all class class files into. I like this idea, does anyone else agree? I also think we should possibly move our rights files to the conf directory. Then modules would be extremely organized and the only file in the base module directory would be the index file. What does everyone think? -- 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-14 14:49:46
|
+1 here...sounds like a novel idea :) Adam > Hello All, > > I wanted to bring something up for discussion that I thought might be > a > good idea. Matt I saw that you had made a class dir in your module > directory for fatcat to place all class class files into. I like this > idea, does anyone else agree? I also think we should possibly move our > rights files to the conf directory. Then modules would be extremely > organized and the only file in the base module directory would be the > index file. What does everyone think? > > > -- > 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: Brian W. B. <br...@tu...> - 2002-10-14 15:05:02
|
+1 here. Brian > I wanted to bring something up for discussion that I thought might be > a > good idea. Matt I saw that you had made a class dir in your module > directory for fatcat to place all class class files into. I like this > idea, does anyone else agree? I also think we should possibly move our > rights files to the conf directory. Then modules would be extremely > organized and the only file in the base module directory would be the > index file. What does everyone think? |
From: Matthew M. <ma...@tu...> - 2002-10-14 15:16:48
|
+1 Sure :) Make it gradual though to prevent explosions. Matt > +1 here. > > Brian > > >> I wanted to bring something up for discussion that I thought might >> be >> a >> good idea. Matt I saw that you had made a class dir in your module >> directory for fatcat to place all class class files into. I like this >> idea, does anyone else agree? I also think we should possibly move >> our rights files to the conf directory. Then modules would be >> extremely organized and the only file in the base module directory >> would be the index file. What does everyone think? > > > > > > > ------------------------------------------------------- > 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 Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Mauro C. <mau...@st...> - 2004-07-14 09:46:50
|
Hi! i'm developing a module based on the menuman module. After 1 day of work i have find why my menus compare olways then the menu manager are loaded: because in the index.php of phpwebsite the first line of code define this global array: $GLOBALS['ALWAYS'] = array("layout", "users", "language", "fatcat", "search", "menuman", "comments"); Now i have add my module in the array and always work fine, but i want know the correct way to do this. I think that edit manually the file are not correct. Thanks! CArOgNa |
From: Matthew M. <ma...@tu...> - 2004-07-14 13:29:24
|
Are you running boost to install your module? On Wed, 2004-07-14 at 05:41, Mauro Caon wrote: > Hi! > i'm developing a module based on the menuman module. > After 1 day of work i have find why my menus compare olways then the menu > manager are loaded: because in the index.php of phpwebsite the first line > of code define this global array: > > $GLOBALS['ALWAYS'] = array("layout", "users", "language", "fatcat", > "search", "menuman", "comments"); > > Now i have add my module in the array and always work fine, but i want know > the correct way to do this. I think that edit manually the file are not > correct. > > Thanks! > CArOgNa > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.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: Mauro C. <mau...@st...> - 2004-07-14 14:41:09
|
yes! but nothing in the boost/install.php of menuman seems to do this! any suggestion? bye CArOgNa > -----Messaggio originale----- > Da: php...@li... > [mailto:php...@li...]Per conto di > Matthew McNaney > Inviato: mercoledl 14 luglio 2004 15.29 > A: phpWebSite Developers > Oggetto: Re: [Phpwebsite-developers] (no subject) > > > Are you running boost to install your module? > > On Wed, 2004-07-14 at 05:41, Mauro Caon wrote: > > Hi! > > i'm developing a module based on the menuman module. > > After 1 day of work i have find why my menus compare olways > then the menu > > manager are loaded: because in the index.php of phpwebsite > the first line > > of code define this global array: > > > > $GLOBALS['ALWAYS'] = array("layout", "users", "language", "fatcat", > > "search", "menuman", "comments"); > > > > Now i have add my module in the array and always work fine, > but i want know > > the correct way to do this. I think that edit manually the > file are not > > correct. > > > > Thanks! > > CArOgNa > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by Black Hat Briefings & Training. > > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > > digital self defense, top technical experts, no vendor pitches, > > unmatched networking opportunities. Visit www.blackhat.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 Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Mauro C. <mau...@st...> - 2004-07-16 06:22:24
|
I'm running boost to install my module! Please, anybody can help me? Bye CArOgNa > -----Messaggio originale----- > Da: php...@li... > [mailto:php...@li...]Per conto di > Mauro Caon > Inviato: mercoledl 14 luglio 2004 11.42 > A: php...@li... > Oggetto: [Phpwebsite-developers] (no subject) > > > Hi! > i'm developing a module based on the menuman module. > After 1 day of work i have find why my menus compare olways > then the menu > manager are loaded: because in the index.php of phpwebsite > the first line > of code define this global array: > > $GLOBALS['ALWAYS'] = array("layout", "users", "language", "fatcat", > "search", "menuman", "comments"); > > Now i have add my module in the array and always work fine, > but i want know > the correct way to do this. I think that edit manually the > file are not > correct. > > Thanks! > CArOgNa > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Matthew M. <ma...@tu...> - 2004-07-16 12:12:00
|
> After 1 day of work i have find why my menus compare olways > then the menu manager are loaded: I am having difficulty understanding your problem. Your menus compare then the menu manager is loaded? Do you mean your menu module is not loading, or it is loading and the main menu module is as well? You should not have to put your module in the GLOBALS array. Look for your module in the 'modules' table. It needs to be in there. If you see it, make sure that active='on' and allow_view='all' . I might be more helpful if you visit our chat room at irc.freenode.net #phpwebsite Best regards, Matt > > Bye > CArOgNa > > > -----Messaggio originale----- > > Da: php...@li... > > [mailto:php...@li...]Per conto di > > Mauro Caon > > Inviato: mercoledl 14 luglio 2004 11.42 > > A: php...@li... > > Oggetto: [Phpwebsite-developers] (no subject) > > > > > > Hi! > > i'm developing a module based on the menuman module. > > After 1 day of work i have find why my menus compare olways > > then the menu > > manager are loaded: because in the index.php of phpwebsite > > the first line > > of code define this global array: > > > > $GLOBALS['ALWAYS'] = array("layout", "users", "language", "fatcat", > > "search", "menuman", "comments"); > > > > Now i have add my module in the array and always work fine, > > but i want know > > the correct way to do this. I think that edit manually the > > file are not > > correct. > > > > Thanks! > > CArOgNa > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by Black Hat Briefings & Training. > > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > > digital self defense, top technical experts, no vendor pitches, > > unmatched networking opportunities. Visit www.blackhat.com > > _______________________________________________ > > Phpwebsite-developers mailing list > > Php...@li... > > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > > ------------------------------------------------------- > This SF.Net email is sponsored by BEA Weblogic Workshop > FREE Java Enterprise J2EE developer tools! > Get your free copy of BEA WebLogic Workshop 8.1 today. > http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click > _______________________________________________ > 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: Steven L. <st...@tu...> - 2004-07-16 20:15:22
|
On Wed, 2004-07-14 at 05:41, Mauro Caon wrote > $GLOBALS['ALWAYS'] = array("layout", "users", "language", "fatcat", > "search", "menuman", "comments"); > > Now i have add my module in the array and always work fine, but i want know > the correct way to do this. I think that edit manually the file are not > correct. When I modified the core to reduce memory consumption I changed it to have modules only execute when they are called. The modules that are included in this array are ones that must run no matter what since other modules call their sessions. The proper way to have you module execute code on every page hit is to put it into: mod/(your_module)/inc/runtime.php If this file exists the core will included it for you on every page. -- Steven |
From: Mauro C. <mau...@st...> - 2004-07-19 09:13:23
|
I love you! :) This is the answare that i'm searching!!!!! Tomorrow i'll try, but i'm sure that all will work fine! Bye! CArOgNa |
From: yawstick <yaw...@ch...> - 2005-02-10 01:49:38
|
I just did a branch thing from the admin control panel and all the files created by the branch are owned by nobody. Is this normal? I cannot edit the themes or anything else in the new branch. This is on a hosted site so I cannot change ownership of the directories and files. Is there a way of controlling the user the branch files created as. Thanks Paul |
From: Greg M. <drk...@co...> - 2005-06-06 06:54:12
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 yawstick wrote: > I just did a branch thing from the admin control panel and all the files > created by the branch are owned by nobody. Is this normal? I cannot edit the > themes or anything else in the new branch. Yes this is normal because the branch module is used while operating under the webserver's process so it has the webserver's permissions on the files and directories. Often nobody is used. Please review this link http://phpwebsite-comm.sourceforge.net/wiki/index.php?title=Branch_Creator. I have not had time to bring closure to the branch module documentation. However, the documentation as it sits improves upon the text file that Steven Levin gave us. There may be enough information to get you going in your web hosting situation. Please let me know if there are areas that need to be improved upon since you are new to branching. > This is on a hosted site so I cannot change ownership of the directories and > files. Is there a way of controlling the user the branch files created as. If your site provides cpanel, control panel, then I believe you can change the permissions with one of the applications in the panel. > > Thanks > > Paul Regards, Greg -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iD8DBQFCo/MCxyxe5L6mr7IRAk/MAJ4rFsnOJpIJzQLqebQclZpAFW7JIQCePmIk SC1kcmgi5mycXlF1t1yBefU= =hp1a -----END PGP SIGNATURE----- |
From: Brian W. B. <br...@ap...> - 2001-07-20 13:00:56
|
> Is any one working on porting phpWebSite to use the PEAR db > class or a custom built DB abstaction layer? This is planned for the re-write, a.k.a. phpWebSiteII Kind Regards, Brian Brown phpWebSite Project Manager -- Brian W. Brown Internet Systems Architect, ESS Student Development Room 269, John Thomas Hall Appalachian State University Boone, NC 28608 vox: 828-262-7124 fax: 828-262-2585 |
From: Dean U. @ M. N. <du...@mi...> - 2001-07-20 18:54:23
|
>> Is any one working on porting phpWebSite to use the PEAR db >> class or a custom built DB abstaction layer? >This is planned for the re-write, a.k.a. phpWebSiteII >Kind Regards, >Brian Brown >phpWebSite Project Manager Brian, What's the time frame for phpWebSiteII? Also what's the time frame for the next release of phpWSI as I may have to start a port to the pear abstraction layer soon |