phplib-users Mailing List for PHPLIB (Page 80)
Brought to you by:
nhruby,
richardarcher
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(106) |
Sep
(99) |
Oct
(44) |
Nov
(97) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(56) |
Feb
(81) |
Mar
(134) |
Apr
(69) |
May
(106) |
Jun
(122) |
Jul
(98) |
Aug
(52) |
Sep
(184) |
Oct
(219) |
Nov
(102) |
Dec
(106) |
2003 |
Jan
(88) |
Feb
(37) |
Mar
(46) |
Apr
(51) |
May
(30) |
Jun
(17) |
Jul
(45) |
Aug
(19) |
Sep
(5) |
Oct
(4) |
Nov
(12) |
Dec
(7) |
2004 |
Jan
(11) |
Feb
(7) |
Mar
|
Apr
(15) |
May
(17) |
Jun
(13) |
Jul
(5) |
Aug
|
Sep
(8) |
Oct
(6) |
Nov
(21) |
Dec
(13) |
2005 |
Jan
(4) |
Feb
(3) |
Mar
(7) |
Apr
(7) |
May
|
Jun
(11) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
|
2006 |
Jan
(3) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
|
Oct
(9) |
Nov
|
Dec
(5) |
2007 |
Jan
(15) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(9) |
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
(12) |
May
|
Jun
(3) |
Jul
(1) |
Aug
(19) |
Sep
(2) |
Oct
|
Nov
|
Dec
(6) |
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
From: Patrick H. <te...@co...> - 2001-12-10 10:55:29
|
Is there a better way to log someone out from your pages? I'm having intermittent security holes popup when someone logs out from my pages but then hits 'back' a bunch of times. |
From: Diethart G. <dg...@ma...> - 2001-12-08 20:49:59
|
I try to realize a simple link-list ordered and grouped by categories. It should look like 0 group0 0 someText Link 0 Text Link ... ... 1 group1 1 Text Link ... ... It results in a list with correct groups but shifted link-lines starting with last group number: 0 group0 3 someText Link 3 Text Link ... ... 1 group1 0 Text Link ... 2 group2 1 Text Link ... affected part of my php-File: ... $t->set_file(array( "verz" => "tpl.ihtml", ... )); $q_list = sprintf ("SELECT l.grnr, group, txt, link FROM lists l, groups g WHERE l.grnr = g.grnr ORDER BY l.grnr, txt"); $db->query ($q_list); $t->set_block('verz', 'listrow', 'listrows'); $t->set_block('verz', 'titlerow', 'titlerows'); $gnr = -1; while ($db->next_record()) { if ($gnr != $db->f("grnr")) { $gnr = $db->f("grnr"); $t->set_var(array( "TNR" => $db->f("grnr"), "TTITLE" => $db->f("group") )); $t->parse("titlerows", "titlerow", true); $t->set_var (listrows, ''); } $t->set_var(array( "LNR" => $db->f("grnr"), "TEXT" => $db->f("txt"), "LINK" => $db->f("link") )); $t->parse("listrows", "listrow", true); } ... $t->parse("OUT", "verz", true); $t->p("OUT"); ?> Template: ... </td> <td> <ul> <!-- BEGIN titlerow --> <a name="{TTITLE}"> <li><h4>{TNR} {TTITLE}</h4></a></li> <table> <!-- BEGIN listrow --> <tr> <td> {LNR} </td> <td> {TEXT} </td> <td> <a href="http://{LINK}" target="_new">{LINK}</a> </td> </tr> <!-- END listrow --> </table> <!-- END titlerow --> </ul> </td> </tr> </table> ... I did some rearrangements but got empty listrows or wrong assignment. template.inc is 1.8, PHP3 or 4.x Thanks for any suggestion. Diethart -- _______________________________________________ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup 1 cent a minute calls anywhere in the U.S.! http://www.getpennytalk.com/cgi-bin/adforward.cgi?p_key=RG9853KJ&url=http://www.getpennytalk.com |
From: Layne W. <la...@of...> - 2001-12-07 18:01:39
|
> i have a feeling that one can't store objects in session variables, > however i am unable to confirm this. The documentation is not online > (does anyone have a copy of the old one which they can send to me?) > anymore, so i can't look it up. There's a copy of the documentation in SGML in CVS and in HTML in the releases (e.g. phplib-7.2d/doc/). What is stored in session the object name and class name (this is why the PHPLib classes all have $classname) that will be re-created on subsequent pages. Layne Weathers Ifworld Inc. |
From: darcy w. c. <da...@el...> - 2001-12-07 17:37:36
|
hi, i have a feeling that one can't store objects in session variables, however i am unable to confirm this. The documentation is not online (does anyone have a copy of the old one which they can send to me?) anymore, so i can't look it up. -- ~darcy w. christ Elegant Communications Inc. 416.362.9772 x222 | 416.362.8324 fax |
From: Rogers, P. <Pau...@mo...> - 2001-12-07 11:13:16
|
That's great Many thanks Paul -----Original Message----- From: Matt Williams [mailto:ma...@ye...] Sent: 07 December 2001 09:54 To: Rogers, Paul; 'phplib' Subject: RE: [Phplib-users] PHPLIB Archive > There used to be an archive of the old phplib list. Can anyone tell me, > does it still exist and if so where is it? > http://marc.theaimsgroup.com/?l=phplib&r=1&w=2 happy hunting m: _______________________________________________ Phplib-users mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phplib-users ***************************************************************************** This email and any attachments transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the sender and do not store, copy or disclose the content to any other person. It is the responsibility of the recipient to ensure that opening this message and/or any of its attachments will not adversely affect its systems. No responsibility is accepted by the Company. ***************************************************************************** |
From: Matt W. <ma...@ye...> - 2001-12-07 10:03:39
|
> There used to be an archive of the old phplib list. Can anyone tell me, > does it still exist and if so where is it? > http://marc.theaimsgroup.com/?l=phplib&r=1&w=2 happy hunting m: |
From: Rogers, P. <Pau...@mo...> - 2001-12-07 06:56:40
|
Dear All There used to be an archive of the old phplib list. Can anyone tell me, does it still exist and if so where is it? Many thanks Paul ======================================================================= Paul Rogers eDM Support Mowlem Civil Engineering Foundation House Eastern Road Bracknell Berks RG12 2UZ _____ / \ Tel +44 (0) 1344 426826 vvvvvvv /|__/| Direct Dial: +44 (0) 1344 742268 I /O,O | Fax +44 (0) 1344 742129 I /_____ | /|/| Mobile +44 (0)780 326 3564 J|/^ ^ ^ \ | /00 | _//| email paul.rogers@ mowlem.com |^ ^ ^ ^ |W| |/^^\ | /oo | ________________________________________ \m___m__|_| __ \m_m_| __\mm_| ======================================================================= ***************************************************************************** This email and any attachments transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the sender and do not store, copy or disclose the content to any other person. It is the responsibility of the recipient to ensure that opening this message and/or any of its attachments will not adversely affect its systems. No responsibility is accepted by the Company. ***************************************************************************** |
From: darcy w. c. <da...@el...> - 2001-12-06 18:37:09
|
hi, while i've been developing my phplib app, i've run into a situation where it might be useful to create a phplib function. The scenerio is one in which i'm using header("Location: ...") to redirect to another page. What i have discover (which of course may be obvious to many) is that in order for session variables to take, the page_close function needs to be called. What i'm wondering about is whether it might be a nice idea to create a kind of phplib_redirect function. One in which page_close is called and then header("Location: ..."). i think this might be nice for novice users, who may not necessarily realize the importance of closing the page before redirecting. i myself found it a little confusing to have two page_close() in the document, until i understood the problem better. Anyway, it's just a thought. i'm not sure whether anyone else thinks this is a good idea or where in the phplib it should go. -- ~darcy w. christ Elegant Communications Inc. 416.362.9772 x222 | 416.362.8324 fax |
From: Duane D. <ddo...@mi...> - 2001-12-06 15:37:46
|
i am curious about phplib internals. specifically, i'd like to know how phplib utilizes memory for session management. can someone please send me a brief summary about this? or direct me to a web page which describes this? thanks in advance |
From: Brian P. <bp...@ct...> - 2001-12-04 19:05:00
|
BinaryCloud (binarycloud.com) is another alternative. Unfortunately, I don't know much about it. I took a look at it a while back and it was still a little underdeveloped (relative to PHPLib). I don't know if this has changed? -----Original Message----- From: Nelson Asinowski [mailto:nel...@st...] Sent: Tuesday, December 04, 2001 11:53 AM Cc: php...@li... Subject: [Phplib-users] PHPLib vs other libraries? Hello I am the Technical Director of a small web dev shop. I have been lurking here for about 2 weeks. We currently use a mix of Perl and PHP for programming of applications. I would like to use a library of tools to extend the features we can put into our apps. I would like to get some idea about the similarities and differences between PHPLib and and other library like it. The only other one I found so far is Pear. Objective and partisan answers are welcome. Nelson Asinowski. _______________________________________________ Phplib-users mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phplib-users |
From: Layne W. <la...@of...> - 2001-12-04 18:23:15
|
> I am the Technical Director of a small web dev shop. I have been > lurking here for about 2 weeks. > We currently use a mix of Perl and PHP for programming of > applications. > I would like to use a library > of tools to extend the features we can put into our apps. I > would like > to get some idea about the > similarities and differences between PHPLib and and other > library like > it. The only other one I found > so far is Pear. > > Objective and partisan answers are welcome. PHPLib is designed to be an _integrated_ library for web apps whereas PEAR is a best-of-breed repository. Some classes that started in PHPLib have been migrated to or included in PEAR (Templates and OO-Forms). Personally, I build my projects thus: 1. lay down PHPLib foundation 2. extend and tweak PHPLib where desirable 3a. grab other code (classes or snippets) from previous projects, or 3b. grab other code from online repositories (PEAR, PHPBuilder, etc) and tweak where necessary, or 3b. write new classes Layne Weathers Ifworld Inc. |
From: Nelson A. <nel...@st...> - 2001-12-04 17:55:21
|
Hello I am the Technical Director of a small web dev shop. I have been lurking here for about 2 weeks. We currently use a mix of Perl and PHP for programming of applications. I would like to use a library of tools to extend the features we can put into our apps. I would like to get some idea about the similarities and differences between PHPLib and and other library like it. The only other one I found so far is Pear. Objective and partisan answers are welcome. Nelson Asinowski. |
From: twidlar <tw...@cr...> - 2001-12-04 01:04:19
|
OK, PHPLIB is installed into PHPTriad \apache\php and php.ini, PHPTriad's index.php has come up properly. I moved on in the installation of PHPLIB. To fix ERROR 1049: unknown database 'example_database' while trying to do 'create_database.mysql', I found and downloaded the MySQL manual. I found there is a CREATE DATABASE needed before the tables can be created, which is all create_database.mysql does. So I created the database then the tables. I then ran index.php3. No sweat. Sessions and database work for me. Next, to get ZendIDE to talk to PHPTriad (Apache, PHP, MySQL) + PHPLIB. Thanks Tom Widlar |
From: twidlar <tw...@cr...> - 2001-12-03 23:32:54
|
Now that I have installed (maybe) PHPLIB into PHPTriad \apache\php and php.ini, I have gotten PHPTriad's index.php to come up properly. I moved on in the installation of PHPLIB. For step 5 of PHP Base Library Documentation (page 2 of 7), in local.inc, I left the definition of DB_Example alone. class DB_Example extends DB_Sql { var $Host = "localhost"; var $Database = "example_database"; var $User = "example_user"; var $Password = ""; } For step 6 I executed the DOS commands cd c:\apache\php\phplib-7.2d\stuff\ c:\apache\mysql\bin\mysql -h localhost example_database <create_database.mysql The result was ERROR 1049: unknown database 'example_database'. It looks like these commands are to set up tables but not the database itself. What I need to do for that? Thanks Tom Widlar |
From: Layne W. <la...@of...> - 2001-12-03 23:02:52
|
> I guess line 15 in my case should read > $_PHPLIB["libdir"] = "c:/apache/php/phplib-7.2d/php/"; > > When I do that, /localhost/index.php comes up. > > What do I find next? You've got the library in a useable location, so you're ready to start incorporating the libraries into your projects. I'd recommend starting with the database (db_mysql.inc) and template (template.inc) classes, then the Session/Authorization/Permissions trio. Layne Weathers Ifworld Inc. |
From: twidlar <tw...@cr...> - 2001-12-03 21:43:35
|
> > auto_prepend_file = \apache\php\phplib-7.2d\php\prepend.php3 > > include_path = > > ".;\apache\includes;\apache\htdocs\;\apache\htdocs\phpmyadmin; > > \apache\php\;\apache\php\phplib-7.2d\php\" Layne Weathers wrote: > In your php.ini, you should probably use C:\some\path on Windows. I presumed you meant that I should include the drive letter for directory in the path. I did which got my a little further. Fatal error: Failed opening required '/home/nathan/webDevel/php-lib-stable/php/db_mysql.inc' (include_path='.;c:\apache\includes;c:\apache\htdocs\; c:\apache\htdocs\phpmyadmin;c:\apache\php\; c:\apache\php\phplib-7.2d\php\') c:\apache\php\phplib-7.2d\php\prepend.php3 on line 15 prepend.ph3: Line 15 says: $_PHPLIB["libdir"] = "/home/nathan/webDevel/php-lib-stable/php/"; followed by require($_PHPLIB["libdir"] . "db_mysql.inc"); require($_PHPLIB["libdir"] . "ct_mysql.inc"); require($_PHPLIB["libdir"] . "session.inc"); require($_PHPLIB["libdir"] . "auth.inc"); require($_PHPLIB["libdir"] . "perm.inc"); require($_PHPLIB["libdir"] . "user.inc"); .... I guess line 15 in my case should read $_PHPLIB["libdir"] = "c:/apache/php/phplib-7.2d/php/"; When I do that, /localhost/index.php comes up. What do I find next? Thanks Tom Widlar |
From: Layne W. <la...@of...> - 2001-12-03 19:18:04
|
> auto_prepend_file = \apache\php\phplib-7.2d\php\prepend.php3 > include_path = > ".;\apache\includes;\apache\htdocs\;\apache\htdocs\phpmyadmin; > \apache\php\;\apache\php\phplib-7.2d\php\" In your php.ini, you should probably use C:\some\path on Windows. Layne Weathers Ifworld Inc. |
From: twidlar <tw...@cr...> - 2001-12-03 18:54:01
|
I am trying to setup PHPLIB inside my local server, PHPTriad (Apache, PHP, MySQL). c:\apache\htdocs the Document Base for 'localhost'. c:\apache\php contains PHP The home page 'c:\apache\htdocs\index.php' (included below) worked fine. To install PHPLIB I downloaded phplib-7.2d.zip. I unzipped in to c:\apache\php\phplib-7.2d\. I modified c:\apache\php\php.ini thus auto_prepend_file = \apache\php\phplib-7.2d\php\prepend.php3 include_path = ".;\apache\includes;\apache\htdocs\;\apache\htdocs\phpmyadmin; \apache\php\;\apache\php\phplib-7.2d\php\" Now when I access \localhost\index.php, I get the message Warning: Failed opening '\apache\php\phplib-7.2d\php\prepend.php3' for inclusion (include_path='.;\apache\includes;\apache\htdocs\;\apache\htdocs\phpmyadmin; \apache\php\;\apache\php\phplib-7.2d\php\') in Unknown on line 0 File '\apache\php\phplib-7.2d\php\prepend.php3' exists. When I change php.ini back to "auto_prepend_file = ", \localhost\index.php works. Does this mean I can't use 'auto_prepend'? Did I install PHPLIB wrong? Thanks Tom Widlar -------------------------- c:\apache\htdocs\index.php -------------------------- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>PHPTriad</title> </head> <body> <h2>Welcome to PHPTriad for Windows v2.11.</h2> PHPTriad is the basic installer. Additional pieces may be available at this time. Check <a href="http://www.phpgeek.com">PHPGeek.com</a> for more details and to ensure that you have installed the most recent version of PHPTriad.<p> While PHPTriad is provided free and will always remain so, there are costs involved including time and effort as well as some financial costs associated with maintaining this software. If you find this installer useful, please consider contributing by buying something from the PHPGeek store at <a href="http://www.phpgeek.com/store.php">http://www.phpgeek.com/store.php</a>. <p> What's new in version 2.11?<br> <ul> <li>Fixed Extension path <li>Fixed include path <li>Other misc fixes. </ul> <p> What's new in version 2.1?<br> <ul> <li>An all new installer. I've switched to a new software package for building the installer. It's more robust and should make the installer more painless <li>PHP 4.0.5 - the newest version of PHP. <li>Perl is now included. Though I provide no real support for it, it was a highly requested feature and has been added <li>Bug fixes. <li>Includes the following versions: <ul> <li>PHP - 4.0.5 <li>MySQL - 3.23.32 <li>Apache - 1.3.14 <li>PHPMyAdmin - 2.1.0 <li>Perl - nsPerl 5.005_03 </ul> </ul> If you wish to add additional extensions, place them in c:\apache\php\extensions. You can enable the extensions that are disabled by default by editing c:\apache\php\php.ini. The shebang line for Perl is #!c:/apache/perl/nsperl.exe. <p> To see the PHP settings for your installation, open the <a href="phpinfo.php">phpinfo.php</a> file. <p> If you have suggestions for PHP applications that you'd like to see included in the basic package or as installable modules let me know at <a href="mailto:le...@ph...">le...@ph....</a><p> <table width=500 cellspacing=0 cellpadding=6> <tr bgcolor="#000000"> <td bgcolor="#c3c3c3"> <b>Name</b> </td> <td bgcolor="#c3c3c3"> <b>Description</b> </td> </tr> <tr> <td> <a href="phpmyadmin/index.php">PHPMyAdmin</a> </td> <td> PHPMyAdmin is a web-based interface to MySQL. Use it to manage your databases. </td> </tr> </table> <p> </body> </html> |
From: Sascha R. <Rag...@pe...> - 2001-12-03 10:38:52
|
Hi to all, one small question: I am running phplib with a mysql db. Everything works fine, except that I get under the mysql errorlog the following messages, while connecting to the db: "Aborted connection 1 to db: 'xxx' user: 'ODBC' host: `localhost' (Unknown error)" The Problem is, the web solution is running quite well, it only gives out errors in the errorlog. I am also not using the user "ODBC", so I think its got something to do with the phplib. I want to clean out that problem. Does anyone have a idea about that? Thanks in advance... Sascha Ragtschaa |
From: Daniel B. <bo...@io...> - 2001-11-29 01:20:16
|
if I am understanding correctly, in order to store php4 sessions in the database, I need to use phplib/php-lib/php/session/session4.inc and phplib/php-lib/php/session/session4_custom.inc and not any other version of session4.inc there seems to be a lot of them. Are they all the same? on a similar note, when is the CVS repository going to be cleaned up? it's really confusing the way everything is orgainzed now. |
From: darcy w. c. <da...@el...> - 2001-11-28 20:29:36
|
hi, i'm wondering whether anyone can see any dangers in having a page_close() at the end of my loginform. i have a history variable which i keep in a session variable. i've modified page.inc to update the history at each page. i've also setup a no_cache variable so that i force certain pages not to be included in the history. It seems to work great <aside comment="possible inclusion in phplib?"/>. i use the history mainly to guide the user through certain transistions (ie. login, logout). i have an instance where i want to guide the user back to a page that is auth protected. Unfortunately, it wasn't being included in the history until the user is authenticated. i realized that this was because the session variable wasn't being saved, since the auth loginform doesn't finish the session with a page_close. So, i think to myself, what don't i just include a page_close at the end of the loginform. i tested it and it seems to work. i wanted to field this with the group to see if anyone can think of any problems that might occur because of this. i know, i know, there's no better judge then testing it, but i figured since i don't know phplib that well, i might be missing some obvious issue. i appreciate the help. -- ~darcy w. christ Elegant Communications Inc. 416.362.9772 x222 | 416.362.8324 fax |
From: Maxim D. <max...@bo...> - 2001-11-28 08:10:56
|
Hello Daniel, Wednesday, November 28, 2001, 2:58:22 AM, you wrote: DB> mod_backhand is a load balancing apache module. DB> www.backhand.org DB> with session.inc it's pretty trivial (since everything is stored in the DB> database), DB> but I am having trouble with session4.inc. Use session4_custom. It has the same session data container as session3. -- Best regards, Maxim Derkachev mailto:max...@bo... System administrator & programmer, Symbol-Plus Publishing Ltd. phone: +7 (812) 324-53-53 www.books.ru, www.symbol.ru |
From: Daniel B. <bo...@io...> - 2001-11-28 03:31:54
|
I'm still playing with all the configurations to see what is possible/feasible. nfs mounted session vars is probably gunna be slower than mysql sessions. Need to get them both to work before I can figure it out. anyone else trying it? -----Original Message----- From: nathan r. hruby [mailto:na...@ds...] Sent: Tuesday, November 27, 2001 7:28 PM To: Daniel Bondurant Cc: php...@li... Subject: Re: [Phplib-users] mod_backhand and phplib On Tue, 27 Nov 2001, Daniel Bondurant wrote: > > with session.inc it's pretty trivial (since everything is stored in the > database), > but I am having trouble with session4.inc. > Er.. you know there's a custom db handler for session4, right? It's in there somewhere (ct_sql4.inc ?) NFS moutned session data.. eeeeeewwwwww :-) -n --=20 -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-= =3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- nathan hruby / digital statement na...@ds... http://www.dstatement.com/ Public GPG key can be found at: http://www.dstatement.com/nathan-gpg-key.txt ED54 9A5E 132D BD01 9103 EEF3 E1B9 4738 EC90 801B -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-= =3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- |
From: nathan r. h. <na...@ds...> - 2001-11-28 03:28:23
|
On Tue, 27 Nov 2001, Daniel Bondurant wrote: > > with session.inc it's pretty trivial (since everything is stored in the > database), > but I am having trouble with session4.inc. > Er.. you know there's a custom db handler for session4, right? It's in there somewhere (ct_sql4.inc ?) NFS moutned session data.. eeeeeewwwwww :-) -n -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- nathan hruby / digital statement na...@ds... http://www.dstatement.com/ Public GPG key can be found at: http://www.dstatement.com/nathan-gpg-key.txt ED54 9A5E 132D BD01 9103 EEF3 E1B9 4738 EC90 801B -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- |
From: Daniel B. <bo...@io...> - 2001-11-27 23:58:24
|
just wondering if anyone had tried using mod_backhand with phplib? mod_backhand is a load balancing apache module. =20 www.backhand.org with session.inc it's pretty trivial (since everything is stored in the database),=20 but I am having trouble with session4.inc. I am trying to get all the load balanced machines to store the phpsess files on the same nfs mounted machine in the same folder so they can all access it. Works almost all the time, but I do get random logouts. I suspect it is when both machines try to write the new session info at the same time. has anyone tired mod_backhand at all? and has anyone used the mod_backhand bySession variable with phplib? thanks |