RE: [PHP] anonymous from address using mail()

2004-10-07 Thread Ed Lazor
$mail_from = "From: Sagar"; > -Original Message- > Hi all, > > I'm using mail("[EMAIL PROTECTED]",$subject,$message,$mail_from); > > But i get an email with a from address as anonymous@ > > I want to show the from address to be like "From : Sagar" > plzz help me out > > /sagar -- PHP

RE: [PHP] session_save_path

2004-10-07 Thread Ed Lazor
Can you do an .htaccess solution? If so, you could probably just set session save path with PHP_VALUE in the .htaccess file > -Original Message- > From: Al [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 07, 2004 8:25 AM > To: [EMAIL PROTECTED] > Subject: [PHP] session_save_path > >

RE: [PHP] mcrypt install question

2004-10-07 Thread Ed Lazor
Did you install it and PHP automatically recognized things or did you have to enable something in php.ini and restart? I checked the php.ini file on the server and there's nothing mycrypt or crypt. > -Original Message- > On Thu, 7 Oct 2004 08:37:19 -0700, Ed Lazor <[E

RE: [PHP] CPU usage @5% during 2 minutes

2004-10-19 Thread Ed Lazor
> The most strange thing is, that the problem appeared at a > time, when no > changes to the program was made. > > ANYBODY RAN INTO SOME SIMILAR THING? I haven't run into this, but it'll be easier to help troubleshoot this if you could post sample code.

RE: [PHP] 'Intelligently' truncate string?

2004-10-19 Thread Ed Lazor
or after the entity, since when displayed it will only > equate to one > character more or less. Check out the user contributed notes in manual for substr. There's an example there of how to keep words intact and it sounds like it might apply to your situation. Ed Lazor, President http:

RE: [PHP] CPU usage @5% during 2 minutes

2004-10-19 Thread Ed Lazor
art of the whole. Have you tried to increase the amount of memory available to this script? -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Chrome 1.0 released

2008-12-24 Thread Ed Curtis
Bill Guion wrote: At 9:30 AM -0500 12/14/08, tedd wrote: At 3:08 PM -0800 12/13/08, Yeti wrote: I have to defend poor little IE a little now. It supports XHTML and CSS2 pretty well so far. And those standards came out a couple of months ago. Even a blind pig finds an acorn every once in a wh

[PHP] Which file "Included" me?

2009-02-18 Thread Ed Curtis
m a certain URL. thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: New Horizon! scam

2009-03-02 Thread Ed Curtis
Alan Bell wrote: that would appear to be a scam of some sort, not sent by Alan Lord at all, he can spell electronic and generally speaks English. Alan. Alan Lord wrote: New Horizon! i would like to introduce a good company who trades mainly in electornic products. Now the company is under sa

Re: [PHP] CSS & tables

2009-05-15 Thread Ed Curtis
PJ wrote: I know of no better place to ask. This may not be strictly a PHP issue, but... I am busting my hump trying to format rather large input pages with CSS and trying to avoid tables; but it looks to me like I am wasting my time as positioning with CSS seems an impossibly tortuous exercise.

[PHP] "webpage has expired" remedies

2009-06-04 Thread Ed Bukhman
don't know much about these things and would appreciate any guidance. Best regards, --Ed Bukhman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] "webpage has expired" remedies

2009-06-04 Thread Ed Bukhman
way (that avoids the GET method)? --Ed Bukhman "Eric Butera" wrote in message news:6a8639eb0906041557n71e8b671ycafc72fd9c9ba...@mail.gmail.com... > On Thu, Jun 4, 2009 at 2:14 PM, Ed Bukhman wrote: >> Hello, >> >> Could someone suggest the steps needed t

[PHP] connect.c+php

2007-01-26 Thread ed gregory
Can anyone give me an example on using connect.c with php? Thank you. Ed -- http://www.freenet.am/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] How can I know if a browser is cookies enables?

2007-02-05 Thread Ed Grigoryan
tch what happens. > tedd > -- > --- > http://sperling.com http://ancientstones.com http://earthstones.com It can also be done with JavaScript. Found an example at: http://techpatterns.com/downloads/javascript_check_cookies.php Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How can I know if a browser is cookies enables?

2007-02-05 Thread Ed Grigoryan
Also try: http://www.aspfaqs.com/webtech/082400-1.shtml What would we do without search engines? :)) Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] counting hyperlink clicks in php

2007-02-17 Thread Ed Grigoryan
nk (by ID, for example), store the visits data to a database or a text file and then redirect to the corresponding news. So, such link might look like this: http://www.news.com/redirect.php?news_id=150";>read news Hope this helps. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] db query not working

2007-03-07 Thread Ed Curtis
uery ("INSERT INTO tmphitsmag (magazine) VALUES('$magazine_path[2]'"); } while($row = mysql_fetch_array($result)); } mysql_close(); It dumps the table fine, works the explode, outputs the string in the echo command the way I expect, but doesn't place the value in tm

[PHP] db query not working as expected

2007-03-07 Thread Ed Curtis
("INSERT INTO tmphitsmag (magazine) VALUES ('$magazine_path[2]')"); } while($row = mysql_fetch_array($result)); } mysql_close(); The code dumps the first table fine, selects, manipulates, and echoes the string the way I expect, but fails to input the string into th

[PHP] php and javascript error

2007-03-07 Thread Ed Curtis
I've just run into this problem this morning This produces an "Error on Page" in IE 7, but works perfectly in Firefox and Netscape. I have several other javascript calls on the page where this call resides and all of them work perfectly except for this one. Does this error occur becau

Re: [PHP] db query not working

2007-03-07 Thread Ed Curtis
nd that's where the mistake was made, not in the code itself. And I do, by the way, end all my queries with or die(). I just left it out of the edit. Besides, the problem is fixed now. Thanks to all that helped. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php and javascript error

2007-03-07 Thread Ed Curtis
Németh Zoltán wrote: 2007. 03. 7, szerda keltezéssel 10.59-kor Ed Curtis ezt írta: I've just run into this problem this morning This produces an "Error on Page" in IE 7, but works perfectly in Firefox and Netscape. I have several other javascript calls on the page

Re: [PHP] php and javascript error

2007-03-07 Thread Ed Curtis
This produces an "Error on Page" in IE 7, but works perfectly in Firefox and Netscape. I have several other javascript calls on the page where this call resides and all of them work perfectly except for this one. Does this error occur because I'm sending the variables to another script that d

Re: [PHP] php and javascript error

2007-03-07 Thread Ed Curtis
servers which are not under your control My scripts aren't meant for distribution also they will only ever be delpoyed on a server that I control. Thanks for the tip though and thanks to everyone that helped. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] db query not working

2007-03-07 Thread Ed Curtis
It is an old guy thing, at least in my case (trivia: I was born the day after the ENIAC was turned off) Aha! October 3, 1955 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] fireing function with onChange

2005-02-10 Thread Ed Curtis
"Sure is, Jim. PHP has been out of the game now for awhile!" > > Copyright Richard Lynch and the NFL. > Unauthorized re-broadcast is a violation of Federal Law. Your comments are quite funny but wouldn't it have been alot easier to say that you can't call a PHP function within a generated HTML element? You can however use the onChange event to call another PHP script that will perform the function. Not nearly as many keystrokes :) Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] fireing function with onChange

2005-02-10 Thread Ed Curtis
On Thu, 10 Feb 2005, Richard Lynch wrote: > Ed Curtis wrote: > > On Thu, 10 Feb 2005, Richard Lynch wrote: > >> > >> In honor of our recent Super Bowl, here is a slow-motion instant replay: > >> > >> Bob: "Well, it's a great day so far f

[PHP] Handling File uploads pre 4.2.0

2005-03-11 Thread Ed Curtis
I use file_exists($_FILES['userfile']['tmp_name'] to see if it exists before moving it to wherever I'm moving it too? Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] link generating script

2005-04-25 Thread Ed Dorsch
on "3" and is looking at gallery "page" three, then I don't want the number three to be a link -- and maybe it should be bolder or lighter or something. Any ideas? I was thinking of nesting an "if > then" inside the "for > next" but can't

[PHP] array from folder

2005-04-25 Thread Ed Dorsch
ouse","boat"). Any ideas for how to "sniff" out a folder to determine how many files are in it and then create an array with the file names in it?   Thanks, Ed Ed DorschDevelopment CommunicationsUniversity of Oregon541.346-0605 "You can't wait for inspiration

[PHP] PHP Sessions Question

2004-07-08 Thread Ed Lazor
etimes within seconds and othertimes within minutes. Sometimes it won't even happen for 30 minutes and then it suddenly begins to occur again. Thanks in advance for any ideas or recommendations that I can forward to my hosting provider on how to fix the problem. -Ed

[PHP] PHP Hosting

2004-07-08 Thread Ed Lazor
Hey, does anyone have experience hosting PHP / MySQL apps on EV1servers.net, ServerBeach.net, or CIhost.com? I'm looking for value, reliability, and quality support. Any other recommendations are also greatly appreciated. -Ed

RE: [PHP] Re: PHP Sessions Question

2004-07-08 Thread Ed Lazor
30 minutes. So, for example, I can login, navigate through 11 different pages to generate the problem, navigate 2 pages to generate the problem, and then not see the problem again for another 5 minutes. Does that fall in line with what you're thinking? -Ed > -Original Message

RE: [PHP] Any suggestion for my php project?

2004-07-09 Thread Ed Lazor
Track activity using a web log analyzer rather than trying to integrate something with the site. Try webtrends.com for an example. > hi, all: > We have a bioinformatic website that focus on experiment submission and > data analysis. The old site was written in PHP. Now, we try to > re-organize

[PHP] search string / query format

2004-07-09 Thread Ed Lazor
27;s indexing can support some of this, but I'm not sure how much. Thanks in advance for any pointers or info you might have on this. -Ed

RE: [PHP] search string / query format

2004-07-09 Thread Ed Lazor
> > Using a FULLTEXT index and searching in BOOLEAN mode supports the type > of search strings that you wrote. > > Consult thine manual!! (The MySQL one) ;) *grin* Thanks John, I knew someone would know where I'd seen it hehe -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] CMS solution + web sites in CVS.

2004-07-11 Thread Ed Lazor
Interakt.ro -Ed > -Original Message- > I am currently restructuring the web site/web application development > life cycle of my company. The new model requires the use of CVS (2 > branches) for each web site project. The issue I am facing is the > maintenance/developme

[PHP] Echoing a value

2004-07-12 Thread Ed Curtis
'cnt'] echoes it's expected values. If anyone can tell me what I'm doing wrong I'd appreciate it. Thanks, Ed $ap = fopen("$ad_path/AdCount$issue.txt", "w"); mysql_connect ($local_host, $local_user, $local_pass); mysql_select_db ($local_db); $re

[PHP] RE: SOLVED! [PHP] Echoing a value

2004-07-12 Thread Ed Curtis
trick. > > Cheers, > Pablo > That did the trick! I knew it was something simple I was overlooking. Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php reserved characters...

2004-07-12 Thread Ed Lazor
> can someone > > point me to a list of the actual php reserved > > chars/words couldn't seem to track them down > > on the php site/google... http://www.php.net/manual/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Opinion: PHP Sessions or Cookies

2004-07-13 Thread Ed Lazor
28). Anyway, those are the details. I look forward to hearing what you think. -Ed

RE: [PHP] Opinion: PHP Sessions or Cookies

2004-07-13 Thread Ed Lazor
'm waiting for feedback from users to see if they're still getting login prompts. Thanks Marek =) -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] FW: NO SUCH ADDRESS

2004-07-13 Thread Ed Lazor
Am I the only one getting these every time I post to the list? > -Original Message- > From: GUNSMOKE MAIL DAEMON [mailto:[EMAIL PROTECTED] > Sent: Tuesday, July 13, 2004 3:13 PM > To: Ed Lazor > Subject: NO SUCH ADDRESS > > This is an automated message fro

RE: [PHP] encryption needed?

2004-07-13 Thread Ed Lazor
can see, you end up having to deal with spaces and other special characters in the name... Basically, I'd just use the ID and not worry about encrypting it, unless you have a good reason to do so. -Ed > -Original Message- > Is it ok to use the company-id or do I have to

RE: [PHP] FW: NO SUCH ADDRESS

2004-07-13 Thread Ed Lazor
> -Original Message- > Everyone is getting it. But we cannot know wich address is giving back > this message, as it is not reported. Just we know the domain it comes > from. The guy lists [EMAIL PROTECTED] as his email address on the site. I bet that's the one bounci

RE: [PHP] A question not directly related to PHP

2004-07-13 Thread Ed Lazor
How are you resolving hostnames? Are relevant IPs/Hostnames in your hosts file? Does the local machine have mynotebook mapped to 127.0.0.1? > -Original Message- > A curious thing has been happening. When I run the PHP script on my > machine using localhost, the script executes perfectl

RE: [PHP] Re: Opinion: PHP Sessions or Cookies

2004-07-14 Thread Ed Lazor
tive sessions just do a simple "select count(*) from sessions". I'm not storing sessions into the database right now, but I have before and I'll probably do it again =) -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Dynamic to Static

2004-07-14 Thread Ed Lazor
Is anyone taking a dynamic PHP / MySQL site and storing or cacheing it statically in order for pages to display more quickly when visitors access the site? If so, what solutions are you using to achieve this? Thanks, Ed

RE: [PHP] upload an image and store it in mysql

2004-07-14 Thread Ed Lazor
You're seeing raw data and need to specify the mime type with headers. Search the mailing list archive, there's a few example scripts in there. Just keep in mine that you need to create a separate script that handles the display of images. > Thanks, that seems to work. Although trying to ret

RE: [PHP] RE: php vs. cgi app

2004-07-15 Thread Ed Lazor
a cgi. There are some benefits to having the cgi available though. For example, if you're at a unix prompt and need to process a file. Or, more commonly, if you want to execute scripts in cronjobs. -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] track click throughs

2004-07-15 Thread Ed Lazor
Check the script that records the click. It shouldn't have any output, spaces, or extra lines before or after > -Original Message- > From: cab [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 15, 2004 9:39 PM > To: [EMAIL PROTECTED] > Subject: [PHP] track click throughs > > Hi, > > n

RE: [PHP] Using SSL and PHP

2004-07-16 Thread Ed Lazor
You add an S to http ;) Beyond that, some servers allow one webspace for your files and encryption is based on whether you specify the S or not. Some servers have separate directories for http and https files. > -Original Message- > Hi everyone. > > We've recently decided to move all o

[PHP] quotes in text.

2004-07-16 Thread Ed Curtis
base (Trying out the) What exactly do I need to do to the text so that any quotation marks (single or double) get input into the database. TIA, Ed Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] quotes in text.

2004-07-16 Thread Ed Curtis
ied the above example nothing was entered into the database. This worked.. htmlentities($_POST['text']). Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] quotes in text.

2004-07-16 Thread Ed Curtis
I tried it both ways and it only works correctly when I do use htmlentities($_POST['text']) in my insert query. I'm not showing the text to the user on page 3 at all. Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] quotes in text.

2004-07-16 Thread Ed Curtis
On Fri, 16 Jul 2004, John W. Holmes wrote: > Ed Curtis wrote: > > On Fri, 16 Jul 2004, Justin Patrin wrote: > >>This is why he said: "Since you seem to have magic_quotes_gpc enabled, > >>you can put the value directly into your query." > >> >

[PHP] RedHat Network Up2Date

2004-07-17 Thread Ed Lazor
7;s behind and that their security is compromised. It's silly, but they seem to just sit there blaming RedHat rather than doing anything to protect their customers. -Ed

RE: [PHP] php.net like doc pages

2004-07-17 Thread Ed Lazor
phpNuke is also popular. > -Original Message- > You could always use a wiki. ;-) I've found tikiwiki to be very well > suited to such things. > > On Sat, 17 Jul 2004 17:44:29 -0500, [php]Walter <[EMAIL PROTECTED]> > wrote: > > Anyone know a blog (I think) that will let me create documenta

RE: AW: [PHP] Sending the output of a web page to a printer

2004-07-21 Thread Ed Lazor
You can also use wget to grab the web page and then pipe it to lpr > -Original Message- > > OK, but here's the rub: > > > > I need to print a web page. Any ideas? > > > > you should be able to use > > exec('lpr page.html'); -- PHP General Mailing List (http://www.php.net/) To unsubscr

RE: AW: [PHP] Sending the output of a web page to a printer

2004-07-21 Thread Ed Lazor
Can you already send jobs to the printer from SSH? > -Original Message- > From: Vern [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 21, 2004 3:27 PM > To: [EMAIL PROTECTED] > Subject: Re: AW: [PHP] Sending the output of a web page to a printer > > OK, welll this may be off topic then,

[PHP] Quickbooks

2004-07-21 Thread Ed Lazor
Anyone have info on integrating Quickbooks / PHP / MySQL? -Ed

RE: AW: [PHP] Sending the output of a web page to a printer

2004-07-21 Thread Ed Lazor
The example depends on how you're printing from SSH. You'll need to check whether wget is available on the system as well. "man wget" to see it's various parameters. wget http://www.yahoo.com | lpr but like I say... it depends on a few things on your end... > -Original Message- > Th

RE: [PHP] using exec/system function within php/apache app

2004-07-21 Thread Ed Lazor
Use the PHP passthru function. The manual has examples of how you can get the output from your commands in order to test things. > -Original Message- > hi... > > i'm trying to track down issues that i seem to be having with using > exec/system shell functions within web/php apps on apa

[PHP] Upgrade

2007-09-21 Thread Ed Curtis
I've tried it on a test server and have run into a couple of problems with the upgrade. Thanks, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Upgrade

2007-09-21 Thread Ed Curtis
The above is only an example. So upgrading to 5 is not an option for us. -- Ben Web Design Shropshire, Software programing http://www.sparkcomputing.co.uk Thanks, I did find a way to do what I needed to do and not have to upgrade. There are more system calls but it won't be used often

[PHP] Memory usage very high under AMD64?

2008-04-02 Thread Ed W
processes are consuming around 215MB virt and 20MB RSS Can anyone please help debug why the virtual consumption is so high? Actually the RSS numbers look fine - it's the vsz numbers that I am trying to understand why so high? Thanks Ed W -- PHP General Mailing List (http://www.php.net/) To unsubs

Re: [PHP] Memory usage very high under AMD64?

2008-04-02 Thread Ed W
45MB x2 is a lot less than 215MB... Also, I would expect the actual consumption to be less than 2x since not all the data will be doubled in size..? Any other suggestions on how to debug this 5x jump in memory usage? Thanks Ed W Robert Cummings wrote: 64 bit integers are twice as big as

Re: [PHP] Memory usage very high under AMD64?

2008-04-03 Thread Ed W
Aschwin Wesselius wrote: Ed W wrote: RSS is staying approximately constant, ie the memory in use has not changed much VSZ, ie virtual memory has increased by more than 2x2=4. If someone has some hard experience of both platforms then please add some experience to this - however, I&#

Re: [PHP] Memory usage very high under AMD64?

2008-04-03 Thread Ed W
Aschwin Wesselius wrote: Ed W wrote: 45MB x2 is a lot less than 215MB... Also, I would expect the actual consumption to be less than 2x since not all the data will be doubled in size..? Any other suggestions on how to debug this 5x jump in memory usage? Thanks Ed W Robert Cummings wrote

[PHP] strlower problem

2008-06-02 Thread Ed Curtis
I'm converting upper case characters in a string to lower case and am coming up with an empty string. As I've done a million times before with other non-numerical strings. $thisStr = "CL22"; $strLow = strtolower($thisStr); echo $thisStr; Why does $strLow come up

Re: [PHP] strlower problem

2008-06-02 Thread Ed Curtis
Richard Heyes wrote: Ed Curtis wrote: I'm converting upper case characters in a string to lower case and am coming up with an empty string. As I've done a million times before with other non-numerical strings. $thisStr = "CL22"; $strLow = strtolower($thisStr); echo

Re: [PHP] strlower problem

2008-06-02 Thread Ed Curtis
Michael Kubler wrote: Does : /echo strtolower("CL22");/ work? You could also try : /var_dump($strLow); / Ed Curtis wrote: Richard Heyes wrote: Ed Curtis wrote: I'm converting upper case characters in a string to lower case and am coming up with an empty string. As I&#x

Re: [PHP] help needed to write an installation script for my php application

2007-04-23 Thread Ed Oceo
On Mon, April 23, 2007 5:36 am, [EMAIL PROTECTED] wrote: > > Hi There, > > Could you please help me to write an installation script to install a > php based application in Windows. > NSIS, nullsoft installer is a nice installer to use for Windows applications. http://nsis.sourceforge.net/Main_Pag

[PHP] Opening file

2007-04-26 Thread ed gregory
*** And what I need is: *** some content here *** After I get the original code I can exclude the "include" php tags and print only the main content. So, the question is: is there any way (except for FTP functions) to s

[PHP] using preg_match

2007-05-16 Thread Ed Curtis
I'm trying to use preg_match to find a string in a system path. What I need to do is see if the string '/realtors' exists in a variable named '$path'. I know '/' is used as a container within the command itself. How do I escape it to find the string '/

Re: [PHP] using preg_match

2007-05-16 Thread Ed Curtis
Christian Haensel wrote: Hi Ed, did you try the backslash as escape character? That's what did it. I was thinking the \ was the escape for the command but wanted to make sure. Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Silly varible question

2006-07-13 Thread Ed Curtis
; session_register('item'); In the session the item is known as 'item'. What I need for it to be is 'item1' so when the customer chooses another product I can increase $count by 1 and have the next array with values stored as 'item2'. Thanks for any help, Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Silly varible question

2006-07-13 Thread Ed Curtis
tegory'] = $_POST['category']; > $_SESSION['item'][$count]['copy'] = $_POST['copy']; > $_SESSION['item'][$count]['pic_style'] = $_POST['pic_style']; > $_SESSION['item'][$count]['cost'] = $cos

Re: [PHP] Is this really a pdf?

2006-08-07 Thread Ed Curtis
ust match it against a mime type your looking for. Ed Curtis -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 5 Hosting

2006-10-11 Thread Ed Lazor
is "Please leave a message... bep"... pretty scary if you ask me. Anyway, thanks in advance for any recommendations you have. -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP 5 Hosting

2006-10-12 Thread Ed Lazor
Thanks for the feedback Kyle, much appreciated. DreamHost does look pretty good price-wise. Two others I was referred to are HostBaby.com and OCSSolutions.com. Have a good one :) -Ed On Oct 11, 2006, at 10:12 PM, Kyle wrote: Hello, I would suggest dreamhost at www.dreamhost.com. Their

Re: [PHP] OOP slow -- am I an idiot?

2006-10-12 Thread Ed Lazor
On Oct 12, 2006, at 10:18 AM, Richard Lynch wrote: I can't architect a good OOP solution to a problem that hasn't been fully defined, any more than one can architect a house without knowing all the rooms that are needed... Sorry to jump into the middle of the conversation, but I thought this

Re: [PHP] OOP slow -- am I an idiot?

2006-10-12 Thread Ed Lazor
use, encapsulation, etc. You can get acceptable performance from OOP if you know what you are doing -- If you don't, it's super easy for a beginner to write a total performance hog following all the best practices in the world. Definitely agree with you there. -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] OOP slow -- am I an idiot?

2006-10-12 Thread Ed Lazor
ving to load a function into memory versus loading the class and then instantiating it, etc. before you can call anything... I'm really curious if any other developers have feedback or comments on this, especially the OOP methodologies. -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] canon jpegs

2006-10-12 Thread Ed Lazor
Until someone has more specific information, my first thought was to wonder which version of PHP and GD you're using in case they aren't the latest and greatest. If you're aren't, then I'd upgrade, retest, and go from there. I'd also check to see if you run into the problem with images fr

Re: [PHP] OOP slow -- am I an idiot?

2006-10-13 Thread Ed Lazor
e to do is edit these files to include business logic and any customisations. Is the Radicore framework still available? -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] OOP slow -- am I an idiot?

2006-10-13 Thread Ed Lazor
ce as the OOP library that Stut uses. -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Send process to background

2006-10-13 Thread Ed Lazor
On Oct 13, 2006, at 12:12 PM, Richard Lynch wrote: On Fri, October 13, 2006 11:05 am, André Medeiros wrote: I am working on a backup system that needs to be called through a webpage to start the process. I am trying to do this on a one-file-only sollution. The thing is, the first request to t

Re: [PHP] Windows ENV['_'] equivalent

2006-10-13 Thread Ed Lazor
right?... Guess not, hunh. Anybody got a solution? Not a solution, but an idea... the dos chdir comand. Maybe you can run it from within your script. It tells you the current working directory and you end up indirectly knowing the location of the php.exe that you're using. -Ed --

Re: [PHP] PHP Denial of service

2006-10-13 Thread Ed Lazor
direct the user to a page that says something like "server busy, try again in a moment". -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] A no brainer...

2006-10-14 Thread Ed Lazor
ecord ends up better because you avoid stale data. What do you think? -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Windows ENV['_'] equivalent

2006-10-14 Thread Ed Lazor
hacked solution, but maybe it will work? -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Denial of service

2006-10-14 Thread Ed Lazor
proxy with apache to do something similar. The limit IP stuff from Roman also looks interesting. -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Crossing over to the Darkside?

2006-10-14 Thread Ed Lazor
ne platform versus your value in being able to develop for one server platform versus your value in being able to develop for all of the server platforms that Apache/PHP work under. I've seen examples of .NET being implemented under UNIX; they didn't work all that well from w

Re: [PHP] A no brainer...

2006-10-14 Thread Ed Lazor
sion. That seems like basic enough information that it's better to just store the user id in session data and grab the rest of their information from the db - not much of a difference in performance, plus you end up avoiding stale data. Anyway, I like your distinction between simple an

Re: [PHP] Re: LAMP || Apache Cache PHP Source File...

2006-10-15 Thread Ed Lazor
I'd like to have Apache cache this file. Mod_File_Cache doesn't look like it will do the trick as this module only works with static content, and Mod_Cache seems to require a GET request, among other requirements, in order to perform file caching. Apache: reverse proxy -- PHP General Mail

Re: [PHP] Re: LAMP || Apache Cache PHP Source File...

2006-10-15 Thread Ed Lazor
H, does mod_proxy perform file caching? It appears to just redirect urls to and from a proxy server. Yes. http://httpd.apache.org/docs/1.3/mod/mod_proxy.html Note the difference between forward and reverse proxy. You can also use Squid http://www.squid-cache.org Note Transparent Cac

Re: [PHP] A no brainer...

2006-10-15 Thread Ed Lazor
uses files, but hopefully you don't hit them very often, especially when you're dealing with the same table records. Also, having raw data is always faster than having to process it before you can use it. Make sense? -Ed -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] A no brainer...

2006-10-16 Thread Ed Lazor
t even the boutique benefits, if you're running multiple sites on one server, which is common. I agree with the other stuff you said about serialization :) -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] A no brainer...

2006-10-16 Thread Ed Lazor
gless. I that case, I agree with you whole heartedly. Security and scalability are definitely important. Yeah, sure, in a shared hosting environment, a really bad script can be problematic -- I know, cuz I've gotten those emails from my webhost :-) So you're the one! ;) hehe -E

Re: [PHP] A no brainer...

2006-10-16 Thread Ed Lazor
un to do as well. Do you have a box we can test this on? Meanwhile, I'll check one of my boxes to see if I can use it. If anything, it'll be interesting to see if two systems report the same. -Ed -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3   4   5   6   7   >