Re: [PHP] showing source

2007-05-18 Thread Paul Scott
On Fri, 2007-05-18 at 01:50 -0400, James Lockie wrote: This almost works but all my and are replaced with . Rather use named entities, www.php.net/htmlentities --Paul All Email originating from UWC is covered by disclaimer

[PHP] showing source

2007-05-18 Thread James Lockie
This almost works but all my and are replaced with . // open this file to show the source if (($fh = fopen( __FILE__, 'r' )) === FALSE){ die ('Failed to open source file (' . $_FILE_ . ') for reading!'); } else { $tags = array( , );

Re: [PHP] Download speed limit

2007-05-18 Thread clive
Rangel Reale wrote: Yes, I tried, this works, but I would like to control the send speed more, preferably via URL, as this programs will only be accessed by my desktop application, and I have full control of them. ok if its only your application thats going to use this data, you could 1.

RE: [PHP] IE7 = end tag?

2007-05-18 Thread Edward Kay
-Original Message- From: Jim Moseby [mailto:[EMAIL PROTECTED] Sent: 17 May 2007 21:29 To: 'rauhspund'; php-general@lists.php.net Subject: RE: [PHP] IE7 = end tag? #-- .meta info include(../plugins/lib/pluginmetadata.php); $_cached = !empty($_POST); ewiki_pmd($_cached);

RE: [PHP] Tipos about which CMS use

2007-05-18 Thread Edward Kay
Hi there, I'd like to replace my 'intranet' site with a CMS system to speed up the edit process. Some of my requirements are : - written in PHP :) - mysql based - documented/'well structured' - to allow development of customizations - ability to define which pages or sections are

[PHP] Browser Cache and PHP Namespace

2007-05-18 Thread Sancar Saran
Greetings, I had some problems with broser caching behaviors and php name space collision. I do lot of googling and try to figure what happened and I failed to figure. So I need help, Here Details 1-) Browser Cache Beahviors You know the back button problem. I search the net and found some

[PHP] Re: Browser Cache and PHP Namespace

2007-05-18 Thread M.Sokolewicz
Sancar Saran wrote: Greetings, I had some problems with broser caching behaviors and php name space collision. I do lot of googling and try to figure what happened and I failed to figure. So I need help, Here Details 1-) Browser Cache Beahviors You know the back button problem. I search

RE: [PHP] Setting Up A Simple Shopping Cart

2007-05-18 Thread Edward Kay
-Original Message- From: revDAVE [mailto:[EMAIL PROTECTED] Sent: 18 May 2007 01:33 To: php php Subject: Re: [PHP] Setting Up A Simple Shopping Cart On 5/17/2007 7:05 AM, revDAVE [EMAIL PROTECTED] wrote: Hello folks, I am a PHP NEWBIE. - I have the following three

[PHP] Re: showing source

2007-05-18 Thread M.Sokolewicz
Why don't you use: highlight_file(__FILE__) ? - tul James Lockie wrote: This almost works but all my and are replaced with . // open this file to show the source if (($fh = fopen( __FILE__, 'r' )) === FALSE){ die ('Failed to open source file (' . $_FILE_ . ') for

Re: [PHP] Can't link image directory?

2007-05-18 Thread Tijnema !
On 5/18/07, Haig (Home) [EMAIL PROTECTED] wrote: Hi everyone, I have a simple script that scans a directory and will output a list of sub directories as a hyperlink. Script is working fine. Only problem I have is that if there is a subdirectory called Image, my script won't see it. If I rename

Re: [PHP] Re: showing source

2007-05-18 Thread Christian Haensel
Why don't you use: highlight_file(__FILE__) ? OMG I have been coding that thing for MONTHS now... just to get syntax highlighting for my tutorial blog... maybe I shouldn't write tutorials... maybe I should rather read them *g* Thanks for this short, but awesome answer :o) I wasn't the one

[PHP] Re: showing source

2007-05-18 Thread itoctopus
yup, highlight_file($file_name) is your magical answer. http://ca.php.net/highlight_file Make sure this function will only access specific directories. -- itoctopus - http://www.itoctopus.com M.Sokolewicz [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Why don't you use:

[PHP] stay logged in for session

2007-05-18 Thread Joshua
hey guys, i am trying to set up a session so that when a user logs in, they will stay logged in until they close their browser. i have the session set up, however i keep getting an error saying: The page isn't redirecting properly Firefox has detected that the server is redirecting the

RE: [PHP] stay logged in for session

2007-05-18 Thread Edward Kay
-Original Message- From: Joshua [mailto:[EMAIL PROTECTED] Sent: 18 May 2007 11:43 To: PHP.net Subject: [PHP] stay logged in for session hey guys, i am trying to set up a session so that when a user logs in, they will stay logged in until they close their browser. i have the

Re: [PHP] stay logged in for session

2007-05-18 Thread Zoltán Németh
2007. 05. 18, péntek keltezéssel 12.43-kor Joshua ezt írta: hey guys, i am trying to set up a session so that when a user logs in, they will stay logged in until they close their browser. i have the session set up, however i keep getting an error saying: The page isn't redirecting properly

RE: [PHP] stay logged in for session

2007-05-18 Thread Zoltán Németh
2007. 05. 18, péntek keltezéssel 11.53-kor Edward Kay ezt írta: -Original Message- From: Joshua [mailto:[EMAIL PROTECTED] Sent: 18 May 2007 11:43 To: PHP.net Subject: [PHP] stay logged in for session hey guys, i am trying to set up a session so that when a user logs in,

RE: [PHP] stay logged in for session

2007-05-18 Thread Edward Kay
-Original Message- From: Joshua [mailto:[EMAIL PROTECTED] Sent: 18 May 2007 12:09 To: Edward Kay Subject: RE: [PHP] stay logged in for session On Fri, 2007-05-18 at 11:53 +0100, Edward Kay wrote: -Original Message- From: Joshua [mailto:[EMAIL PROTECTED] Sent:

Re: [PHP] stay logged in for session

2007-05-18 Thread itoctopus
Exactly! I still can't believe how many sites out there have the SQL injection problem. -- itoctopus - http://www.itoctopus.com Edward Kay [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] -Original Message- From: Joshua [mailto:[EMAIL PROTECTED] Sent: 18 May 2007 12:09

RE: [PHP] stay logged in for session

2007-05-18 Thread Edward Kay
HTTP Location headers require the full hostname, i.e. header(Location: http://www.example.com/page_to/redirect/to.php;); that is true, but usually it works with relative url-s also greets Zoltán Németh Just because some user agents handle non-standard data doesn't make it

RE: [PHP] stay logged in for session

2007-05-18 Thread Zoltán Németh
2007. 05. 18, péntek keltezéssel 12.43-kor Edward Kay ezt írta: HTTP Location headers require the full hostname, i.e. header(Location: http://www.example.com/page_to/redirect/to.php;); that is true, but usually it works with relative url-s also greets Zoltán Németh Just

Re: [PHP] Can't link image directory?

2007-05-18 Thread Daniel Brown
On 5/18/07, Tijnema ! [EMAIL PROTECTED] wrote: On 5/18/07, Haig (Home) [EMAIL PROTECTED] wrote: Hi everyone, I have a simple script that scans a directory and will output a list of sub directories as a hyperlink. Script is working fine. Only problem I have is that if there is a

Re[2]: [PHP] stay logged in for session

2007-05-18 Thread Richard Davey
Hi Edward, Friday, May 18, 2007, 12:43:43 PM, you wrote: Just because some user agents handle non-standard data doesn't make it correct. You mean user agents follow RFCs to the letter? :) Since when? :) I do agree with your comment, but it's a LOT more than some user agents. Every browser in

RE: [PHP] IE7 = end tag?

2007-05-18 Thread Edward Kay
The extra comma at the end of the array definition is still valid syntax in PHP. Try for yourself: php -r '$a = array(a = foo, b = bar,); print_r($a);' Interesting. Do you mean 'Valid Syntax' in that it 'works without error', or 'Valid Syntax' in that 'it was designed to work that

[PHP] Send HTML from PHP scripts ...

2007-05-18 Thread Kuldip Mond
Hi, I am looking to send a HTML page via a PHP script. The currentl method I use is : mail($email,Kuldip Test email for multiple reciptient - $coursename - $coursedate, TEST , FROM: $adminemail); However I can not see how to send HTML ?. Can you help

Re: [PHP] IE7 = end tag?

2007-05-18 Thread Robin Vickery
On 18/05/07, Jim Moseby [EMAIL PROTECTED] wrote: The extra comma at the end of the array definition is still valid syntax in PHP. Try for yourself: php -r '$a = array(a = foo, b = bar,); print_r($a);' Interesting. Do you mean 'Valid Syntax' in that it 'works without error', or 'Valid

RE: [PHP] IE7 = end tag?

2007-05-18 Thread Jim Moseby
The extra comma at the end of the array definition is still valid syntax in PHP. Try for yourself: php -r '$a = array(a = foo, b = bar,); print_r($a);' Interesting. Do you mean 'Valid Syntax' in that it 'works without error', or 'Valid Syntax' in that 'it was designed to work that

Re: [PHP] Can't link image directory?

2007-05-18 Thread Tijnema !
On 5/18/07, Haig Dedeyan [EMAIL PROTECTED] wrote: Sorry for the lack of information. I also was wrong about the subdirectory name. It's Images and not Image The workstation is running WinXP Pro while PHP 5 Apache 2 are on Suse 10.1. I also installed apache2 php5 on a WinXP Pro system and

Re: [PHP] Can't link image directory?

2007-05-18 Thread Daniel Brown
At last, why are you using file:// in your link? You're using a webserver to display the contents, but file:// links to files on the local hard drive. Unless the server is running on the same machine you're visiting the site with, it will fail to point to the right file. I'm not positive,

Re: [PHP] error_reporting(E_ALL) doesn't show anything

2007-05-18 Thread Jonathan
André Medeiros wrote: Either that, or ini_set('display_errors', '1'); On 5/15/07, Jim Lucas [EMAIL PROTECTED] wrote: Afan Pasalic wrote: hi, in php.ini is error_reporting turned off. and, to see an error have to open error_log. though, for me is much easier to have it on and see the

Re: [PHP] Can't link image directory?

2007-05-18 Thread Haig Dedeyan
Sorry for the lack of information. I also was wrong about the subdirectory name. It's Images and not Image The workstation is running WinXP Pro while PHP 5 Apache 2 are on Suse 10.1. I also installed apache2 php5 on a WinXP Pro system and the same problem occurs. I have tried 7

[PHP] Re: Download speed limit

2007-05-18 Thread Jonathan
Rangel Reale wrote: Hello! For my application I need to limit the speed that my application sends data, in my case a binary file. I need to send the speed as a parameter, like: sendfile.php?speed=2 Would send the file at 20kb/s (forgetting about real byte counts for this example). To

Re: [PHP] Re: Download speed limit

2007-05-18 Thread Tijnema !
On 5/18/07, Jonathan [EMAIL PROTECTED] wrote: Rangel Reale wrote: Hello! For my application I need to limit the speed that my application sends data, in my case a binary file. I need to send the speed as a parameter, like: sendfile.php?speed=2 Would send the file at 20kb/s

[PHP] Re: Send HTML from PHP scripts ...

2007-05-18 Thread Steve
Might want to put a small bit of effort in first... http://us.php.net/manual/en/function.mail.php Example 1075 Kuldip Mond [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I am looking to send a HTML page via a PHP script. The currentl method I use is :

Re: [PHP] RE: Bounty

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 17:08 +0200, Tijnema ! wrote: On 5/16/07, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] Where are the list administrators to ban this guy?? [/snip] This is an un-moderated list, so that makes us the police of our own list. Yes, it might be a un-moderated

Re: [PHP] RE: Bounty

2007-05-18 Thread Tijnema !
On 5/16/07, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] Where are the list administrators to ban this guy?? [/snip] This is an un-moderated list, so that makes us the police of our own list. Yes, it might be a un-moderated list, but there's someone who can ban users :) Tijnema -- PHP

[PHP] Re: showing source

2007-05-18 Thread James Lockie
M.Sokolewicz wrote: Why don't you use: highlight_file(__FILE__) ? I didn't know about that. Awesome, thanks. :-) I used the highlight_num from the comments to show line numbers. :-) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] ftp_get() - OpenVMS - semicolon in filenames

2007-05-18 Thread Jim Moseby
I am trying to use the php ftp_* functions to access files on an OpenVMS UCX FTP server. I can log in and list the files, but I can't use ftp_get() to get any of them. Instead I get a 'file not found' back from ftp_get(). I think the problem is in OpenVMS naming conventions. OpenVMS saves

Re: [PHP] Re: Download speed limit

2007-05-18 Thread Rangel Reale
- Original Message - From: Tijnema ! [EMAIL PROTECTED] To: Jonathan [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Friday, May 18, 2007 12:07 PM Subject: Re: [PHP] Re: Download speed limit On 5/18/07, Jonathan [EMAIL PROTECTED] wrote: Rangel Reale wrote: Hello! For my

[PHP] Re: showing source

2007-05-18 Thread Steve
Not that it really matters in this scenario, but if you rename a file to .phps you should be able to navigate to it in a web browser and have nice, highlighted syntax. It's pretty nice for internally viewing a file, but obviously I wouldn't recommend doing this with live files that contain

Re: [PHP] Re: showing source

2007-05-18 Thread Tijnema !
On 5/18/07, Steve [EMAIL PROTECTED] wrote: Not that it really matters in this scenario, but if you rename a file to .phps you should be able to navigate to it in a web browser and have nice, highlighted syntax. It's pretty nice for internally viewing a file, but obviously I wouldn't recommend

Re: [PHP] Re: Download speed limit

2007-05-18 Thread Tijnema !
On 5/18/07, Rangel Reale [EMAIL PROTECTED] wrote: - Original Message - From: Tijnema ! [EMAIL PROTECTED] To: Jonathan [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Friday, May 18, 2007 12:07 PM Subject: Re: [PHP] Re: Download speed limit On 5/18/07, Jonathan [EMAIL PROTECTED]

[PHP] PHP5 Static functions called through __call() that don't exist... yet

2007-05-18 Thread Jared Farrish
Hi all, I am building an assertType object using static functions. What I want to keep away from is the following: code public static function assertString($para){ return $answer; }; public static function assertBool($para){ return $answer; }; ... public static function

[PHP] Re: Send HTML from PHP scripts ...

2007-05-18 Thread Jonathan
Kuldip Mond wrote: Hi, I am looking to send a HTML page via a PHP script. The currentl method I use is : mail($email,Kuldip Test email for multiple reciptient - $coursename - $coursedate, TEST , FROM: $adminemail); However I can not see how to send HTML

RE: [PHP] Can't link image directory?

2007-05-18 Thread Haig Dedeyan
shows me the subdirectories that exist in the directory I configure the script for, but no further levels of subdirectories as it stands. That could be modified *very* easily, but that's a different matter. On my system, it shows /images without a problem, which more or less adds

[PHP] Security Question, re directory permissions

2007-05-18 Thread Al
I'm on a shared Linux host and have been wondering about security and directory other [world] permissions. The defaults are 755. The 'others' [world] can read them only. Is there a security hole if a dir on the doc root if a directory has permissions 757? If there is a security problem, what

[PHP] People's misbehavior on the list

2007-05-18 Thread PHP Developer
some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank ya - Moody friends. Drama queens. Your life? Nope! - their life, your story. Play Sims Stories at Yahoo! Games.

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Roger B.A. Klorese
PHP Developer wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank ya Any email client that uses the presence or absence of a Re: header to decide if posts are related is severely broken. --

Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 12:22 -0700, PHP Developer wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank ya Sounds like you should use a different client... or stop whining. I noticed your email client

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Greg Donald
On 5/18/07, PHP Developer [EMAIL PROTECTED] wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank ya Some people do not correctly capitalize and punctuate their sentences while posting on this list.

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Jason Pruim
THAT'S WHY I ALWAYS TOP POST AND ALWAYS TYPE IN CAPS. :) On May 18, 2007, at 3:35 PM, Greg Donald wrote: On 5/18/07, PHP Developer [EMAIL PROTECTED] wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate .

[PHP] People's misbehavior on the list

2007-05-18 Thread Danial Rahmanzadeh
hey, I use Gmail but i have the same problem.

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Roger B.A. Klorese
Danial Rahmanzadeh wrote: hey, I use Gmail but i have the same problem. Whoever said Gmail was a good mail client?! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Greg Donald
On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Whoever said Gmail was a good mail client?! I give up, who? -- Greg Donald http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Danial Rahmanzadeh wrote: hey, I use Gmail but i have the same problem. I use gmail too, and the messages are grouped nicely, I don't see any problem. Whoever said Gmail was a good mail client?! I do :) Tijnema -- PHP General

Re: [PHP] Security Question, re directory permissions

2007-05-18 Thread Tijnema !
On 5/18/07, Al [EMAIL PROTECTED] wrote: I'm on a shared Linux host and have been wondering about security and directory other [world] permissions. The defaults are 755. The 'others' [world] can read them only. Is there a security hole if a dir on the doc root if a directory has permissions

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 14:35 -0500, Greg Donald wrote: On 5/18/07, PHP Developer [EMAIL PROTECTED] wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank ya Some people do not correctly

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 14:43 -0500, Greg Donald wrote: On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Whoever said Gmail was a good mail client?! I give up, who? Tijnema! Cheers, Rob. -- .. | InterJinn Application

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Greg Donald [EMAIL PROTECTED] wrote: On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Whoever said Gmail was a good mail client?! I give up, who? I do, it works great. No slow POP3 or such shit. I use web interface 24/7, web chat on the fly, messages are grouped,

[PHP] Include files....

2007-05-18 Thread Jason Pruim
Okay, Very Newbie-ish question coming! I can't figure out why my include won't work... Here's the text: index.php: ?PHP include 'defaults.php'; $link = mysql_connect($server, $username, $password) or die('Could not connect: ' . mysql_error()); echo 'Connected successfully BR';

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Greg Donald
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 14:43 -0500, Greg Donald wrote: On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Whoever said Gmail was a good mail client?! I give up, who? Tijnema! Is that like Yahoo! ? Or do people always yell his/her

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Danial Rahmanzadeh
plus 2853 mb FREE storage

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Greg Donald [EMAIL PROTECTED] wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 14:43 -0500, Greg Donald wrote: On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Whoever said Gmail was a good mail client?! I give up, who? Tijnema!

Re: [PHP] Security Question, re directory permissions

2007-05-18 Thread Al
How can they write or edit files there without having ftp access or the site's file manager? Tijnema ! wrote: On 5/18/07, Al [EMAIL PROTECTED] wrote: I'm on a shared Linux host and have been wondering about security and directory other [world] permissions. The defaults are 755. The 'others'

[PHP] Setting Up A Simple Shopping Cart

2007-05-18 Thread Danial Rahmanzadeh
oscommerce is very bad on installin' new templates. come and join developing devenetstore. an open source project: www.devnetstore.com

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O wait, since I copied the amount of MB, it has changed already, it is 2853.822762 now :) Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] People's misbehavior on the list

2007-05-18 Thread Danial Rahmanzadeh
lol

Re: [PHP] Security Question, re directory permissions

2007-05-18 Thread Tijnema !
On 5/18/07, Al [EMAIL PROTECTED] wrote: How can they write or edit files there without having ftp access or the site's file manager? SSH access? Telnet maybe? PHP script? CGI script? ASP script? There are a lot of possible ways someone can write there. Tijnema Tijnema ! wrote: On

Re: [PHP] Include files....

2007-05-18 Thread Tijnema !
On 5/18/07, Jason Pruim [EMAIL PROTECTED] wrote: Okay, Very Newbie-ish question coming! I can't figure out why my include won't work... Here's the text: index.php: ?PHP include 'defaults.php'; $link = mysql_connect($server, $username, $password) or die('Could not connect: ' . mysql_error());

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O wait, since I copied the amount of MB, it has changed already, it is 2853.822762 now :) Anyone know if gmailFs

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Edward Vermillion
On May 18, 2007, at 2:55 PM, Robert Cummings wrote: On Fri, 2007-05-18 at 14:35 -0500, Greg Donald wrote: On 5/18/07, PHP Developer [EMAIL PROTECTED] wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate .

Re: [PHP] Include files....

2007-05-18 Thread Jason Pruim
On May 18, 2007, at 4:12 PM, Tijnema ! wrote: Thanks in advance for helping me through my obvious friday afternoon brain fart... I guess you forget that defaults.php is a php file and needs to start with ?php and end with ? Tijnema Well there it is... The Brain fart... Or

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Ashley M. Kirchner
Tijnema ! wrote: 2853.822438 now, to be exact :) O wait, since I copied the amount of MB, it has changed already, it is 2853.822762 now :) Tijnema Do you suppose they have little people running around the data center every day, shutting down machines, adding a hard drive or two, and put

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Jason Pruim
On May 18, 2007, at 4:15 PM, Robert Cummings wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O wait, since I copied the amount of MB, it has changed already, it

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 15:16 -0500, Edward Vermillion wrote: On May 18, 2007, at 2:55 PM, Robert Cummings wrote: On Fri, 2007-05-18 at 14:35 -0500, Greg Donald wrote: On 5/18/07, PHP Developer [EMAIL PROTECTED] wrote: some people don't remove the Re: prefix when answering to the

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 16:23 -0400, Jason Pruim wrote: On May 18, 2007, at 4:15 PM, Robert Cummings wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O wait,

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Greg Donald
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: Anyone know if gmailFs supports RAID across multiple accounts? :) ROFL. -- Greg Donald http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Include files....

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 16:20 -0400, Jason Pruim wrote: On May 18, 2007, at 4:12 PM, Tijnema ! wrote: Thanks in advance for helping me through my obvious friday afternoon brain fart... I guess you forget that defaults.php is a php file and needs to start with ?php and end with ?

Re: [PHP] Security Question, re directory permissions [long answer]

2007-05-18 Thread Daniel Brown
On 5/18/07, Al [EMAIL PROTECTED] wrote: I'm on a shared Linux host and have been wondering about security and directory other [world] permissions. The defaults are 755. The 'others' [world] can read them only. Is there a security hole if a dir on the doc root if a directory has permissions

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema !
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O wait, since I copied the amount of MB, it has changed already, it

Re: [PHP] Include files....

2007-05-18 Thread Tijnema !
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 16:20 -0400, Jason Pruim wrote: On May 18, 2007, at 4:12 PM, Tijnema ! wrote: Thanks in advance for helping me through my obvious friday afternoon brain fart... I guess you forget that defaults.php is a

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Daniel Brown
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O wait, since I copied the amount of MB, it has changed already, it

Re: [PHP] Include files....

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 22:31 +0200, Tijnema ! wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 16:20 -0400, Jason Pruim wrote: On May 18, 2007, at 4:12 PM, Tijnema ! wrote: Thanks in advance for helping me through my obvious friday afternoon

[PHP] People's misbehavior on the list

2007-05-18 Thread Danial Rahmanzadeh
maybe

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 16:35 -0400, Daniel Brown wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 22:27 +0200, Tijnema ! wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE storage 2853.822438 now, to be exact :) O

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Daniel Brown
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:27 +0200, Tijnema ! wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07, Danial Rahmanzadeh [EMAIL PROTECTED] wrote: plus 2853 mb FREE

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Robert Cummings
On Fri, 2007-05-18 at 16:47 -0400, Daniel Brown wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:27 +0200, Tijnema ! wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:08 +0200, Tijnema ! wrote: On 5/18/07,

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Daniel Brown
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 16:47 -0400, Daniel Brown wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:27 +0200, Tijnema ! wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri,

Re: [PHP] Include files....

2007-05-18 Thread Tijnema !
On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 22:31 +0200, Tijnema ! wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 16:20 -0400, Jason Pruim wrote: On May 18, 2007, at 4:12 PM, Tijnema ! wrote: Thanks in advance

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema
On 5/18/07, Greg Donald [EMAIL PROTECTED] wrote: On 5/18/07, Robert Cummings [EMAIL PROTECTED] wrote: On Fri, 2007-05-18 at 14:43 -0500, Greg Donald wrote: On 5/18/07, Roger B.A. Klorese [EMAIL PROTECTED] wrote: Whoever said Gmail was a good mail client?! I give up, who? Tijnema!

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Danbrown !
I changed it to Tijnema, you happy now ?? :P:P Tijnema Yes. Names with exclamation points are dumb. ;-P -- Daniel P. Brown [office] (570-) 587-7080 Ext. 272 [mobile] (570-) 766-8107

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema
On 5/18/07, Danbrown ! [EMAIL PROTECTED] wrote: I changed it to Tijnema, you happy now ?? :P:P Tijnema Yes. Names with exclamation points are dumb. ;-P What a nice name do you have right now :-) I like it ;) Tijnema -- Daniel P. Brown [office] (570-) 587-7080 Ext. 272

RE: [PHP] People's misbehavior on the list

2007-05-18 Thread Jay Blanchard
[snip] ...some really funny and other not so funny stuff [/snip] It Must Be Friday [tm] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php5 cert

2007-05-18 Thread Greg Donald
Anyone wanna share their insights into the php5 cert test? The php4 test was pretty simple for me, but that was a couple of years ago. It seems there's quite a bit of new material being covered on the php5 version. I figure with the same number of questions, things had to get more general if

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Tijnema
On 5/18/07, Jay Blanchard [EMAIL PROTECTED] wrote: [snip] ...some really funny and other not so funny stuff [/snip] It Must Be Friday [tm] For some people it is, and for it isn't anymore :-P Tijnema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Danbrown !
On 5/18/07, Tijnema [EMAIL PROTECTED] wrote: On 5/18/07, Danbrown ! [EMAIL PROTECTED] wrote: I changed it to Tijnema, you happy now ?? :P:P Tijnema Yes. Names with exclamation points are dumb. ;-P What a nice name do you have right now :-) I like it ;) Tijnema --

[PHP] Just to prove my point (used to be - Re: [PHP] People's misbehavior on the list)

2007-05-18 Thread Jim Lucas
PHP Developer wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank ya - Moody friends. Drama queens. Your life? Nope! - their life, your story. Play Sims

Re: [PHP] People's misbehavior on the list

2007-05-18 Thread Daniel Brown
On 5/18/07, Tijnema [EMAIL PROTECTED] wrote: On 5/18/07, Danbrown ! [EMAIL PROTECTED] wrote: On 5/18/07, Tijnema [EMAIL PROTECTED] wrote: On 5/18/07, Danbrown ! [EMAIL PROTECTED] wrote: I changed it to Tijnema, you happy now ?? :P:P Tijnema Yes. Names

Re: [PHP] Just to prove my point (used to be - Re: [PHP] People's misbehavior on the list)

2007-05-18 Thread Tijnema
On 5/19/07, Jim Lucas [EMAIL PROTECTED] wrote: PHP Developer wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank ya - Moody friends. Drama queens. Your life?

Re: [PHP] Just to prove my point (used to be - Re: [PHP] People's misbehavior on the list)

2007-05-18 Thread Jim Lucas
Jim Lucas wrote: PHP Developer wrote: some people don't remove the Re: prefix when answering to the questions It opens a new topic on the list and that's not appropriate . Thank ya - Moody friends. Drama queens. Your life? Nope! - their life, your

  1   2   >