Re: [PHP] session, explain?

2004-07-05 Thread Ligaya Turmelle
Louie Miranda wrote: > session_start(); http://www.php.net/manual/en/function.session-start.php > setcookie("cartId", session_id(), time() + ((3600 * 24) * 30)); http://www.php.net/manual/en/function.setcookie.php > return session_id(); http://www.php.net/manual/en/function.session-id.php > > Can s

RE: [PHP] file locking over NFS?

2004-07-05 Thread Brent Clark
Hi there If i am not mistaken, that is a standard part of the nfs suite. All you need to make sure is that your export is correct, and the you are not using the -nolock option. Other than that if its PHP you more interested in, look at the flock() function. Kind Regards Brent Clark -Original

Re: [PHP] session, explain?

2004-07-05 Thread Curt Zirzow
* Thus wrote Louie Miranda: > session_start(); > setcookie("cartId", session_id(), time() + ((3600 * 24) * 30)); > return session_id(); > > Can someone help me figure out what does the session of this code means? Looking at the description of setcookie: bool setcookie ( string name [, string valu

Re: [PHP] Grabbing last file...

2004-07-05 Thread Curt Zirzow
* Thus wrote Ashley M. Kirchner: > >I have a capture script that runs every 2 minutes and dumps an image > into a folder. I'm trying to write a script (which will get included in > another) that will grab the last image in the folder and pass it on. > >The images are saved as 'capture.

Re: [PHP] uniqid function

2004-07-05 Thread Michael Gale
Thanks for the reply. Michael. On Tue, 6 Jul 2004 06:38:57 + Curt Zirzow <[EMAIL PROTECTED]> wrote: > * Thus wrote Michael Gale: > > Hello, > > > > I have a question about the uniqid function ... on a loaded > > system ... > > lets say 60 people connected with each person making 2-

[PHP] images outside of document root

2004-07-05 Thread Dennis Gearon
I want to keep an entire library OUTSIDE of the document root. The library includes some imgages. How can I have the browser include the imageges? I've hard of BASE64'ing the images into the header and decoding them using javascript. Is this the best way? Where is code to do that? -- PHP General

[PHP] session, explain?

2004-07-05 Thread Louie Miranda
session_start(); setcookie("cartId", session_id(), time() + ((3600 * 24) * 30)); return session_id(); Can someone help me figure out what does the session of this code means? -- Louie Miranda http://www.axishift.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:

Re: [PHP] uniqid function

2004-07-05 Thread Curt Zirzow
* Thus wrote Michael Gale: > Hello, > > I have a question about the uniqid function ... on a loaded system ... > lets say 60 people connected with each person making 2-3 web request per > second. > > Each request running the following php command: > > "$token_name=md5(uniqid(rand(), true))

[PHP] Grabbing last file...

2004-07-05 Thread Ashley M. Kirchner
I have a capture script that runs every 2 minutes and dumps an image into a folder. I'm trying to write a script (which will get included in another) that will grab the last image in the folder and pass it on. The images are saved as 'capture..jpg' where is the timestamp of the

[PHP] uniqid function

2004-07-05 Thread Michael Gale
Hello, I have a question about the uniqid function ... on a loaded system ... lets say 60 people connected with each person making 2-3 web request per second. Each request running the following php command: "$token_name=md5(uniqid(rand(), true));" What would the odds be of the $token_na

Re: [PHP] PHP Web Mail

2004-07-05 Thread Curt Zirzow
* Thus wrote Justin Patrin: > On Mon, 5 Jul 2004 13:01:08 -0400, John Hicks <[EMAIL PROTECTED]> wrote: > > On Monday 05 July 2004 07:33 am, I.A. Gray wrote: > > > Thanks- looked at Squirrel Mail. Looks really good, > > > however we use POP3- I don't think Squirrel Mail > > > uses POP3 does it? > >

[PHP] Re: problems linking a DLL to Zend symbols like

2004-07-05 Thread Jason Barnett
Try php.internals -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Web Mail

2004-07-05 Thread Justin Patrin
On Mon, 5 Jul 2004 13:01:08 -0400, John Hicks <[EMAIL PROTECTED]> wrote: > On Monday 05 July 2004 07:33 am, I.A. Gray wrote: > > Thanks- looked at Squirrel Mail. Looks really good, > > however we use POP3- I don't think Squirrel Mail > > uses POP3 does it? > > Most if not all web-based mail clien

Re: [PHP] How to escape apostrophe in HTML textbox exactly???

2004-07-05 Thread Chris Shiflett
(Disclaimer: This is a few days old, but I am just now catching up.) --- Scott Fletcher <[EMAIL PROTECTED]> wrote: > In one of the reply to the original posting I made, someone say that > htmlentities() would work and upon submission, the PHP's $_REQUEST, > $_POST, $_GET would get the apostrophe s

[PHP] Re: Something like strip_tags?

2004-07-05 Thread Anguz
Jason Paschal wrote: i'd like to be able to strip only one type of HTML tag from a web document (), but to do that with strip_tags(), i'd have to predict every possible HTML tag that might be used, except for the one i want to strip, and put those in the allowable tags parameter. That's why I w

Re: [PHP] PHP Web Mail

2004-07-05 Thread Tom Rogers
Hi, Monday, July 5, 2004, 8:14:44 PM, you wrote: IAG> Hi everyone, IAG> I use UebiMiau for our web mail service, but to be honest I haven't been IAG> particularly happy with it. It's ok, but what I find frustrating is that if IAG> our customers click the back button on their browser it always gi

[PHP] Fuzzy search with DBs

2004-07-05 Thread Johannes Reichardt
Hey there, i am a db/php novice and trying to implement a fuzzy search. i found some functions with examples like metaphone and levenstein but i dont know how i can use them efficiently with mysql. do i have to select all fields before comparison in any case? are there articles with detailed de

Re: [PHP] file locking over NFS?

2004-07-05 Thread Marek Kilimajer
kyle wrote: Hi all, Is there any simple, safe, and efficiency way to do file locking over NFS? Thanks. You can mysql locks (maybe it works in other databases too): GET_LOCK(str,timeout); RELEASE_LOCK(str); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/u

Re: [PHP] Re: User Logon Procedure Fails

2004-07-05 Thread Jordi Canals
Curt Zirzow wrote: $userid = (int) $_POST['TXT_UserID']; $sql = "... WHERE UserID = $userid"; Seing that I have a question around. Most cases I validate the $userid by using the function inval() in that way: $userid = inval($_POST['TXT_UserID']; $sql = "... WHERE UserID = $userid"; I

Re: [PHP] Dissappering Tables Server wide

2004-07-05 Thread Matthew Sims
> * Thus wrote Chris: >> Hi All. >> >> What would cause all the tables in all the databases to be deleted all >> at >> once? > > a magic spell? > > > Curt The Keibler Elves --Matthew Sims -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http:/

Re: [PHP] Something like strip_tags?

2004-07-05 Thread Curt Zirzow
* Thus wrote John W. Holmes: > Jason Paschal wrote: > > >i'd like to be able to strip only one type of HTML tag from a web > >document (), but to do that with strip_tags(), i'd have to predict > >every possible HTML tag that might be used, except for the one i want to > >strip, and put those in

Re: [PHP] compiling 3'd party php modules

2004-07-05 Thread Curt Zirzow
* Thus wrote Zilvinas Saltys: > Hello, > > I need to compile sqlanywhere module. > http://www.sybase.com/detail/1,6904,1019698,00.html heh.. thats funny a zip that contains a tar.gz file... > Theyr documentation says that i need to compile the whole php source tree. That is > not an easy task

Re: [PHP] Dissappering Tables Server wide

2004-07-05 Thread Curt Zirzow
* Thus wrote Chris: > Hi All. > > What would cause all the tables in all the databases to be deleted all at > once? a magic spell? Curt -- First, let me assure you that this is not one of those shady pyramid schemes you've been hearing about. No, sir. Our model is the trapezoid! -- PHP Gen

Re: [PHP] User Logon Procedure Fails

2004-07-05 Thread Curt Zirzow
* Thus wrote Harlequin: > Another day another problem. This time it appears that users are able to > enter their details but I get a query execution error with the following > section of code: > > /* Verify Login */ > $sql = "SELECT UserFirstName,UserID,UserPassword FROM RegisteredMembers > WH

Re: [PHP] Re: User Logon Procedure Fails

2004-07-05 Thread Curt Zirzow
* Thus wrote Torsten Roehr: > "Harlequin" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > Another day another problem. This time it appears that users are able to > > enter their details but I get a query execution error with the following > > section of code: > > > > /* Verify Lo

Re: [PHP] PHP Web Mail

2004-07-05 Thread John Hicks
Check with your hosting company. It's not that difficult for them to give you IMAP access also. You could write a server-based application that would retrieve your users' mail via POP3 and then store it in your users' home directory so it could be accessed from any computer via a web interface

Re: [PHP] PHP Bug ?

2004-07-05 Thread Lars Torben Wilson
Siddharth Hegde wrote: While we are on this topic, I have noticed that for only some keys, the following does not work $arr[KEY_NAME] but when I change this to $arr['KEY_NAME'] it works. I seriosuly doubt that KEY_NAME is a restricted keyword as dreamweawer highlights these in different colors and

Re: [PHP] quick newbie q: mysql_insert_id()

2004-07-05 Thread John W. Holmes
Christopher J. Mackie wrote: If I want to use PEAR DB to handle my database connections, how do I retrieve the recordID (primary key) added when I run an INSERT query? mysql_insert_id($db_object) doesn't seem to work if the object is PEAR, and the PEAR docs don't seem to show the same function. You

[PHP] Re: quick newbie q: mysql_insert_id()

2004-07-05 Thread Torsten Roehr
"Christopher J. Mackie" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > If I want to use PEAR DB to handle my database connections, how do I > retrieve the recordID (primary key) added when I run an INSERT query? > mysql_insert_id($db_object) doesn't seem to work if the object is PEAR

[PHP] Socket Tutorial

2004-07-05 Thread Andrew
Hi guys, Can somebody provide a good PHP Socket Programming tutorial. I'm working on a chat server application. The client is XMLsocket based Flash movie. Thanks, Andrew -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] quick newbie q: mysql_insert_id()

2004-07-05 Thread Christopher J. Mackie
If I want to use PEAR DB to handle my database connections, how do I retrieve the recordID (primary key) added when I run an INSERT query? mysql_insert_id($db_object) doesn't seem to work if the object is PEAR, and the PEAR docs don't seem to show the same function. Tx, --CJ -- PHP General Mail

RE: [PHP] PHP Web Mail

2004-07-05 Thread I.A. Gray
Hi all, Thanks for all your info. The hosting company I use gives us POP3 accounts. To be honest I don't have a clue about IMAP- I've only heard the name, and don't understand the way it works. I assume because we only have POP3 accounts, we have to use a POP3 webmail service. We want all our c

[PHP] Re: string

2004-07-05 Thread water_foul
from help me with eregi: sorry i didn't relise i did that till just now "Richard Davey" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > w> ho do you make a eregi so it looks at the var as a single line > > If anyone helps you after you posted 15KB of pointless HTML.. twice.. > I'll

Re: [PHP] help me with eregi

2004-07-05 Thread John W. Holmes
water_foul wrote: ho do you make a eregi so it looks at the var as a single line use the preg_ functions. -- ---John Holmes... Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/ php|architect: The Magazine for PHP Professionals – www.phparch.com -- PHP General Mailing List (http://www.php.ne

Re: [PHP] help me with eregi

2004-07-05 Thread water_foul
sorry i didn't relise i did that till just now "Richard Davey" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > w> ho do you make a eregi so it looks at the var as a single line > > If anyone helps you after you posted 15KB of pointless HTML.. twice.. > I'll be amazed. > > Best regard

Re: [PHP] help me with eregi

2004-07-05 Thread Richard Davey
w> ho do you make a eregi so it looks at the var as a single line If anyone helps you after you posted 15KB of pointless HTML.. twice.. I'll be amazed. Best regards, Richard Davey -- http://www.launchcode.co.uk - PHP Development Services "I am not young enough to know everything." - Oscar Wil

[PHP] help me with eregi

2004-07-05 Thread water_foul
ho do you make a eregi so it looks at the var as a single line -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: make an image disappear when page loads

2004-07-05 Thread Steve Douville
I use two div tags, one encapsulating the page contents and one that holds the image. PHP turns them on or off by echoing a javascript command at the appropriate time when the data is compiled and ready to show. - Original Message - From: "Pierre" <[EMAIL PROTECTED]> To: "'Egil Berntsen'"

[PHP] Re: make an image disappear when page loads

2004-07-05 Thread Torsten Roehr
"Diana Castillo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > what do you mean by fx Javascript ? > what I want really is something like what happens on this page when you > search for a flight, > http://www.expedia.net/daily/home/default.asp > an in between page comes on until the

Re: [PHP] PHP Web Mail

2004-07-05 Thread Matthew Sims
> On Monday 05 July 2004 07:33 am, I.A. Gray wrote: >> Thanks- looked at Squirrel Mail. Looks really good, >> however we use POP3- I don't think Squirrel Mail >> uses POP3 does it? > > Most if not all web-based mail clients use IMAP since a > web-based (i.e. browser-based) client can't store the

[PHP] Re: string

2004-07-05 Thread water_foul
oh 1 more thing.. i am looking for: but in the html it shows up as: - "Water_foul" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > ok i've stripped some html from a page and my eregi didn't work, so i > put it into a text box so i could see what the variabl

[PHP] string

2004-07-05 Thread water_foul
ok i've stripped some html from a page and my eregi didn't work, so i put it into a text box so i could see what the variable has in it... and i got this: --- Anyone can play on the Free Worlds below http://www.runescape.com/img/gamewin/u

Re: [PHP] PHP Web Mail

2004-07-05 Thread John Hicks
On Monday 05 July 2004 07:33 am, I.A. Gray wrote: > Thanks- looked at Squirrel Mail. Looks really good, > however we use POP3- I don't think Squirrel Mail > uses POP3 does it? Most if not all web-based mail clients use IMAP since a web-based (i.e. browser-based) client can't store the received

[PHP] fopen newbie question

2004-07-05 Thread Joe Carey
I'm trying to read a text file from one server from another. When I read from server A to B it works fine and I get the text output that I'm looking for. But when I read from B to A I get "Failed to open stream: FTP server reports 550 Can't check for file existence" I'm sure that its something h

RE: [PHP] Re: make an image disappear when page loads

2004-07-05 Thread Pierre
Why not use buffering ? -Message d'origine- De : Egil Berntsen [mailto:[EMAIL PROTECTED] Envoyé : lundi 5 juillet 2004 18:01 À : [EMAIL PROTECTED] Objet : [PHP] Re: make an image disappear when page loads OK, so I guess you want to use plain php with submitting. Use if-statement to check

[PHP] Re: make an image disappear when page loads

2004-07-05 Thread Egil Berntsen
OK, so I guess you want to use plain php with submitting. Use if-statement to check the wanted data. If so, don't echo the html-text. /egil "Diana Castillo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > what do you mean by fx Javascript ? > what I want really is something like wha

[PHP] file locking over NFS?

2004-07-05 Thread kyle
Hi all, Is there any simple, safe, and efficiency way to do file locking over NFS? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: make an image disappear when page loads

2004-07-05 Thread Diana Castillo
what do you mean by fx Javascript ? what I want really is something like what happens on this page when you search for a flight, http://www.expedia.net/daily/home/default.asp an in between page comes on until the information about flights is loaded. how can I do that with php? "Egil Berntsen" <[EMA

[PHP] Re: make an image disappear when page loads

2004-07-05 Thread Egil Berntsen
You say "has loaded", do you mean dynamic without submitting? If so, the answer is dhtml, fx JavaScript. /egil "Diana Castillo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > does anyone know how I can put an image on a page that disappears when the > data that I wanted to get has

Re: [PHP] make an image disappear when page loads

2004-07-05 Thread raditha dissanayake
Diana Castillo wrote: does anyone know how I can put an image on a page that disappears when the data that I wanted to get has loaded? people in a javascript list may know -- Raditha Dissanayake. - http://www.raditha.com/megaupload/upload.php Sneak pas

[PHP] make an image disappear when page loads

2004-07-05 Thread Diana Castillo
does anyone know how I can put an image on a page that disappears when the data that I wanted to get has loaded? -- Diana Castillo Global Reservas, S.L. C/Granvia 22 dcdo 4-dcha 28013 Madrid-Spain Tel : 00-34-913604039 Ext 216 Fax : 00-34-915228673 email: [EMAIL PROTECTED] Web : http://www.hotelk

[PHP] Encryption in PHP - mcrypt and alternatives

2004-07-05 Thread Mike Morton
I have a need for an encryption program that can encrypt/decrypt data. I previously had a programmer build me a C program that compiled and runs on the command line, which I would then call via PHP. We are experiencing with this however, a 5-7% fail rate on the decryption - not acceptable for the

Re: [PHP] .htaccess file

2004-07-05 Thread raditha dissanayake
Václav Slováček wrote: When my web is hosted, there is no other way how to solve it? I realized that I can't see the file in my ftp client, so I cant't change the permissions. Of course, I can't use chmod() to change the permissions when I'm not allowed to write into the file. So the only so

Re: [PHP] file upload and permission problem.

2004-07-05 Thread raditha dissanayake
Angelo binc2 wrote: Hi all I am trying to upload a file using PHP. I can successfully create a folder, but when I try upload the file it gives me the following error when using the move_uploaded_file function: Warning: move_uploaded_file(c:/program files/apache group/apache/htdocs/zerodocs/40/) [fu

Re: [PHP] PHP Web Mail

2004-07-05 Thread Petar [Lists]
www.ilohamail.org You can set this one up in about 10 minutes and will do IMAP and POP3. Works with flat files or MYSQL ..Petar - Original Message - From: "I.A. Gray" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 05, 2004 6:14 PM Subject: [PHP] PHP Web Mail > Hi ever

Re: [PHP] PHP Web Mail

2004-07-05 Thread raditha dissanayake
I.A. Gray wrote: Thanks- looked at Squirrel Mail. Looks really good, however we use POP3- I don't think Squirrel Mail uses POP3 does it? at the risk of starting a flame war: IMAP is the devine way of using email. POP3 sux. :-) (sorry couldn't resist) -- Raditha Dissanayake. --

Re: [PHP] PHP5 / MySQLi + Apache: InnoDB access problems -> solved + FLUSH BROWSER CACHE advice

2004-07-05 Thread Bauke Jan Douma
OK, after three days of increasingly frustrating tinkering with configs, logs, permissions, compiling, recompiling of mysql, apache, php, and a lot of permutations and combinations of flags, options, settings and what have you, I finally found the cause of the problem as described in my posting. T

Re: [PHP] PHP Web Mail

2004-07-05 Thread Jose Leon
Hello, On Mon, 5 Jul 2004 12:33:38 +0100, I.A. Gray <[EMAIL PROTECTED]> wrote: > Thanks- looked at Squirrel Mail. Looks really good, however we use POP3- I > don't think Squirrel Mail uses POP3 does it? SquirrelMail is a web interface to an IMAP mail server, you can set up fetch mail to retrieve y

Re: [PHP] .htaccess file

2004-07-05 Thread Jason Wong
On Monday 05 July 2004 18:13, Václav Slováček wrote: > So the only solution is to contact admin? Yes. -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * ---

RE: [PHP] PHP Web Mail

2004-07-05 Thread webmaster
Try www.horde.org It's not only a webmail client, but has a whole load more! Nunners Quoting "I.A. Gray" <[EMAIL PROTECTED]>: > Thanks- looked at Squirrel Mail. Looks really good, however we use POP3- I > don't think Squirrel Mail uses POP3 does it? > > > > -Original Message- > From: J

RE: [PHP] PHP Web Mail

2004-07-05 Thread I.A. Gray
Thanks- looked at Squirrel Mail. Looks really good, however we use POP3- I don't think Squirrel Mail uses POP3 does it? -Original Message- From: Jose Leon [mailto:[EMAIL PROTECTED] Sent: 05 July 2004 12:09 To: I.A. Gray Cc: [EMAIL PROTECTED] Subject: Re: [PHP] PHP Web Mail Hello, > Do

[PHP] file upload and permission problem.

2004-07-05 Thread Angelo binc2
Hi all I am trying to upload a file using PHP. I can successfully create a folder, but when I try upload the file it gives me the following error when using the move_uploaded_file function: Warning: move_uploaded_file(c:/program files/apache group/apache/htdocs/zerodocs/40/) [function.move-uploa

Re: [PHP] PHP Web Mail

2004-07-05 Thread Jose Leon
Hello, > Does anyone know a good PHP-based (free if possible) web mail other than > UebiMiau that they would recommend? Why not Squirrel Mail? http://www.squirrelmail.org Regards. -- qadram :: software development http://www.qadram.com -- PHP General Mailing List (http://www.php.net/) To unsubs

Re: [PHP] .htaccess file

2004-07-05 Thread Václav Slováček
When my web is hosted, there is no other way how to solve it? I realized that I can't see the file in my ftp client, so I cant't change the permissions. Of course, I can't use chmod() to change the permissions when I'm not allowed to write into the file. So the only solution is to contact a

[PHP] PHP Web Mail

2004-07-05 Thread I.A. Gray
Hi everyone, I use UebiMiau for our web mail service, but to be honest I haven't been particularly happy with it. It's ok, but what I find frustrating is that if our customers click the back button on their browser it always gives the 'this page has expired' message. I assume it is using session

[PHP] Re: Dissappering Tables Server wide

2004-07-05 Thread Gerben
Do you want all tables to dissapear or did this happen (unwanted)? "Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi All. > > What would cause all the tables in all the databases to be deleted all at > once? > > TIA -- PHP General Mailing List (http://www.php.net/) To unsu

Re: [PHP] .htaccess file

2004-07-05 Thread Gerben
You will have to chmod these .htaccess files "John" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] what are the files permissons? of these are set wrong it could cause your problem On Mon, 05 Jul 2004 10:58:54 +0200, Václav Slovácek <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a

Re: [PHP] .htaccess file

2004-07-05 Thread John
what are the files permissons? of these are set wrong it could cause your problem On Mon, 05 Jul 2004 10:58:54 +0200, VÃclav SlovÃÄek <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a problem, but maybe it's more about Apache than about PHP. I need > to access a Apache .htaccess file from PHP and

Re: [PHP] include but not browse

2004-07-05 Thread Jason Wong
On Monday 05 July 2004 17:48, Jason Wong wrote: > On Monday 05 July 2004 16:18, Tumurbaatar S. wrote: > > Generally, it isn't a PHP related but... > > I'm not a Linux/Apache user and know nothing > > about how to manage permissions there. > > I need to disable browsing for some of subfolders > > on

Re: [PHP] .htaccess file

2004-07-05 Thread zareef ahmed
--- Václav Slováèek <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a problem, but maybe it's more about Apache > than about PHP. I need > to access a Apache .htaccess file from PHP and > modify it, but I always get > "access denied" error. Could you help me, with > solving this problem? Plea

Re: [PHP] include but not browse

2004-07-05 Thread Jason Wong
On Monday 05 July 2004 16:18, Tumurbaatar S. wrote: > Generally, it isn't a PHP related but... > I'm not a Linux/Apache user and know nothing > about how to manage permissions there. > I need to disable browsing for some of subfolders > on my site but php scripts located in these subfolders > shou

Re: [PHP] .htaccess file

2004-07-05 Thread Jason Wong
On Monday 05 July 2004 16:58, Václav Slováček wrote: > I have a problem, but maybe it's more about Apache than about PHP. I need > to access a Apache .htaccess file from PHP and modify it, but I always get > "access denied" error. Could you help me, with solving this problem? "access denied" most

[PHP] problems linking a DLL to Zend symbols like _compiler_globals_id

2004-07-05 Thread Vincent Graux
where (in which detailed list) should I ask a question about problems linking a DLL to Zend symbols like _compiler_globals_id ? thks O volupté calme et profonde Des amours qui sont nés sans pleurs, Volupté saine comme une onde Qui chante sur un lit de fleurs. -Poésies, Sully Prud'homme René Franç

[PHP] .htaccess file

2004-07-05 Thread Václav Slováček
Hi all, I have a problem, but maybe it's more about Apache than about PHP. I need to access a Apache .htaccess file from PHP and modify it, but I always get "access denied" error. Could you help me, with solving this problem? Thank you. -- PHP General Mailing List (http://www.php.net/) To unsu

Re: [PHP] problem with crypt

2004-07-05 Thread Nitin
unknown value means, i cannot validate the user again. Password value is unrecognized, or maybe something randomly generated. - Original Message - From: "zareef ahmed" <[EMAIL PROTECTED]> To: "Nitin" <[EMAIL PROTECTED]>; "PHP List" <[EMAIL PROTECTED]> Sent: Monday, July 05, 2004 1:25 PM

[PHP] include but not browse

2004-07-05 Thread Tumurbaatar S.
Generally, it isn't a PHP related but... I'm not a Linux/Apache user and know nothing about how to manage permissions there. I need to disable browsing for some of subfolders on my site but php scripts located in these subfolders should be accessible by php's include/require. It's easy to do on Win

Re: [PHP] Dissappering Tables Server wide

2004-07-05 Thread raditha dissanayake
Chris wrote: Hi All. What would cause all the tables in all the databases to be deleted all at once? a simple for loop. TIA -- Raditha Dissanayake. - http://www.raditha.com/megaupload/upload.php Sneak past the PHP file upload limits. -- PHP General

Re: [PHP] problem with crypt

2004-07-05 Thread zareef ahmed
--- Nitin <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm using PHP function crypt() to encrypt the > password while updating the password for user's > email accounts. > It was running fine on PHP 4.0.6, but since I > updated to PHP 4.1.2, it's giving me problems. No > errors, nothing, password is up

[PHP] problem with crypt

2004-07-05 Thread Nitin
Hi all, I'm using PHP function crypt() to encrypt the password while updating the password for user's email accounts. It was running fine on PHP 4.0.6, but since I updated to PHP 4.1.2, it's giving me problems. No errors, nothing, password is updated but to unknown value. Is this some kind of

Re: [PHP] conditional includes in class functions

2004-07-05 Thread zareef ahmed
--- Dennis Gearon <[EMAIL PROTECTED]> wrote: > Anyone ever done that? > > Does PHP actually wait until the include is actually > needed before it does it? It might wait to execute > it, but does it wait to include it? > A close look at diffrences between require and include may help you. http

[PHP] conditional includes in class functions

2004-07-05 Thread Dennis Gearon
Anyone ever done that? Does PHP actually wait until the include is actually needed before it does it? It might wait to execute it, but does it wait to include it? Trying to speed up the loading of pages. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/un