php-general Digest 13 Jul 2005 06:10:07 -0000 Issue 3564

2005-07-13 Thread php-general-digest-help
php-general Digest 13 Jul 2005 06:10:07 - Issue 3564 Topics (messages 218564 through 218595): Re: How to read PHP variables. 218564 by: yanghshiqi 218583 by: Ahmed Saad Re: sockets 218565 by: André Medeiros 218585 by: Ahmed Saad 218586 by: Greg

Re: [PHP] OT - Fonts

2005-07-13 Thread Richard Lynch
On Tue, July 12, 2005 1:30 pm, timothy johnson said: I am trying to use a font on my webpage that I have on my system only after a friend sent it to me. But its a neat little font that I want to use in a couple place on my site, like some of the headers. So I have two options I think one is to

Re: [PHP] max_file_size

2005-07-13 Thread Richard Lynch
On Tue, July 12, 2005 11:10 am, Chris said: The manual seems to imply that using MAX_FILE_SIZE will enable the browser to recognize the fact that a user is trying to upload a file that is too large and will, therefore, be able to give the user a warning to prevent the uploading of a file that

Re: [PHP] connecting to MySQL from a Mac

2005-07-13 Thread Richard Lynch
On Tue, July 12, 2005 8:17 pm, Bruce Gilbert said: Hello, I am trying to add a PHP search to my site and the read me file says to: 2. In the server, create a database in MySQL to hold Sphider data. a) at command prompt type (to log into MySQL): mysql -u your username -p Enter your

RE: [PHP] Problem installing in Win2003 Server SP1

2005-07-13 Thread Richard Lynch
On Tue, July 12, 2005 7:49 am, Grosz, Steve (IPG IT) said: I can see the .htm/.html file just fine. So, what settings should I be looking at for the problems with PHP? Are you using PHP as a CGI or as an ISAPI thingie? If it's CGI, then you want to run php.exe from MS-DOS and see what it

Re: [PHP] Session problems

2005-07-13 Thread Richard Lynch
Don't use session_register() It was only needed way back when in PHP3 (?) Simplify your test until it works -- Then start adding the other stuff in. Are you *SURE* you are calling session_start() on the page that gets the POST? I think you need to call session_name() *BEFORE* session_start()

Re: [PHP] PHP and undelivered mail

2005-07-13 Thread Richard Lynch
On Tue, July 12, 2005 5:03 am, Angelo Zanetti said: Is it possible to determine if a mail was sent successfully or not delivered using PHP? Obviously using PHP to send the emails. thanks in advance No. You can get the return code to see if YOUR mail software is even going to try to send it.

Re: [PHP] zlib.output_compression

2005-07-13 Thread Mikey
LacaK wrote: Thanks for reply, In documentation is stated, than zlib.output_compression is changeable at PHP_INI_ALL. If there is no possibility to change it in script, why it is not PHP_INI_SYSTEM|PHP_INI_PERDIR ? And at second : When I set zlib.output_compression=on in php.ini, then I

Re: [PHP] zlib.output_compression

2005-07-13 Thread LacaK
Yes, I tried setting it to 1 and also on and 4096 /*buffer size*/, but the same result. phpinfo() says, that zlib.output_compression=on, but page is not compressed. I have checked source code of php, but I am not able to find, why it does not work ? Can any one explain, why is possible set

[PHP] Re: Missing or wrong reply-to headers in this mailing list

2005-07-13 Thread Alan Milnes
Rasmus Lerdorf wrote: Please search the archives for the complete and authoritative answer to that. The short version is that munging the reply-to header is technically incorrect and from a usability point of view it errors on the side of exposing someone's potentially private email. Oh I've

[PHP] Blocking login on the same username from diffrent computers

2005-07-13 Thread YaronKh
Hello I'm looking for away to block login to my web site from different computers on the same username, In other word: Only one person can be logged on to the web site with a username, if anyone else tries to log on while the first person is still logged on he will be blocked until the

Re: [PHP] Blocking login on the same username from diffrent computers

2005-07-13 Thread Raz
Yaron, You could store a 'logged in/out' status flag in a db...then reference it upon login, and use a chron job to tidy up any loose sessions every so often. raz -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How to read PHP variables.

2005-07-13 Thread Jasper Bryant-Greene
Bruno B B Magalhães wrote: That's my problem: I have a configuration files with the following structure... $vars['varname'] = 'varvalue'; If you trust the config file: ?php eval(file_get_contents('/path/to/config.file')); ? Jasper -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] connecting to MySQL from a Mac

2005-07-13 Thread Burhan Khalid
Bruce Gilbert wrote: Hello, I am trying to add a PHP search to my site and the read me file says to: 2. In the server, create a database in MySQL to hold Sphider data. a) at command prompt type (to log into MySQL): mysql -u your username -p Enter your password when prompted. b) in MySQL,

[PHP] Re: [PHP-DB] Security question [was Searchable/Sortable Database Fields with MySQL/PHP]

2005-07-13 Thread Ahmed Saad
Hi jeffrey, On 7/13/05, Jeffrey [EMAIL PROTECTED] wrote: Is it worth encrypting data on the database tables when anyone who can access the application itself - or better still the server - could readily access the encrypted data? Assuming SSL connections, secure server, etc, would you also

[PHP] Logout help needed

2005-07-13 Thread suma parakala
Hi I am developing web application using php html javascript and postgresql. I designed my web page using html frames. 1 head frame,2 centres frame,3 side frame. My problem is I have placed logout option in head frame. While user has loged in their session will be registered. Since i have

Re: [PHP] Session problems

2005-07-13 Thread Ahmed Saad
On 7/13/05, Richard Lynch [EMAIL PROTECTED] wrote: I think you need to call session_name() *BEFORE* session_start() but I could be wrong about that... totally right! in the php manual, The session name is reset to the default value stored in session.name at request startup time. Thus, you need

[PHP] PHP error_log format doesn't include timestamp?

2005-07-13 Thread Lawrence Kennon
In looking at my Apache (2.0.52) error log normal errors have a timestamp (see below): [Wed Jul 13 05:36:07 2005] [error] [client 192.168.123.1] File does not exist: /var/www/thenewagesite/test.html However PHP generated errors to the Apache error log do not give a timestamp: [client

Re: [PHP] Logout help needed

2005-07-13 Thread Ahmed Saad
Hi Suma, On 7/11/05, suma parakala [EMAIL PROTECTED] wrote: Since i have placed logout in head frame its being logged out from head frame only. How i can log out from all three frames. anyone please help me Thanks Redirect the user to another page, which loads in the main window (not in a

[PHP] Re: Session problems [SOLVED]

2005-07-13 Thread Jason
Well after a bit of tweaking of my script I realized it was not the code that was causing the problem. It was a php.ini setting, I run a few virtual hosts on my webserver and it turned out to be the session.referer_check was set to 0, modify this to equal session.referer_check = and it worked

[PHP] Re: Blocking login on the same username from diffrent computers

2005-07-13 Thread Aaron Greenspan
Yaron, The Lampshade framework handles this for you. Any given user for an application can only log in from one place at a time; otherwise they'll be signed out from all of their other sessions. If you're interested, take a look: http://www.thinkcomputer.com/software/lampshade/free.html

Re: [PHP] OT - Fonts

2005-07-13 Thread Marek Kilimajer
Richard Lynch wrote: On Tue, July 12, 2005 1:30 pm, timothy johnson said: I am trying to use a font on my webpage that I have on my system only after a friend sent it to me. But its a neat little font that I want to use in a couple place on my site, like some of the headers. So I have two

[PHP] How to run .sql files using php

2005-07-13 Thread babu
Hi , i have a set of queries which i have placed them in one .sql file.i want to run this file using php's mssql and oracle(oci) functions. any idea pls. thanks. babu - How much free photo storage do you get? Store your holiday snaps for FREE

RE: [PHP] How to run .sql files using php

2005-07-13 Thread Shaw, Chris - Accenture
Can you use mysqli_multi_query for mysql in php5? hth -Original Message- From: babu [mailto:[EMAIL PROTECTED] Sent: 13 July 2005 16:39 To: php-general@lists.php.net Subject: [PHP] How to run .sql files using php Hi , i have a set of queries which i have placed them in one .sql file.i

Re: [PHP] How to run .sql files using php

2005-07-13 Thread glumtail
I think it's better to split the SQL into pieces line 1: create table line 2: insert into . $sql = 'create table' $sql = 'insert into ...' 2005/7/13, Shaw, Chris - Accenture [EMAIL PROTECTED]: Can you use mysqli_multi_query for mysql in php5? hth -Original

[PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
Ok, I thought I had installed PHP correctly on my Win2003 server, using ISAPI. I added the extension, and mapped it to the php4isapi.dll file, added a path to my /php folder in Win2003, edited my php.ini file which I copied to my /windows/system32 folder. In IIS, I made sure that the

Re: [PHP] 404 error - why???!!

2005-07-13 Thread Richard Davey
Hello Steve, Wednesday, July 13, 2005, 5:11:58 PM, you wrote: GSII Ok, I thought I had installed PHP correctly on my Win2003 server, using GSII ISAPI. I added the extension, and mapped it to the php4isapi.dll file, GSII added a path to my /php folder in Win2003, edited my php.ini file which

Re: [PHP] 404 error - why???!!

2005-07-13 Thread glumtail
Hi: 1. did you copy php4isap.dll to /php folder? 2. in local disk? 2005/7/14, Grosz, Steve (IPG IT) [EMAIL PROTECTED]: Ok, I thought I had installed PHP correctly on my Win2003 server, using ISAPI. I added the extension, and mapped it to the php4isapi.dll file, added a path to my /php

[PHP] DAO/VO Pattern Help

2005-07-13 Thread Jed R. Brubaker
Hello all, As I am trying to take my PHP code in a more enterprise direction with strict model/logic/view layers, I have been working with DAOs and the matching VOs. So I am running into a problem that I could really use some direction on: DAO/VO works great with single tables, but I tend to

RE: [PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
Yes, the dll file is on the server, in the /php directory Steve -Original Message- From: glumtail [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 10:18 AM To: php-general@lists.php.net Subject: Re: [PHP] 404 error - why???!! Hi: 1. did you copy php4isap.dll to /php folder?

RE: [PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
Regular .htm files work just fine. Its kinda strange.. -Original Message- From: Richard Davey [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 10:18 AM To: php-general@lists.php.net Subject: Re: [PHP] 404 error - why???!! Hello Steve, Wednesday, July 13, 2005, 5:11:58 PM,

[PHP] Time Zone names

2005-07-13 Thread Richard Lynch
I'd like to generate a list of time zones (EST, CDT, whatever) for a popup. Seems like it should be easy... This is so the Sales guy can just plug in the time and zone of who he's gotta call back, and I stuff that in the database, and he gets a morning report of who to call. ?php for ($offset

Re: [PHP] 404 error - why???!!

2005-07-13 Thread glumtail
Hello Steve, is the ISAPI loaded success? what's your PHP version? Version 4.x works fine. 2005/7/14, Grosz, Steve (IPG IT) [EMAIL PROTECTED]: Regular .htm files work just fine. Its kinda strange.. -Original Message- From: Richard Davey [mailto:[EMAIL PROTECTED] Sent:

RE: [PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
I guess I'm not sure how to tell if its loading correctly. Can you tell me how to confirm that it is? I'm using PHP 4.x as well. Steve -Original Message- From: glumtail [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 11:00 AM To: php-general@lists.php.net Subject: Re: [PHP]

Re: [PHP] Time Zone names

2005-07-13 Thread Dotan Cohen
On 7/13/05, Richard Lynch [EMAIL PROTECTED] wrote: I'd like to generate a list of time zones (EST, CDT, whatever) for a popup. Seems like it should be easy... This is so the Sales guy can just plug in the time and zone of who he's gotta call back, and I stuff that in the database, and he

RE: [PHP] DAO/VO Pattern Help

2005-07-13 Thread Michael Sims
Jed R. Brubaker wrote: So I am running into a problem that I could really use some direction on: DAO/VO works great with single tables, but I tend to make my database work for its existance, and joins ar eeverywhere. What I don't understand is how to approach DAO/VO when table joins are

Re: [PHP] 404 error - why???!!

2005-07-13 Thread glumtail
Hello Steve, Administrator tools - Internet Services Manager - Default Web Site - ISAPI 2005/7/14, Grosz, Steve (IPG IT) [EMAIL PROTECTED]: I guess I'm not sure how to tell if its loading correctly. Can you tell me how to confirm that it is? I'm using PHP 4.x as well. Steve

RE: [PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
Ohthat!! :) -Original Message- From: glumtail [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 11:10 AM To: php-general@lists.php.net Subject: Re: [PHP] 404 error - why???!! Hello Steve, Administrator tools - Internet Services Manager - Default Web Site - ISAPI

[PHP] I have a mail in text plain, how i can imap_fetchstructure() ?

2005-07-13 Thread Your Name
Hello, I have a list of mails taken from my old host in cPanel Now i want read this messages, and they are in text plain. Wath i can do ? I submit each message to me BD MySQL, but when i do this:[PHPNET]SELECT * FROM mails WHERE...[/PHPNET] And

RE: [PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
Ok, I don't think it is loaded. I manually added it, restarted w3svc, and the status still shows as *unknown* -Original Message- From: glumtail [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 11:10 AM To: php-general@lists.php.net Subject: Re: [PHP] 404 error - why???!!

RE: [PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
Ok, now it appears the ISAPI is loaded, I get the green up arrow, but the priority always shows as 'unknown'. Still get the 404 errors when trying to view .php pages Steve -Original Message- From: glumtail [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 11:10 AM To:

Re: [PHP] 404 error - why???!!

2005-07-13 Thread glumtail
Hello, it seems that your ISAPI is ok. 1. with full permission? e.g: execute,write and so on... 2. how about asp file? 2005/7/14, Grosz, Steve (IPG IT) [EMAIL PROTECTED]: Ok, now it appears the ISAPI is loaded, I get the green up arrow, but the priority always shows as 'unknown'. Still

RE: [PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
OK, you lost me, execute/write on which file? I don't use asp, I use Coldfusion, and .htm, I'm only installing PHP so I can use the phpBB system. -Original Message- From: glumtail [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 12:05 PM To: php-general@lists.php.net Subject:

Re: [PHP] Re: Security, Late Nights and Overall Paranoia

2005-07-13 Thread Charles Stuart
On Jul 12, 2005, at 6:50 AM, Chris Shiflett wrote: As far as allowing [red] goes, you can just as easily add red to the list of available tags and not have to come up with a replacement for every other HTML tag that already exists. but what about the poor bastards that'll go around

Re: [PHP] 404 error - why???!!

2005-07-13 Thread Joseph
Steve, I may have missed this response, if this is a repeat please excuse me... Make sure you have the correct mysql and php versions to run phpBB. I had 404 errors with a blogging/forum application where the index file moved to another page. But because there were some errors in setup the

RE: [PHP] 404 error - why???!!

2005-07-13 Thread Grosz, Steve (IPG IT)
I appreciate the try, but no, I still get a 404 error. :) This is killing me!! -Original Message- From: Joseph [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 12:34 PM To: Grosz, Steve (IPG IT) Cc: php-general@lists.php.net Subject: Re: [PHP] 404 error - why???!! Steve, I

Re: [PHP] Time Zone names

2005-07-13 Thread Philip Hallstrom
I'd like to generate a list of time zones (EST, CDT, whatever) for a popup. Seems like it should be easy... This is so the Sales guy can just plug in the time and zone of who he's gotta call back, and I stuff that in the database, and he gets a morning report of who to call. ?php for ($offset

[PHP] Re: DAO/VO Pattern Help

2005-07-13 Thread Manuel Lemos
Hello, on 07/13/2005 01:28 PM Jed R. Brubaker said the following: As I am trying to take my PHP code in a more enterprise direction with strict model/logic/view layers, I have been working with DAOs and the matching VOs. So I am running into a problem that I could really use some direction

[PHP] 404 error - DLL files needed ??

2005-07-13 Thread Grosz, Steve (IPG IT)
In installing PHP4 on Win2003/IIS 6, I have noticed that only 1 dll file is used on the ISAPI install. What is the php4ts.dll file used for? And do I need to add it into my ISAPI area within IIS or just use the php4isapi.dll file... Steve

Re: [PHP] 404 error - DLL files needed ??

2005-07-13 Thread Mikey
Grosz, Steve (IPG IT) wrote: In installing PHP4 on Win2003/IIS 6, I have noticed that only 1 dll file is used on the ISAPI install. What is the php4ts.dll file used for? And do I need to add it into my ISAPI area within IIS or just use the php4isapi.dll file... Steve Well, as per the

[PHP] 404 Header Problems

2005-07-13 Thread Scott Taylor
I'm trying to issue a 404 header on one of my pages. But it does not redirect. I figured, with many function calls before it, that it might be outputting something to the screen before the header() command was issued. So, I tried issuing a 404 header from a new page, consisting of this

RE: [PHP] 404 error - DLL files needed ??

2005-07-13 Thread Grosz, Steve (IPG IT)
I'm afraid it didn't help. I know the php4ts.dll need to be in the path, and the instructions say that if that file is in the /php directory, and there is a Path to that directory, all should be fine. I'm curious if within IIS I use php4isapi.dll for my extension and ISAPI filter.

Re: [PHP] 404 error - DLL files needed ??

2005-07-13 Thread glumtail
Dear Steve: php4ts.dll is needed by php4isapi.dll. if you can visit your pages in wwwroot folder, just try to rename that page to php extension. e.g: rename postinfo.html to postinfo.php C:\PHP │ install.txt │ license.txt │ magic.mime │ news.txt │ php-cli.exe │ php.exe │ php.gif │ php.ini │

RE: [PHP] 404 error - DLL files needed ??

2005-07-13 Thread Grosz, Steve (IPG IT)
I tried that, renamed a txt file to .php, but when I try to get the .php file, I just get a 404 error. -Original Message- From: glumtail [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 2:15 PM To: php-general@lists.php.net Subject: Re: [PHP] 404 error - DLL files needed ??

[PHP] Install directions for Win2003 SP1??

2005-07-13 Thread Grosz, Steve (IPG IT)
Does anyone have a step by step, screenshots would be great, of how to install PHP 4.x on a Win2003 SP1 server? I've tried going through the install instructions on PHP.net's site for windows, but its still not working, so I think I'm missing something somewhere along the way. Thanks! Steve

[PHP] Re: 404 Header Problems

2005-07-13 Thread Jasper Bryant-Greene
Scott Taylor wrote: I'm trying to issue a 404 header on one of my pages. But it does not redirect. I figured, with many function calls before it, that it might be outputting something to the screen before the header() command was issued. So, I tried issuing a 404 header from a new page,

Re: [PHP] 404 error - DLL files needed ??

2005-07-13 Thread Tjoekbezoer van Damme
On 7/13/05, Grosz, Steve (IPG IT) [EMAIL PROTECTED] wrote: I tried that, renamed a txt file to .php, but when I try to get the .php file, I just get a 404 error. Grosz, this might very well be your webserver invoking. By default, IIS 6.0 all webserver extensions (like PHP). To check if your

RE: [PHP] 404 error - DLL files needed ??

2005-07-13 Thread Grosz, Steve (IPG IT)
Tjoekbezoer, I can tell you that it is there, because I manually added it, and it is set to 'allowed'. Steve -Original Message- From: Tjoekbezoer van Damme [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 13, 2005 3:52 PM To: php-general@lists.php.net Subject: Re: [PHP] 404 error - DLL

[PHP] New Install Question

2005-07-13 Thread php
We just set up a new webserver using Apache 2 and PHP5. When I transferred all the files over from my old server, I saw that none of the PHP files are being rendered (i.e. I see the PHP source instead of the resulting HTML). Here is the PHP.conf file we are using: # # PHP is an HTML-embedded

Re: [PHP] New Install Question

2005-07-13 Thread php
Never mind, I answered my own question. I added AddType application/x-httpd-php .php to the bottom of php.conf and that fixed the problem. We did not have that with our old system running php4. [EMAIL PROTECTED] wrote on 07/14/2005, 12:40:02 AM: We just set up a new webserver using Apache

[PHP] Dynamic Images and File Permissions

2005-07-13 Thread Adam Hubscher
I have a script that generates, creates, and updates dynamic banner images for users of a service. Recently I have run into a problem with file permissions... that has thoroughly annoyed me. I found a solution to fix the problem, however, it was then hit with another problem, and I'm not sure

[PHP] Echo array string index?

2005-07-13 Thread Matt Darby
I have an array setup as such: *$arr['generated text']='generated number';* What would be the best way to echo the key in a loop? Seems pretty easy but I've never attempted... Thanks all! Matt Darby

[PHP] Re: Echo array string index?

2005-07-13 Thread Adam Hubscher
Matt Darby wrote: I have an array setup as such: *$arr['generated text']='generated number';* What would be the best way to echo the key in a loop? Seems pretty easy but I've never attempted... Thanks all! Matt Darby I'm not sure I understand the question. You could do foreach($arr as $key

[PHP] Removing special characters

2005-07-13 Thread Computer Programmer
Is there a PHP built-in function to retrieve only the alphanumeric characters from a given string? I know that I can check for alphanumeric characters using the function ctype_alphanum () but it won't retrieve the alphanum characters. I also know that I can use str_replace to replace an