phplib-users Mailing List for PHPLIB (Page 49)
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: Marko K. <Mar...@mc...> - 2002-09-16 13:04:56
|
Hi, I noticed that oohforms floods my error_log of the apache with Notices like: [Mon Sep 16 14:39:50 2002] [error] PHP Notice: Undefined property: icase in /usr/local/lib/php/of_text.inc on line 98 [Mon Sep 16 14:39:50 2002] [error] PHP Notice: Undefined index: frozen in /usr/local/lib/php/oohforms.inc on line 284 Hundreds of them... It's really a mess. Looks like its implementation is not really clean. I noticed that newer versions of PHP get more picky concerning undefined variables or wrongly defined constants. Or, do I miss a special switch to get rid of all this. But nevertheless it looks not so nice... Would be better to have some possibility to disable this notice messages locally for only the oohform's *.inc files. :) I know the code is working well, but I would like not to see all these notices, since they hide my own error messages... ;) OK, any idea about this? Marko |
From: Jaroslav M. <ne...@ce...> - 2002-09-15 18:52:43
|
Hello, I have a problem with included example of session management and authentication using MSSql database. I use: win2000, MSSql 7.0, Apache 1.3, PHP 4.2.2 and PHPLIB 7.4pre1 When I start pages\test.php3, session management works OK but login as kris/test fails=> Parse error: parse error, unexpected $, expecting T_VARIABLE or '$' in C:\www\phplib\php \session.inc(339) : eval()'d code on line 1 Either your username or your passyword are invalid Of course, I created all necessary tables and user kris. I also tried this example on MySql, and without any problem/error. Can You help me? Thanx for any advice, jam. |
From: Jaroslav M. <ne...@ce...> - 2002-09-15 18:39:25
|
Hello, I have a problem with included example of session management and authentication using MSSql database. I use: win2000, MSSql 7.0, Apache 1.3, PHP 4.2.2 and PHPLIB 7.4pre1 When I start pages\test.php3, session management works OK but login as kris/test fails=> Parse error: parse error, unexpected $, expecting T_VARIABLE or '$' in C:\www\phplib\php \session.inc(339) : eval()'d code on line 1 Either your username or your passyword are invalid Of course, I created all necessary tables and user kris. I also tried this example on MySql, and without any problem/error. Can You help me? Thanx for any advice, jam. |
From: Taylor, S. <Ste...@uk...> - 2002-09-13 11:52:29
|
You dont need garbage collection because the aim of user session = variables is to remain persistant for the lifetime of each user (see my first explaination) Each user has one record in the user session table keyed on their user = id. When they first access the system this will be created new, and all the = user variables your application registers will be stored there with values particular to that user (all squashed up into one long string). If your application no longer requires a user session variable you can = add a call to unregister so that it will no longer be saved. =20 If user accounts are deleted from your application you can add a = function to remove the entry in the user session table for that user. -Stewart -----Original Message----- From: Benjamin Hoft [mailto:ho...@eu...] Sent: 13 September 2002 12:41 To: 'Taylor, Stewart' Subject: RE: [Phplib-users] Why are my User Sessions didnt deleted if i lo gout ??? hey yes you are right ! But for what ??? shouldn=B4t be the user sessions deleted also when i logout ? this could be a whole of garbage in the active sessions table I really want to know if this is really right whats going on on my = tables. Because i was really confused about it. And i am reading this = sourcecode a few day=B4s to understand what it really do. I am new to phplib and it is a few years ago that i am writing object orrientet. So please give me one answer is this really make=B4s a sense ? best regards and thanks for your help ;) Benjamin=20 Sorry for my english i am german ;) > ---------- > From: Taylor, Stewart[SMTP:Ste...@uk...] > Sent: 13 September 2002 13:30 > To: 'Benjamin Hoft' > Cc: 'php...@li...' > Subject: RE: [Phplib-users] Why are my User Sessions didnt deleted = if i lo gout ??? >=20 > If you have a look at the code (user.inc) the user class overrrides = the > session classes methods start, put_id and get_id. > In particular the start function no longer calls the gc method = (garbage > collection) >=20 > -Stewart. >=20 > -----Original Message----- > From: Benjamin Hoft [mailto:ho...@eu...] > Sent: 13 September 2002 11:18 > To: 'Taylor, Stewart' > Subject: RE: [Phplib-users] Why are my User Sessions didnt deleted if = i > lo gout ??? >=20 >=20 > hmm i think you didnt understand me right. >=20 > I want to know why the entries in the table active_sessions > like=20 >=20 > SID name val >=20 > c14cbf141ab1b7cd009356f555b607dc Example_User > RXhhbXBsZV9Vc2VyOiR0aGlzLT5pbiA9ICcwJzsgJHRoaXMtPn...=09 > changed > 20020913110514 > b34e427d4fc7784f5a8e21dc78516fbc Example_Session > RXhhbXBsZV9TZXNzaW9uOiR0aGlzLT5pbiA9ICcwJzsgJHRoaX... > 20020913111430 >=20 > wont be deleted after i logout. >=20 >=20 > the entries with the name "Example_Session" will be deltet by the > GarbageCollector (GC) after they had expired. > But the entries with the name "Example_User" won=B4t :( >=20 > But this seams wrong to me.=20 > Because i cannot find out which of my registred Users currently = logged on. > Only if i make a Select which will exclude the ones which haven=B4t = changed in > the last eg. 5 minutes. >=20 > But the name of the Table "active_sessions" will be wrong when all = ever > logged in and authet user sessions will remain in this table. >=20 > I thought that they will deleted by the gc also because the User = class is > extended from the session class and the session class have this gc funktion. >=20 >=20 > Or am I so confused ??? >=20 > thanks for your patience >=20 > Benjamin=20 >=20 >=20 > > ---------- > > From: Taylor, Stewart[SMTP:Ste...@uk...] > > Sent: 13 September 2002 11:41 > > To: 'Benjamin Hoft' > > Cc: 'php...@li...' > > Subject: RE: [Phplib-users] Why are my User Sessions didnt deleted = if > i lo gout ??? > >=20 > > I think you are confusing how user session variables are designed = to be > > used. > > A user session variable is associated with a user as long as they = exist. > > Every time a user logs back in their user session variables will be > > recreated. For example if you have a database application say to create > > purchase orders, with fields such as department, telephone = extension, > site. > > These fields are unlikely to change very often for a particular = user. So > > rather than the user entering these fields from scratch each time, = you can > > populate the fields from user session variables that store the = users > > previous entries made in these fields. > >=20 > >=20 > > -Stewart > >=20 > > -----Original Message----- > > From: Benjamin Hoft [mailto:ho...@eu...] > > Sent: 13 September 2002 10:12 > > To: 'php...@li...' > > Subject: [Phplib-users] Why are my User Sessions didnt deleted if i > > logout ??? > >=20 > >=20 > > My problem is that my User Sessions named "Example_User" > > won=B4t be deleted after I logout. > >=20 > > And i soposed they should be deleted :(>=20 > >=20 > > My "Example_Session" will be deleted from the garbage collector. > >=20 > > Why ? any sugesstions ? > >=20 > > i only see in my mysql logs something like this when the GC was = started > > DELETE FROM active_sessions WHERE changed < '20020913110203' AND = name =3D > > 'Example_Session' > >=20 > > but nothing like=20 > > DELETE FROM active_sessions WHERE changed < '20020913110203' AND = name =3D > > 'Example_User' ??? > >=20 > > Why ??? > >=20 > >=20 > >=20 > >=20 > >=20 > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > Phplib-users mailing list > > Php...@li... > > https://lists.sourceforge.net/lists/listinfo/phplib-users > >=20 >=20 |
From: Joe S. <jo...@be...> - 2002-09-13 11:31:03
|
Adding to the info Stewart provided - On Fri, Sep 13, 2002 at 11:11:58AM +0200, Benjamin Hoft wrote: > My problem is that my User Sessions named "Example_User" > won´t be deleted after I logout. > > And i soposed they should be deleted :( > Not necessarily. Logging out removes the authorization. It removes the auth object ( session variable) but doesn't remove the session. If you need to remove the session when logging out, call the session object's delete() method. I believe this may be needed if using the session4/phplib stuff. Joe |
From: Taylor, S. <Ste...@uk...> - 2002-09-13 11:30:49
|
If you have a look at the code (user.inc) the user class overrrides the session classes methods start, put_id and get_id. In particular the start function no longer calls the gc method (garbage collection) -Stewart. -----Original Message----- From: Benjamin Hoft [mailto:ho...@eu...] Sent: 13 September 2002 11:18 To: 'Taylor, Stewart' Subject: RE: [Phplib-users] Why are my User Sessions didnt deleted if i lo gout ??? hmm i think you didnt understand me right. I want to know why the entries in the table active_sessions like=20 SID name val c14cbf141ab1b7cd009356f555b607dc Example_User RXhhbXBsZV9Vc2VyOiR0aGlzLT5pbiA9ICcwJzsgJHRoaXMtPn...=09 changed 20020913110514 b34e427d4fc7784f5a8e21dc78516fbc Example_Session RXhhbXBsZV9TZXNzaW9uOiR0aGlzLT5pbiA9ICcwJzsgJHRoaX... 20020913111430 wont be deleted after i logout. the entries with the name "Example_Session" will be deltet by the GarbageCollector (GC) after they had expired. But the entries with the name "Example_User" won=B4t :( But this seams wrong to me.=20 Because i cannot find out which of my registred Users currently logged = on. Only if i make a Select which will exclude the ones which haven=B4t = changed in the last eg. 5 minutes. But the name of the Table "active_sessions" will be wrong when all ever logged in and authet user sessions will remain in this table. I thought that they will deleted by the gc also because the User class = is extended from the session class and the session class have this gc = funktion. Or am I so confused ??? thanks for your patience Benjamin=20 > ---------- > From: Taylor, Stewart[SMTP:Ste...@uk...] > Sent: 13 September 2002 11:41 > To: 'Benjamin Hoft' > Cc: 'php...@li...' > Subject: RE: [Phplib-users] Why are my User Sessions didnt deleted = if i lo gout ??? >=20 > I think you are confusing how user session variables are designed to = be > used. > A user session variable is associated with a user as long as they = exist. > Every time a user logs back in their user session variables will be > recreated. For example if you have a database application say to = create > purchase orders, with fields such as department, telephone = extension, site. > These fields are unlikely to change very often for a particular user. = So > rather than the user entering these fields from scratch each time, = you can > populate the fields from user session variables that store the users > previous entries made in these fields. >=20 >=20 > -Stewart >=20 > -----Original Message----- > From: Benjamin Hoft [mailto:ho...@eu...] > Sent: 13 September 2002 10:12 > To: 'php...@li...' > Subject: [Phplib-users] Why are my User Sessions didnt deleted if i > logout ??? >=20 >=20 > My problem is that my User Sessions named "Example_User" > won=B4t be deleted after I logout. >=20 > And i soposed they should be deleted :( >=20 > My "Example_Session" will be deleted from the garbage collector. >=20 > Why ? any sugesstions ? >=20 > i only see in my mysql logs something like this when the GC was = started > DELETE FROM active_sessions WHERE changed < '20020913110203' AND name = =3D > 'Example_Session' >=20 > but nothing like=20 > DELETE FROM active_sessions WHERE changed < '20020913110203' AND name = =3D > 'Example_User' ??? >=20 > Why ??? >=20 >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Phplib-users mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phplib-users >=20 |
From: Taylor, S. <Ste...@uk...> - 2002-09-13 09:41:41
|
I think you are confusing how user session variables are designed to be used. A user session variable is associated with a user as long as they = exist. Every time a user logs back in their user session variables will be recreated. For example if you have a database application say to = create purchase orders, with fields such as department, telephone extension, = site. These fields are unlikely to change very often for a particular user. = So rather than the user entering these fields from scratch each time, you = can populate the fields from user session variables that store the users previous entries made in these fields. -Stewart -----Original Message----- From: Benjamin Hoft [mailto:ho...@eu...] Sent: 13 September 2002 10:12 To: 'php...@li...' Subject: [Phplib-users] Why are my User Sessions didnt deleted if i logout ??? My problem is that my User Sessions named "Example_User" won=B4t be deleted after I logout. And i soposed they should be deleted :( My "Example_Session" will be deleted from the garbage collector. Why ? any sugesstions ? i only see in my mysql logs something like this when the GC was started DELETE FROM active_sessions WHERE changed < '20020913110203' AND name = =3D 'Example_Session' but nothing like=20 DELETE FROM active_sessions WHERE changed < '20020913110203' AND name = =3D 'Example_User' ??? Why ??? ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Phplib-users mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phplib-users |
From: Benjamin H. <ho...@eu...> - 2002-09-13 09:09:20
|
My problem is that my User Sessions named "Example_User" won=B4t be deleted after I logout. And i soposed they should be deleted :( My "Example_Session" will be deleted from the garbage collector. Why ? any sugesstions ? i only see in my mysql logs something like this when the GC was started DELETE FROM active_sessions WHERE changed < '20020913110203' AND name = =3D 'Example_Session' but nothing like=20 DELETE FROM active_sessions WHERE changed < '20020913110203' AND name = =3D 'Example_User' ??? Why ??? |
From: Dr T. S. <ta...@sa...> - 2002-09-06 14:46:12
|
On Fri, 6 Sep 2002, Gaetano Giunta wrote: > In that case one option is to configure Apache to handle ALL HTML > requests trough PHP (it does not apply to images, though). Plus add to Auto Prepend file the page_open call? Hmmm... should try it Tarique -- ============================================================= PHP Applications for E-Biz: http://www.sanisoft.com Indian PHP User Group: http://groups.yahoo.com/group/in-phpug ============================================================= |
From: Layne W. <la...@if...> - 2002-09-06 14:07:12
|
> In that case one option is to configure Apache to handle ALL > HTML requests trough PHP (it does not apply to images, though). > But you'd better check out first that you do not break your > /protected_files site. > Hint: configure php to only recognize the long tag ( <?php ) > and not the short version ( <? ). > You should also expect some slowdown in server response time > and increase in cpu usage. If your files are not HTML, then save them outside of the document root. Create a PHP page that lists the directory contents. I believe you could even browse through directories recursively with the Tree class. Layne Weathers Ifworld Inc. |
From: Gaetano G. <giu...@se...> - 2002-09-06 09:20:36
|
>=20 > On Thu, 5 Sep 2002, Serghej Petrov wrote: > Hello Serghej, >=20 > What you want is not possible if the files under=20 > protected_files are not > PHP >=20 > HTH >=20 > Tarique >=20 In that case one option is to configure Apache to handle ALL HTML = requests trough PHP (it does not apply to images, though). But you'd better check out first that you do not break your = /protected_files site.=20 Hint: configure php to only recognize the long tag ( <?php ) and not the = short version ( <? ). You should also expect some slowdown in server response time and = increase in cpu usage. Gaetano >=20 > > Hello everybody, > > I have the question about directory protection. > >=20 > > The site www.mysite.com is protected with=20 > > page_open(array("sess" =3D> "TiSid", "auth" =3D> "Crypt_Auth",=20 > "perm" =3D> "Perm", "user" =3D> "User")); > > in auto prepend file prepend.php3 > > BUT the alias /protected_files (=20 > www.misite.com/protected_files) is not protected because have=20 > not php files inside. > > How can i protect "protected_files" dir and all subdiris=20 > and files with same phplib auth scheme? > > Is it possible insert into .htaccess page_open function call? > >=20 > > Thanks all. > > Best > > Serghej > > =20 > >=20 > >=20 |
From: Dr T. S. <ta...@sa...> - 2002-09-06 02:15:10
|
On Thu, 5 Sep 2002, Serghej Petrov wrote: Hello Serghej, What you want is not possible if the files under protected_files are not PHP HTH Tarique > Hello everybody, > I have the question about directory protection. > > The site www.mysite.com is protected with > page_open(array("sess" => "TiSid", "auth" => "Crypt_Auth", "perm" => "Perm", "user" => "User")); > in auto prepend file prepend.php3 > BUT the alias /protected_files ( www.misite.com/protected_files) is not protected because have not php files inside. > How can i protect "protected_files" dir and all subdiris and files with same phplib auth scheme? > Is it possible insert into .htaccess page_open function call? > > Thanks all. > Best > Serghej > > > > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r_______________________________________________ > Phplib-users mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phplib-users > -- ============================================================= PHP Applications for E-Biz: http://www.sanisoft.com Indian PHP User Group: http://groups.yahoo.com/group/in-phpug ============================================================= |
From: Serghej P. <sp...@ti...> - 2002-09-05 16:14:08
|
Hello everybody, I have the question about directory protection. The site www.mysite.com is protected with=20 page_open(array("sess" =3D> "TiSid", "auth" =3D> "Crypt_Auth", "perm" = =3D> "Perm", "user" =3D> "User")); in auto prepend file prepend.php3 BUT the alias /protected_files ( www.misite.com/protected_files) is not = protected because have not php files inside. How can i protect "protected_files" dir and all subdiris and files with = same phplib auth scheme? Is it possible insert into .htaccess page_open function call? Thanks all. Best Serghej =20 |
From: Dr T. S. <ta...@sa...> - 2002-09-04 03:50:56
|
On Tue, 3 Sep 2002, Derek Scruggs wrote: > $form->add_element(array("name"=>"question", > "type"=>"radio", > "multiple"=>TRUE > )); Use only the above to create your radio element, note no loop and no value Rest of your code should work. HTH Tarique -- ============================================================= PHP Applications for E-Biz: http://www.sanisoft.com Indian PHP User Group: http://groups.yahoo.com/group/in-phpug ============================================================= |
From: Derek S. <de...@cr...> - 2002-09-04 03:10:10
|
Hi All, I only read this list sporadically, so apologies if this question has already been asked & answered. This situation: I'm using oohforms to generate forms dynamically from metadata values in a database. For example, if the metadata says "radio," the script generates a radio button. QED. I'm using "radio" as an option to generate multiple mutually-exclusive values in a control array. The code looks something like this: //$answers is an array of //$form is the form object variable foreach($answers as $key=>$value) { $form->add_element(array("name"=>"question", "type"=>"radio", "multiple"=>TRUE, "value"=>$answers[$key])); } Later on I use the same loop to call $form->show_element("question", $answers[$key]), so the final HTML for one set of controls looks something like so: <input type='radio' name='question' value='1'> Answer #1 <input type='radio' name='question' value='2'> Answer #2 <input type='radio' name='question' value='3'> Answer #3 <input type='radio' name='question' value='4'> Answer #4 The problem: I'd like for nothing to be selected by default (i.e. the user chooses not to answer the question at all). But for some reason, oohforms sets the last rendered control to 'checked'. I though at first it may have something to do with passing $value in the call to show_element, but if that were the case, 'checked' would be output for every control. Any ideas on what I'm doing wrong? I'm doing something similar with checkboxes without a hitch. TIA, Derek |
From: Lars H. <ph...@qu...> - 2002-09-01 17:57:18
|
Hi Mike, > What role does $_SESSION play, if any, if one uses PHPLib > session4_custom? You can use $_SESSION as usual with session4, because session4 uses the build-in session stuff from PHP4. Regards, Lars |
From: Mike G. <Mik...@sa...> - 2002-08-30 14:12:10
|
What role does $_SESSION play, if any, if one uses PHPLib session4_custom? |
From: Gaetano G. <giu...@se...> - 2002-08-30 10:42:57
|
Right click anywhere on the page you're viewing then A) choose FRAME -> VALIDATE SOURCE...=20 or B) CTRL+ALT+V Indeed a great timesaver (wish it was in Moz... or maybe just have to = find it) Gaetano > -----Messaggio originale----- > Da: Matt Williams [mailto:ma...@ye...] > Inviato: venerd=EC 30 agosto 2002 11.27 > A: Gaetano Giunta > Oggetto: Re: R: [Phplib-users] <no subject> >=20 >=20 > On Friday 30 August 2002 10:10, you wrote: >=20 > > In my own experience Opera 6 is not that bad at all, really=20 > (except if > > you're heavily into DHTML). I use it for development every=20 > day coz it has a > > shortcut to get your pages (as in 'the stuff received by=20 > the browser', not > > 'the php code that lies on the server')sent to the W3 for=20 > HTML validation. > > Nice when you'r developing php pages behind a firewall (so=20 > you can't use > > the online validator by giving the url to your server) and=20 > want to make > > sure your code is standard compliant. >=20 > Hi Gaetano >=20 > How do you acces this feature? I normally end up saving the=20 > fiule as html and=20 > uploading but this sounds like it could save me loads of time >=20 > Regards >=20 > Matt |
From: Florian P. <el...@gm...> - 2002-08-30 09:31:07
|
Thanks for your help and excuse me for posting in german. Didn't think = before posting... ----- Original Message -----=20 From: "Dr Tarique Sani" <ta...@sa...> To: "Florian Poppele" <el...@gm...> Cc: <php...@li...> Sent: Friday, August 30, 2002 10:57 AM Subject: Re: [Phplib-users] template system der phplib "Hello list, I would like to use Templates with web pages and would know therefore gladly, how active the Phplib is still project and where it stands in the comparison with other libraries. Thanks for the answer of these rudimentary however questions important for me. Greeting Florian" This is what Google translated for me - guess I get the Idea. PHPlib project is very active still. Templates of PHPlib are faster than the original fast template BUT if = you are looking for functionality like if else, loops etc in template then look at smarty However please note that for designers it is best to work with templates which have no programming logic (the logic has to be in the program) Hope this helps Tarique On Fri, 30 Aug 2002, Florian Poppele wrote: > Hallo Liste, >=20 > ich m=F6chte bei Webseiten Templates verwenden und w=FCsste deswegen = gerne, wie aktiv das Phplib Projekt noch ist und wo es im Vergleich mit = anderen Bibliotheken steht. Danke f=FCr die Beantwortung dieser = rudiment=E4ren aber f=FCr mich wichtigen Fragen. >=20 > Gru=DF > Florian >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > = https://www.inphonic.com/r.asp?r_________________________________________= ______ > Phplib-users mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phplib-users >=20 --=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=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=3D=3D=3D=3D=3D=3D=3D=3D=3D PHP Applications for E-Biz: http://www.sanisoft.com Indian PHP User Group: http://groups.yahoo.com/group/in-phpug =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=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=3D=3D=3D=3D=3D=3D=3D=3D=3D |
From: Dr T. S. <ta...@sa...> - 2002-08-30 09:21:08
|
"Hello list, I would like to use Templates with web pages and would know therefore gladly, how active the Phplib is still project and where it stands in the comparison with other libraries. Thanks for the answer of these rudimentary however questions important for me. Greeting Florian" This is what Google translated for me - guess I get the Idea. PHPlib project is very active still. Templates of PHPlib are faster than the original fast template BUT if you are looking for functionality like if else, loops etc in template then look at smarty However please note that for designers it is best to work with templates which have no programming logic (the logic has to be in the program) Hope this helps Tarique On Fri, 30 Aug 2002, Florian Poppele wrote: > Hallo Liste, >=20 > ich m=F6chte bei Webseiten Templates verwenden und w=FCsste deswegen gern= e, wie aktiv das Phplib Projekt noch ist und wo es im Vergleich mit anderen= Bibliotheken steht. Danke f=FCr die Beantwortung dieser rudiment=E4ren abe= r f=FCr mich wichtigen Fragen. >=20 > Gru=DF > Florian >=20 >=20 >=20 > ------------------------------------------------------- > This sf.net email is sponsored by: OSDN - Tired of that same old > cell phone? Get a new here for FREE! > https://www.inphonic.com/r.asp?r_________________________________________= ______ > Phplib-users mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phplib-users >=20 --=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=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=3D=3D=3D=3D=3D=3D=3D=3D=3D PHP Applications for E-Biz: http://www.sanisoft.com Indian PHP User Group: http://groups.yahoo.com/group/in-phpug =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=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=3D=3D=3D=3D=3D=3D=3D=3D=3D |
From: Gaetano G. <giu...@se...> - 2002-08-30 09:10:29
|
> On Wed, Aug 28, 2002 at 09:21:03AM +0200, Baerbel Deisting wrote: > > hi all, > >=20 > > hope someone can help me. i=B4m doing the authentication with=20 > phplib and it works fine with microsoft internet explorer and=20 > opera but if i try to make the authentication with netscape=20 > it doesn=B4t work. i don=B4t get the login screen but a side with=20 > the follwing message: > > 'The requested URL /session/md5.js was not found on this server'. > > only if i disable java script it works - but i think there=20 > must be another possibility to solve this. >=20 > They do not really work, they simply perform the login using=20 > clear-text. > They simply do not even warn you about the fact that they do not find > the .js, while Netscape stops and forces you to make things work. > You simply have to fix your pages using the correct path for md5.js >=20 > Suggestion: to reduce development errors and bogus bug reports, > please develop using Mozilla and Netscape... then check with IE > at a subsequent time... IE is a really stupid browser > (and Opera is even much worser)... it often causes confusion > in the developer's mind :-) >=20 In my own experience Opera 6 is not that bad at all, really (except if = you're heavily into DHTML). I use it for development every day coz it has a shortcut to get your = pages (as in 'the stuff received by the browser', not 'the php code that = lies on the server')sent to the W3 for HTML validation. Nice when you'r = developing php pages behind a firewall (so you can't use the online = validator by giving the url to your server) and want to make sure your = code is standard compliant. Bye,=20 Gaetano Giunta > > it would be great if someone has an idea what to do. >=20 > Just fix the path :-) >=20 > Bye, >=20 > Marco Pratesi >=20 >=20 >=20 |
From: Florian P. <el...@gm...> - 2002-08-30 09:02:01
|
Hallo Liste, ich m=F6chte bei Webseiten Templates verwenden und w=FCsste deswegen = gerne, wie aktiv das Phplib Projekt noch ist und wo es im Vergleich mit = anderen Bibliotheken steht. Danke f=FCr die Beantwortung dieser = rudiment=E4ren aber f=FCr mich wichtigen Fragen. Gru=DF Florian |
From: Marco P. <pr...@te...> - 2002-08-28 08:43:03
|
On Wed, Aug 28, 2002 at 09:21:03AM +0200, Baerbel Deisting wrote: > hi all, >=20 > hope someone can help me. i=B4m doing the authentication with phplib an= d it works fine with microsoft internet explorer and opera but if i try t= o make the authentication with netscape it doesn=B4t work. i don=B4t get = the login screen but a side with the follwing message: > 'The requested URL /session/md5.js was not found on this server'. > only if i disable java script it works - but i think there must be anot= her possibility to solve this. They do not really work, they simply perform the login using clear-text. They simply do not even warn you about the fact that they do not find the .js, while Netscape stops and forces you to make things work. You simply have to fix your pages using the correct path for md5.js Suggestion: to reduce development errors and bogus bug reports, please develop using Mozilla and Netscape... then check with IE at a subsequent time... IE is a really stupid browser (and Opera is even much worser)... it often causes confusion in the developer's mind :-) > it would be great if someone has an idea what to do. Just fix the path :-) Bye, Marco Pratesi |
From: Baerbel D. <bae...@we...> - 2002-08-28 07:21:13
|
hi all, hope someone can help me. i=B4m doing the authentication with phplib and it = works fine with microsoft internet explorer and opera but if i try to make= the authentication with netscape it doesn=B4t work. i don=B4t get the login s= creen but a side with the follwing message: 'The requested URL /session/md5.js was not found on this server'. only if i disable java script it works - but i think there must be another= possibility to solve this. it would be great if someone has an idea what to do. thank you baerbel =20 =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F Die Kommunikationszentrale ist da! Nie wieder E-Mail-Chaos! Verwalten Sie alle Ihre E-Mail Adressen unter: http://freemail.web.de/=3Fmc=3D021123 |
From: Serghej P. <sp...@ti...> - 2002-08-27 09:27:52
|
Hello, I use Phplib on Windows NT and Linux (same php aplication). On the Linux box i've no problem, but on windowsNt 2000, all of IE 5.5 = clients recive this error:=20 Parse error: parse error, unexpected ';', expecting T_STRING or = T_VARIABLE or '$' in D:\www\intranet\includes\phplib\session.inc(339) : = eval()'d code on line 1=20 With other version of IE/Opera/Netscape - no problem, work fine. On linux and Nt i use same version of Apache 1.26, PHP 4.2.2 and Mysql Some ideas? Let me know Thank all Serghej |