Re: [PHP] Resizing a jpeg stored in a database

2003-09-19 Thread Jason Wong
On Friday 19 September 2003 04:51, Donald Tyler wrote: [snip] Now I need to combine the two processes. I am storing jpegs in a database, and I want to write a script that can serve the image as either a thumbnail view or a full view. How exactly would I go about this? I was hoping I could

Re: [PHP] Warning during File uploading

2003-09-19 Thread Jason Wong
On Friday 19 September 2003 12:47, Binay wrote: I am uploading html,text etc files though HTTP upload form method. In my php.ini file value of upload_max_filesize is 2 MB. Now if the file size exceeds 2 MB i get warning messages saying size of the file exceeds upload_max_filesize value . I

Re: [PHP] Session with various Browser.

2003-09-19 Thread Eugene Lee
On Fri, Sep 19, 2003 at 02:39:21PM +1000, Justin French wrote: : : Re-enforcing this is the fact that (AFAIK) no Mac browsers display : in-line PDFs via a plug-in -- they open 'Acrobat' or 'Preview' to : display them -- in other words, the PDF file should not be considered : part of the web

[PHP] SOLVED RE: [PHP] SESSION variables losing data on WinXP?

2003-09-19 Thread Jami
In case anyone else runs into this problem, the way I solved it was by reinstalling php with the windows installer from php.net. I'm not exactly sure what the problem was, but reinstalling it this way solved the problem. Hope this helps someone else. Jami Moore LightSpark Digital Designs [EMAIL

[PHP] include not returning true under zend debugger - possible bug?

2003-09-19 Thread Tom H
Hi, if I have a statement like this; $success = @include somefile.inc; under normally runnning in win2000 php 4.3.3 $success is true if the file somefile.inc exists, but when run under the server debugger, $success is false, unless somefile.inc has a return statement such as; return 1; in

[PHP] PHPInfo reports wrong version

2003-09-19 Thread Trininox
I'm running Apache 2 on Win32 and after installing 4.3.3 I notice the X-Powered-By HTTP header is still PHP 4.3.2 so its reporting the wrong version in the header you can see http://gto.dynu.com/phpinfo.php PHP 4.3.2 looking further down everything says 4.3.3 except the title and the X-Powered

[PHP] Shared Objects

2003-09-19 Thread Adam Whitehead
Hi All I currently have a requirement to incorporate credit card processing in my application and my bank has provided me with a Linux shared object (.so file) that they said would suit my requirements. They indicated that PHP can instantiate these shared objects and execute the functions

Re: [PHP] Shared Objects

2003-09-19 Thread Marek Kilimajer
You need to write a php extension to wrap around the object's functions. Adam Whitehead wrote: Hi All I currently have a requirement to incorporate credit card processing in my application and my bank has provided me with a Linux shared object (.so file) that they said would suit my

[PHP] breaking a string into chunks

2003-09-19 Thread David T-G
Hi, all -- Now it's my turn to ask a simple question, or one that sure sounds like it should be... I have a 14-char date string like 20030917181909 and I need to break it into its component parts for a more readable 2003-09-17 18:19:09 view. How can I do that? Do I really need to call substr

[PHP] Bypassing the 'open or save' dialog when outputting a docum ent

2003-09-19 Thread FLOWERS, Gareth
Hi, I'v created several pages for my company website that output php to MS Word and MS Excel. These work fine fine but as soon as you load the page you get a dialog that asks whether to open or save the document. We always select 'open' as we want view the contents in Excel/Word applications. Is

[PHP] Re: breaking a string into chunks

2003-09-19 Thread David Robley
In article [EMAIL PROTECTED], davidtg- [EMAIL PROTECTED] says... Hi, all -- Now it's my turn to ask a simple question, or one that sure sounds like it should be... I have a 14-char date string like 20030917181909 and I need to break it into its component parts for a more readable

Re: [PHP] breaking a string into chunks

2003-09-19 Thread Duncan Hill
On Friday 19 Sep 2003 10:20, David T-G wrote: Hi, all -- Now it's my turn to ask a simple question, or one that sure sounds like it should be... I have a 14-char date string like 20030917181909 and I need to break it into its component parts for a more readable 2003-09-17 18:19:09 view.

Re: [PHP] breaking a string into chunks

2003-09-19 Thread Marek Kilimajer
you can call preg_match, and only once David T-G wrote: Hi, all -- Now it's my turn to ask a simple question, or one that sure sounds like it should be... I have a 14-char date string like 20030917181909 and I need to break it into its component parts for a more readable 2003-09-17 18:19:09

Re: [PHP] breaking a string into chunks

2003-09-19 Thread David T-G
Duncan, et al -- ...and then Duncan Hill said... % % On Friday 19 Sep 2003 10:20, David T-G wrote: % % I have a 14-char date string like 20030917181909 and I need to break it % into its component parts for a more readable 2003-09-17 18:19:09 view. % How can I do that? Do I really need to

[PHP] PHP mail() fonction - Slow? Alternative?

2003-09-19 Thread Stéphane Paquay
Hi all, I'm using the mail() fonction to send email and it takes 60 seconds to send a simple email. Maybe it's due to the sendmail configuration, or maybe not, I'm not really sure, 'cos I'm not a Linux expert. Anyway, I cannot take so long to send a simple mail with PHP, so I need to find a

RE: [PHP] breaking a string into chunks

2003-09-19 Thread Javier Tacon
Make your own function, for example: function transformDate($format,$str) { $d = Array(); for($i=0;$istrlen($str);$i+=2) { $d[]=substr($str,$i,2); } return date($format,mktime($d[4],$d[5],$d[6],$d[2],$d[3],$d[0]$d[1])); } print transformDate(Y-m-d H:i:s,20030917181909); So, you can

[PHP] Returns..

2003-09-19 Thread Chris Mach
I have a simple little script that displays news articles that are stored in mySQL database. However, when the script displays the data, it doesn't recognize the returns/enters. So I have to put brbr when ever I want a new paragraph to begin. How can I get my script to recognize the returns? is

Re: [PHP] Returns..

2003-09-19 Thread Marek Kilimajer
nl2br() Chris Mach wrote: I have a simple little script that displays news articles that are stored in mySQL database. However, when the script displays the data, it doesn't recognize the returns/enters. So I have to put brbr when ever I want a new paragraph to begin. How can I get my script to

Re: [PHP] Returns..

2003-09-19 Thread Petre Agenbag
nl2br() On Fri, 2003-09-19 at 13:27, Chris Mach wrote: I have a simple little script that displays news articles that are stored in mySQL database. However, when the script displays the data, it doesn't recognize the returns/enters. So I have to put brbr when ever I want a new paragraph to

[PHP] Installation

2003-09-19 Thread reywein
Hello, I’m trying to install PHP using the Windows Installer that I downloaded from your site, but the installation seems to hang up while copying the php.ini file to c:\windows. I double click on the install icon, a popup appears that indicates it is being installed, the time remaining

Re: [PHP] Session with various Browser.

2003-09-19 Thread Marek Kilimajer
Experiment with session_cache_limiter(), for example try to set it to private_no_expire. Harry Yau wrote: Hi all, I am new to php. At first, I wrote a php script to generate a pdf file from a tex file and load that pdf file to the browser by call a system call of latex -pdftex. After

RE: [PHP] when clients go bad

2003-09-19 Thread Jay Blanchard
[snip] : As this is a very small market, for this one client I did not create a : contract - there was however a very detailed proposal which did not include : any source files. Whether it'll stand or not, we also had a verbal : agreement that they did not want any source files as at the time

Re: [PHP] Installation

2003-09-19 Thread Marek Kilimajer
Are you using administrator account? [EMAIL PROTECTED] wrote: Hello, Im trying to install PHP using the Windows Installer that I downloaded from your site, but the installation seems to hang up while copying the php.ini file to c:\windows. I double click on the install icon, a popup appears

Re: [PHP] Returns..

2003-09-19 Thread Chris Mach
Why does it put a space in there? br / It's screwing up my other script which displays just the first 50 words of the news article by exploding each word into an array. So / is showing up after each break. http://www.ticatfans.com/index.php Marek Kilimajer [EMAIL PROTECTED] wrote in message

Re: [PHP] Returns..

2003-09-19 Thread Marek Kilimajer
The space is there so it does not break some old browsers which could thing it is BR/ tag (yes, it does not exists). Change your logic or do preg_replace(array(\r\n,\n,\r), 'br', $string) instead - not tested Chris Mach wrote: Why does it put a space in there? br / It's screwing up my

Re: [PHP] multilanguage site: performance question: included file with cases?

2003-09-19 Thread daniel hahler
on Wed, 17 Sep 2003 21:08:31 + Curt Zirzow wrote: I'm building up a site which should be german and english. So I have a site object which remembers this choice during the session and do a include('lang_'.$site-lang.'.php'); in my topmost.php. CZ I would suggest using gettext it will

RE: [PHP] Returns..

2003-09-19 Thread Jay Blanchard
[snip] Why does it put a space in there? br / It's screwing up my other script which displays just the first 50 words of the news article by exploding each word into an array. So / is showing up after each break. http://www.ticatfans.com/index.php [/snip] It is inserting the XHTML acceptable

[PHP] Re: Array, object problem....

2003-09-19 Thread george
point [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Huhgood news :))) Just solved it : I'm on the role.. Y! :))) - Your solution would be helpful. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Header won't redirect

2003-09-19 Thread Jonathan Duncan
This is code that I have in my index that check whether or not SSL is being used when accessing certain pages and if not then it redirects to the same address but with SSL. if ($pagename==login || $pagename==signup || $pagename==checkout) { if (!$HTTPS) { //header(Location:

RE: [PHP] Header won't redirect

2003-09-19 Thread Jay Blanchard
[snip] This used to work before I upgraded my PHP. [/snip] Let me guess, you upgraded without actually reading the README or update notes. I am going to guess that register_globals = off in php.ini. You can either fix the variables $_GET['pagename'] or turn RG back on. -- PHP General Mailing

[PHP] PHP vs CGI ???

2003-09-19 Thread Scott Fletcher
Hi! I have a question. Someone said that PHP is CGI, that kind of turned my head because PHP is not like that. But I can see one thing, PHP can be compiled as either a 'Shell-Scripting-Language', 'Webserver Component' or 'Both'... PHP would be a form of CGI if it is used as Shell

RE: [PHP] PHP vs CGI ???

2003-09-19 Thread Donald Tyler
PHP can be installed as either a CGI or an Apache module. There is documentation on this in the PHP readme files. Pretty much everything I read said that its always better to use the Apache Module version. (apparently its much more stable and secure) -Original Message- From: Scott

Re: [PHP] Returns..

2003-09-19 Thread Curt Zirzow
* Thus wrote Jay Blanchard ([EMAIL PROTECTED]): [snip] http://www.ticatfans.com/index.php [/snip] br /fontfont face=arial size=2/ Inserting a font tag (Bad, Bad Thing TM) in the space and displaying the last part of the tag. As a matter of fact, there is a font tag for each word on

Re: [PHP] PHP vs CGI ???

2003-09-19 Thread Scott Fletcher
Looked through all of those 11 README files and they don't say much about it. Donald Tyler [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] PHP can be installed as either a CGI or an Apache module. There is documentation on this in the PHP readme files. Pretty much everything I read

[PHP] PHP Apache (GLOBALS) question

2003-09-19 Thread Frank Tudor
I'm forwarding this from the php-windows group. (I sent it to both with the hopes someone with information would see this). I have installed Mandrake Linux and it comes standard with Apache PHP and MySQL. You can install all these rpms through the server selectionAnyway. In my test

Re: [PHP] breaking a string into chunks

2003-09-19 Thread Curt Zirzow
* Thus wrote Duncan Hill ([EMAIL PROTECTED]): On Friday 19 Sep 2003 10:20, David T-G wrote: Hi, all -- Now it's my turn to ask a simple question, or one that sure sounds like it should be... I have a 14-char date string like 20030917181909 and I need to break it into its component

Re: [PHP] Bypassing the 'open or save' dialog when outputting a docum ent

2003-09-19 Thread Curt Zirzow
* Thus wrote FLOWERS, Gareth ([EMAIL PROTECTED]): Hi, I'v created several pages for my company website that output php to MS Word and MS Excel. These work fine fine but as soon as you load the page you get a dialog that asks whether to open or save the document. We always select 'open' as

Re: [PHP] PHP mail() fonction - Slow? Alternative?

2003-09-19 Thread Curt Zirzow
* Thus wrote Stéphane Paquay ([EMAIL PROTECTED]): Hi all, I'm using the mail() fonction to send email and it takes 60 seconds to send a simple email. Maybe it's due to the sendmail configuration, or maybe not, I'm not really sure, 'cos I'm not a Linux expert. The odds are pretty high that

Re: [PHP] PHP Apache (GLOBALS) question

2003-09-19 Thread Marek Kilimajer
check your mysql.default_socket setting in php.ini Frank Tudor wrote: I can run mysql from a command line. What I create a connection string using my php.ini file I get failure. mysql_connect() errors My connection string code is very simple: ?php //list_db.php $link_id =

Re: [PHP] PHP vs CGI ???

2003-09-19 Thread Curt Zirzow
* Thus wrote Scott Fletcher ([EMAIL PROTECTED]): Looked through all of those 11 README files and they don't say much about it. Traditionally php had two modes: 1. module 2. cgi/commandline the cgi/commandline could be used interchangably. Now there are three modes: 1. module 2. cgi

[PHP] Brain cramp with arrays

2003-09-19 Thread Mike Morton
I am having a total brain cramp with this array problem (may have to do with the pressure change from the hurricane - but whatever ;) ) $helpsystem[onlineusignuphelp_username]='The username that you choose must be more than 5 characters and 20 or less characters in length. The username must

[PHP] Re: pcntl_fork() under linux with phpcli

2003-09-19 Thread Jay Smith
Try calling pcntl_waitpid() to clear out zombies. You could also try recompiling with --enable-sigchild if you haven't already. J Daniel Souza wrote: well... playing with fork() in a phpcli script, i got some troubles with childs... anybody knows how to dont get zombies/defuncts with

Re: [PHP] Bypassing the 'open or save' dialog when outputting a docum ent

2003-09-19 Thread Christophe Chisogne
Curt Zirzow wrote: a dialog that asks whether to open or save the document. Nope, unfortunately you don't have that power, and for good reasons. I agree, a browser should NOT open document (dangerous macros?) without asking. I remember Microsoft created a patch for IE (around version 5.5) to

Re: [PHP] PHP Apache (GLOBALS) question

2003-09-19 Thread John Nichel
Frank Tudor wrote: snip It worked like a charmbut guess what. I can't create a connection string to my database. Now I have to find a solution to get this website to work with globals on and mysql. Register globals has nothing to do with making a connection to MySQL. Post your code for the

Re: [PHP] PHP Apache (GLOBALS) question

2003-09-19 Thread John Nichel
Frank Tudor wrote: I can run mysql from a command line. What I create a connection string using my php.ini file I get failure. mysql_connect() errors My connection string code is very simple: ?php //list_db.php $link_id = mysql_connect(localhost, username, password); $result =

Re: [PHP] PHP vs CGI ???

2003-09-19 Thread Robert Cummings
PHP comes in three major compilations: module, CGI, and CLI. The module only works for web server (that I know of) and is the fastest way to serve PHP based content from a web server. CGI can be run for either the shell, or from the web server. There is a performance hit when run from the web

[PHP] Re: Header won't redirect

2003-09-19 Thread PHP
Jay, good guess, but wrong! While register_globals does equal off, I am using $_GET['pagename'] to assign the value to $pagename before the snippet of code that I sent. Sorry I didn't mention that earlier. I tried putting the _GET in my header redirection directly, but that didn't help. Any

Re: [PHP] PHP Apache (GLOBALS) question

2003-09-19 Thread John Nichel
Frank Tudor wrote: I did set my php.ini file in the etc dir and it worked fine. But there was no mysql listed when I did a phpinfo.php page. You installed all of this from RPM's, right? Did you install the php-mysql RPM? # rpm -q php-mysql So more specifically, when I ude my php.ini file i

Re: [PHP] Brain cramp with arrays

2003-09-19 Thread Tom Rogers
Hi, Saturday, September 20, 2003, 12:49:52 AM, you wrote: MM I am having a total brain cramp with this array problem (may have to do with MM the pressure change from the hurricane - but whatever ;) ) MM $helpsystem[onlineusignuphelp_username]='The username that you choose must MM be more than 5

[PHP] Attention: List Administrator

2003-09-19 Thread Chris Sherwood
To Whom it may concern the following users [EMAIL PROTECTED] [EMAIL PROTECTED] has been flooding me with viruses. fortunately I have the appropriate safeguards in place. however this does not seem like appropriate activity for users and members of this list to attempt on anyone let alone

[PHP] Re: socket connect and response time

2003-09-19 Thread Christophe Chisogne
Simon Wistow [EMAIL PROTECTED] writes: Is there an easy way to get the time taken to connect and the time taken to respond to an HTTP request or am I going to have to go in and hack around? Be careful, there are problems with timeouts, which dont work natively (you can get 20sec timeout or more

RE: [PHP] SNMP mib resoultion

2003-09-19 Thread Guy Fraser
Chris W. Parker Wrote : Guy Fraser mailto:[EMAIL PROTECTED] on Friday, September 12, 2003 1:53 PM said: This is my third attempt to send this message and I havn't seen one show up yet. :{ I hope this gets through. I got it!! Great... Now if someone could answer my

[PHP] config file

2003-09-19 Thread Payne
Hi, I have a project that I need to write and in the past I would hard code a lot of information in pages that I should have put into a config file. I am wanting to know if there a website that example how to write a config file and how to the php call them. Thanks Chuck -- PHP General

Re: [PHP] Re: Header won't redirect

2003-09-19 Thread Marek Kilimajer
And what about $_SERVER[HTTPS], are you using it? PHP wrote: Jay, good guess, but wrong! While register_globals does equal off, I am using $_GET['pagename'] to assign the value to $pagename before the snippet of code that I sent. Sorry I didn't mention that earlier. I tried putting the _GET

Re: [PHP] config file

2003-09-19 Thread R'twick Niceorgaw
Payne said the following on 9/19/2003 11:23 AM Hi, I have a project that I need to write and in the past I would hard code a lot of information in pages that I should have put into a config file. I am wanting to know if there a website that example how to write a config file and how to the

Re: [PHP] Brain cramp with arrays

2003-09-19 Thread Mike Morton
Hmm - ya - I could do that :) But then again that would be 2 easy! What I ended up doing is databasing the help system and retaining a 'rank order' in there - so that I can always quickly calculate the next and previous - dunno why I did not do that in the first place - but there it is :)

RE: [PHP] config file

2003-09-19 Thread Jay Blanchard
[snip] I have a project that I need to write and in the past I would hard code a lot of information in pages that I should have put into a config file. I am wanting to know if there a website that example how to write a config file and how to the php call them. take a look at parse_ini()

RE: [PHP] Re: Header won't redirect

2003-09-19 Thread Jay Blanchard
[snip] Jay, good guess, but wrong! While register_globals does equal off, I am using $_GET['pagename'] to assign the value to $pagename before the snippet of code that I sent. Sorry I didn't mention that earlier. I tried putting the _GET in my header redirection directly, but that didn't help.

Re: [PHP] Re: Header won't redirect

2003-09-19 Thread Robert Cummings
Here's an idea... echo each of the values and see what they actually contain. While you grab $pagename from $_GET, where are you getting $HTTPS? Is it a superglobal too? Maybe it's $_SERVER['HTTPS'] Cheers, Rob. On Fri, 2003-09-19 at 10:57, PHP wrote: Jay, good guess, but wrong! While

Re: [PHP] Returns..

2003-09-19 Thread Raquel Rice
On Fri, 19 Sep 2003 07:53:12 -0400 Chris Mach [EMAIL PROTECTED] wrote: Why does it put a space in there? br / It's screwing up my other script which displays just the first 50 words of the news article by exploding each word into an array. So / is showing up after each break. The reason

Re: [PHP] Attention: List Administrator

2003-09-19 Thread Curt Zirzow
* Thus wrote Chris Sherwood ([EMAIL PROTECTED]): To Whom it may concern the following users [EMAIL PROTECTED] [EMAIL PROTECTED] has been flooding me with viruses. fortunately I have the appropriate safeguards in place. Yes, I was just about to contact the list admins about this.

[PHP] Re: Brain cramp with arrays

2003-09-19 Thread Jonathan Duncan
Mike, Have you looked at the Next: http://us2.php.net/manual/en/function.next.php and Previous: http://us2.php.net/manual/en/function.prev.php ... functions? Regards, Jonathan Duncan Mike Morton [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I am having a total brain cramp with

RE: [PHP] Attention: List Administrator

2003-09-19 Thread Dan Joseph
I got a few of those returns also. I also apparently launched an attack on the computer web server. Kinda hilarious if you ask me. Good excuse to install Norton also. -Dan Joseph -Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Friday, September 19, 2003 11:39

Re: [PHP] Attention: List Administrator

2003-09-19 Thread Marek Kilimajer
And I get this: [snip] Violation Information: The subject violated the content filtering rule PHP as subject is a malacious code - Not Allowed. No attempt was made to repair. [/snip] How can PHP be a code so powerfull it is not even allowed in the subject? I thought PHP was a drug. Chris

Re: [PHP] Header won't redirect

2003-09-19 Thread Chris Shiflett
--- Jonathan Duncan [EMAIL PROTECTED] wrote: This is code that I have in my index that check whether or not SSL is being used when accessing certain pages and if not then it redirects to the same address but with SSL. if ($pagename==login || $pagename==signup || $pagename==checkout) { if

RE: [PHP] Attention: List Administrator

2003-09-19 Thread Jay Blanchard
[snip] [snippage] Violation Information: The subject violated the content filtering rule PHP as subject is a malacious code - Not Allowed. No attempt was made to repair. [/snippage] How can PHP be a code so powerfull it is not even allowed in the subject? I thought PHP was a drug. [/snip] LOL

Re: [PHP] Attention: List Administrator

2003-09-19 Thread Raquel Rice
On Fri, 19 Sep 2003 15:39:12 + Curt Zirzow [EMAIL PROTECTED] wrote: * Thus wrote Chris Sherwood ([EMAIL PROTECTED]): To Whom it may concern the following users [EMAIL PROTECTED] [EMAIL PROTECTED] has been flooding me with viruses. fortunately I have the appropriate

[PHP] Web server file perms || More than I can chew.....

2003-09-19 Thread CF High
Hey all. Got a problem with a site builder app I've spent three months developing. On my local machine (win2k pro, apache), no problems -- everything works just as designed. Today I began testing on the live server; i.e. my client's hosting company (linux, apache 1.3.27, php 4.3.1) -- that's

Re: [PHP] Attention: List Administrator

2003-09-19 Thread Payne
Raquel Rice wrote: On Fri, 19 Sep 2003 15:39:12 + Curt Zirzow [EMAIL PROTECTED] wrote: * Thus wrote Chris Sherwood ([EMAIL PROTECTED]): To Whom it may concern the following users [EMAIL PROTECTED] [EMAIL PROTECTED] has been flooding me with viruses. fortunately I have the

Re: [PHP] Re: Header won't redirect

2003-09-19 Thread Scott Fletcher
Try $_REQUEST['pagename'] instead. Oh before you do that, try this and see if you have any received data at all in the first place. just look for 'pagename' in any arrays, don't look for $_GET['pagename'], just look for 'pagename' and see if there is any. --snip-- ? print_r($GLOBALS); ?

Re: [PHP] Re: Header won't redirect

2003-09-19 Thread Jonathan Duncan
Marek and Rob, Doh! That was it. I am still finding things that I used to assign globally. It is a good thing, but it makes for a bit of work. Thanks to Jay too. I appreciate everyone's help. Have a good one, Jonathan Duncan Marek Kilimajer [EMAIL PROTECTED] wrote in message news:[EMAIL

Re: [PHP] Re: Header won't redirect

2003-09-19 Thread Jonathan Duncan
Jay, Try replying to the group so that your contributions stay with the thread instead of being orphaned and lost. Regards, Jonathan Duncan Jay Blanchard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [snip] Jay, good guess, but wrong! While register_globals does equal off, I am

Re: [PHP] PHP Apache (GLOBALS) question

2003-09-19 Thread John Nichel
Frank Tudor wrote: Yes to the php-mysql rpm, But listen I think it was the way it built the initial appach php mysql configurations I don't think the php.ini refects an accurate setup of my php mysql setup. Frank Let's get away from the php.ini for a moment. Being that you did everything from

RE: [PHP] Re: Header won't redirect

2003-09-19 Thread Jay Blanchard
[snip] Try replying to the group so that your contributions stay with the thread instead of being orphaned and lost. [/snip] I always do, did something weird happen? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Attention: List Administrator

2003-09-19 Thread David T-G
Dan, et al -- ...and then Dan Joseph said... % % the computer web server. Kinda hilarious if you ask me. Good excuse to % install Norton also. s/Norton/linux+qmail/ *grin* :-D -- David T-G * There is too much animal courage in (play) [EMAIL PROTECTED] * society and

Re: [PHP] Attention: List Administrator

2003-09-19 Thread Ryan A
Hey all, IMHO I think that sites selling you virus software (resellers for norton?) are sending most of those crappy messages saying that they recieved a mail from you that contained a virus and $insertVirusName has caught it. chances are if you are scared enought or dont know enough you

[PHP] Opening new browser window

2003-09-19 Thread Rich Fox
I would like to open a new browser window from within my php script (edit.php), a window in which another php page is run (search.php). search.php should be able to receive $_POST vars etc. from edit.php. I am not sure that the javascript solution to popup a window is correct, because then the

RE: [PHP] Attention: List Administrator

2003-09-19 Thread Javier Tacon
Yes, I have been flooded today too .. The virus is: Worm . Automat . AHB -Mensaje original- De: Chris Sherwood [mailto:[EMAIL PROTECTED] Enviado el: viernes, 19 de septiembre de 2003 17:15 Para: [EMAIL PROTECTED] Asunto: [PHP] Attention: List Administrator Importancia: Baja To Whom

Re: [PHP] Attention: List Administrator

2003-09-19 Thread R'twick Niceorgaw
David T-G said the following on 9/19/2003 12:25 PM Dan, et al -- ...and then Dan Joseph said... % % the computer web server. Kinda hilarious if you ask me. Good excuse to % install Norton also. s/Norton/linux+qmail/ *grin* :-D s/linux+qmail/linux+qmail+spamassassin+tmda+f-prot/ :) -- PHP

RE: [PHP] Attention: List Administrator

2003-09-19 Thread Dan Joseph
Hi, s/Norton/linux+qmail/ haha.. that be a good solution for sure! -Dan Joseph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Opening new browser window

2003-09-19 Thread Marek Kilimajer
form target=searchwindow Rich Fox wrote: I would like to open a new browser window from within my php script (edit.php), a window in which another php page is run (search.php). search.php should be able to receive $_POST vars etc. from edit.php. I am not sure that the javascript solution to

Re: [PHP] Re: Header won't redirect

2003-09-19 Thread Jonathan Duncan
Perhaps it is just Outlook Express but many of your replies are showing as ophans. Jonathan Jay Blanchard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] [snip] Try replying to the group so that your contributions stay with the thread instead of being orphaned and lost. [/snip] I

Re: [PHP] Attention: List Administrator

2003-09-19 Thread Don Mc Nair
I got 21 emails with attachments today from Microsoft. Don Payne [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Raquel Rice wrote: On Fri, 19 Sep 2003 15:39:12 + Curt Zirzow [EMAIL PROTECTED] wrote: * Thus wrote Chris Sherwood ([EMAIL PROTECTED]): To Whom it may

[PHP] Media Presentations

2003-09-19 Thread Vail, Warren
I wanted to create web based slideshow and audio media presentations and was disappointed by two PHP function sets. I would love to hear of any others that might be available. Tried MING, and discovered that there were at least 3 different versions (all numbered version 0.2a) that were

Re: [PHP] Web server file perms || More than I can chew.....

2003-09-19 Thread Lowell Allen
On my local machine (win2k pro, apache), no problems -- everything works just as designed. Today I began testing on the live server; i.e. my client's hosting company (linux, apache 1.3.27, php 4.3.1) -- that's when the trouble started. The site builder app builds static pages based on

Re: [PHP] Re: Header won't redirect

2003-09-19 Thread Scott Fletcher
Well, I'm using Outlook Express and it looked fine for an hour or so now. But not with the ones earlier in the morning. Strange though! Scott F. Jonathan Duncan [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Perhaps it is just Outlook Express but many of your replies are showing as

Re: [PHP] Web server file perms || More than I can chew.....

2003-09-19 Thread Marek Kilimajer
You can use ftp functions to create the files, so permissions won't be problem anymore. CF High wrote: Hey all. Got a problem with a site builder app I've spent three months developing. On my local machine (win2k pro, apache), no problems -- everything works just as designed. Today I began

Re: [PHP] Re: Header won't redirect

2003-09-19 Thread Scott Fletcher
But Jay Blanchard situation wasn't the only one. It's the same for other people. Scott Fletcher [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Well, I'm using Outlook Express and it looked fine for an hour or so now. But not with the ones earlier in the morning. Strange though!

Re: [PHP] config file

2003-09-19 Thread CPT John W. Holmes
From: Payne [EMAIL PROTECTED] I have a project that I need to write and in the past I would hard code a lot of information in pages that I should have put into a config file. I am wanting to know if there a website that example how to write a config file and how to the php call them. You can

RE: [PHP] Attention: List Administrator

2003-09-19 Thread Jennifer Goodie
And I get this: [snip] Violation Information: The subject violated the content filtering rule PHP as subject is a malacious code - Not Allowed. No attempt was made to repair. [/snip] How can PHP be a code so powerfull it is not even allowed in the subject? I thought PHP was a drug.

Re: [PHP] Opening new browser window

2003-09-19 Thread Rich Fox
And if you are not in a form? My current code is: a href=search.php onClick=return popup(this, 'Industry','?ID=$companyIDType=Industry') img src=images/Plus.gif /a where popup is my javascript function. But as I said below, the popup doesn't work as expected and I do not want to use

[PHP] Session and Server variable problem

2003-09-19 Thread Stephen Schneider
Hi all, Have an interesting problem. Worked on a web site for a client. They have the server (IIS) set up and we are using php. Have been working with their domain with a .net extension. To go live, they repointed their .com domain to the web folder. Same spot the .net points to. But now

Re: [PHP] Opening new browser window

2003-09-19 Thread R'twick Niceorgaw
Rich Fox said the following on 9/19/2003 12:33 PM I would like to open a new browser window from within my php script (edit.php), a window in which another php page is run (search.php). search.php should be able to receive $_POST vars etc. from edit.php. I am not sure that the javascript solution

Re: [PHP] Opening new browser window

2003-09-19 Thread Brent Baisley
Why use a javascript to create a new window? Any link can be directed to a new window with a simple target=. a href=search.php?ID=$companyIDType=Industry target=Industry Industry would be the reference name of the window. For instance, if you wanted to refer to it from another window. PHP is

Re: [PHP] Session and Server variable problem

2003-09-19 Thread CPT John W. Holmes
From: Stephen Schneider [EMAIL PROTECTED] Have an interesting problem. Worked on a web site for a client. They have the server (IIS) set up and we are using php. Have been working with their domain with a .net extension. To go live, they repointed their .com domain to the web folder.

Re: [PHP] Web server file perms || More than I can chew.....

2003-09-19 Thread CF High
Thanks for the informative post, Lowell Marek. Our host suggested chmod-ing necessary directories via ftp. Completely defeats the purpose of my app which is supposed to allow the client to maintain the site themselves; not have me mess around with directory/file perms -- ugggh In any

[PHP] um...

2003-09-19 Thread Comex
[EMAIL PROTECTED] [EMAIL PROTECTED]: Please contact your system administrator. The scanned document was deleted. Violation Information: The subject violated the content filtering rule PHP as subject is a malacious code - Not Allowed. No attempt was made to repair. umm... since it doesn't

[PHP] Re: um...

2003-09-19 Thread Comex
[EMAIL PROTECTED] Comex: [EMAIL PROTECTED] [EMAIL PROTECTED]: Please contact your system administrator. The scanned document was deleted. Violation Information: The subject violated the content filtering rule PHP as subject is a malacious code - Not Allowed. No attempt was made to

[PHP] Re: um...

2003-09-19 Thread Comex
Guess what, I got another one. From posting this. Never mind, I see another thread. sorry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] um...

2003-09-19 Thread R'twick Niceorgaw
Comex said the following on 9/19/2003 3:33 PM [EMAIL PROTECTED] [EMAIL PROTECTED]: Please contact your system administrator. The scanned document was deleted. Violation Information: The subject violated the content filtering rule PHP as subject is a malacious code - Not Allowed. No attempt was

  1   2   >