Re: [PHP] Reg Ex

2008-10-31 Thread Eric Butera
On Fri, Oct 31, 2008 at 9:09 AM, Warren Windvogel <[EMAIL PROTECTED]> wrote: > Eric Butera wrote: >> >> Who says every file will have an extension? Who says they're all .+3 >> chars? When I first started php I tried that and it failed in a lot >> of places.

Re: [PHP] Reg Ex

2008-10-31 Thread Eric Butera
On Fri, Oct 31, 2008 at 10:03 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: > Eric Butera schreef: >> On Fri, Oct 31, 2008 at 9:09 AM, Warren Windvogel >> <[EMAIL PROTECTED]> wrote: >>> Eric Butera wrote: >>>> Who says every file will have an extensio

Re: [PHP] Re: Yahoo/Gmail/Hotmail Contacts API

2008-11-01 Thread Eric Butera
On Sat, Nov 1, 2008 at 8:02 PM, Nathan Rixham <[EMAIL PROTECTED]> wrote: > Feris wrote: >> >> Hi All, >> I noticed that social networking sites can retrieve our contacts using an >> authenticated session. Is there any open source PHP API to achieve the >> same >> thing ? >> >> Thanks, >> >> Feris >

Re: [PHP] Re: Yahoo/Gmail/Hotmail Contacts API

2008-11-02 Thread Eric Butera
On Sun, Nov 2, 2008 at 5:03 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: >> Open id's really a toy at this point. > > Now that MS and Google have signed up it will soon get a lot bigger. > > http://news.bbc.co.uk/1/hi/technology/7699320.stm > > -- > Richard Heyes > > HTML5 Graphing for FF, Chrome,

[PHP] What kind of handler used for a dba file?

2008-11-04 Thread Eric Wood
ble to insert, fetch, and delete entries. However I'm trying to find out exactly what kind of file this is since the documentation doesn't tell me what "default" handler it used when creating the file. thanks, -eric -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] building an admin tree with varying node types

2008-11-05 Thread Eric Butera
On Wed, Nov 5, 2008 at 1:47 AM, Rene Veerman <[EMAIL PROTECTED]> wrote: > Hi. > > I'm trying to build a new admin interface for my cms, in a single screen. > > I was thinking to have a tree-view on the left side of that screen, > something like > +Site-Name > + UserGroups and Users (node-type sect

Re: [PHP] building an admin tree with varying node types

2008-11-06 Thread Eric Butera
On Thu, Nov 6, 2008 at 5:08 AM, Rene Veerman <[EMAIL PROTECTED]> wrote: > Thodoris wrote: >> >> How are your groups linked with your users? Does every user has a GroupId >> in his record? >> >> Does this question has to do with building an html tree or it is about the >> best database schema that h

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Eric Butera
On Thu, Nov 6, 2008 at 5:57 PM, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > On Thu, Nov 6, 2008 at 3:54 PM, Daniel P. Brown > <[EMAIL PROTECTED]>wrote: > >> On Thu, Nov 6, 2008 at 5:51 PM, Kyle Terry <[EMAIL PROTECTED]> wrote: >> >> >> > Sorry, I was actually having a conversation about that with Dan

Re: [PHP] object persistence within a session

2008-11-07 Thread Eric Butera
On Fri, Nov 7, 2008 at 8:33 AM, Stan <[EMAIL PROTECTED]> wrote: > If this is the wrong forum, please point me at the correct forum. > > I am new to PHP but have 40 years experience programming. > > My initial effort includes a class definition which needs to persist for the > duration of a WWW ses

Re: [PHP] object persistence within a session

2008-11-10 Thread Eric Butera
On Mon, Nov 10, 2008 at 8:55 AM, <[EMAIL PROTECTED]> wrote: > >> I've found that I don't mind a few well organized database calls per >> page for the information I need. > > Opening up a database connection is very expensive. > > Sending one more simple / fast query is dirt cheap. > > Time it on y

Re: [PHP] Re: strtotime

2008-11-09 Thread Eric Butera
On Sun, Nov 9, 2008 at 3:50 PM, Ashley Sheridan <[EMAIL PROTECTED]> wrote: > On Sun, 2008-11-09 at 19:46 +0100, gilles wrote: >> "Thodoris" <[EMAIL PROTECTED]> a crit dans le message de news: >> [EMAIL PROTECTED] >> > O/H Bastien Koert ??: >> >> 2008/11/8 Maciek Sokolewicz <[EMAIL PROTECTED]> >

Re: [PHP] Managed VPS recommendations

2008-11-10 Thread Eric Butera
On Mon, Nov 10, 2008 at 11:55 AM, Richard Heyes <[EMAIL PROTECTED]> wrote: >>> So that's a couple of votes for individual people. What company do they >>> work for? :-) >>> We're not looking for "a guy", we're looking for a firm with a good >>> reputation. > > Then you should avoid 1and1 - they'

Re: [PHP] user access/roles/privs functionality

2008-11-15 Thread Eric Butera
On Sat, Nov 15, 2008 at 11:21 AM, bruce <[EMAIL PROTECTED]> wrote: > Hi list... > > I need a way of managing users/teams/etc.. implementing roles/access > rights/privs,etc... > > I'd like a way of being able to have users "report to" the resource above > them, ie, the ability to have a hierarchical

[PHP] Re: Performance of multidimensional arrays vs many variables

2004-01-28 Thread Eric Bolikowski
Hi John If you have a large number of Users using this system, your save map for sessions will grow in space, using some resources If it's very large pieces of information, i would advise you to store this info in a database. That's doomed to be more effective. Eric "John

[PHP] Re: PHP EDITORS

2004-01-28 Thread Eric Bolikowski
ducts/zend-studio-demos.php Eric "John Jensen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello everyone. I am new to PhP and MySQL. I was wondering what a good (Or > Free) Php Editor is? > > -- > > > *

[PHP] Re: Zend Studio ESC key issue?

2004-01-29 Thread Eric Bolikowski
Hei Trevor I have got exactly the same problem, and there doesn't seem to be any solution to it... What you could to, is to send a mail to Zend and ask them to implement a feature that will allow us Zend Studio users to customize this. Eric "Trevor Gryffyn" <[EMAIL PROTECTED]

[PHP] Re: Check to remove file that are older than 1 week

2004-02-05 Thread Eric Bolikowski
Hi Here's a little function I made up for this: $time_limit){ unlink($file); } } } closedir($df); } } delete_old_files('.'); ?> Hope that's what you need. Eric "Yc Nyon" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] &g

[PHP] Website Architecture

2004-02-05 Thread Eric Gorr
I've got a directory structure similar to this: SiteRootDir index.php dirA index.php dirB funcs.php otherfuncs.php In the SiteRootDir/index.php, I've got: require_once( dirB/funcs.php ); in funcs.php, I've got: require_once( otherfuncs.php ); which works because SiteRoot

[PHP] re: multilingual website

2004-02-05 Thread Eric Gorr
For some great information on how to internationalize a PHP application, I would suggest checking out: http://us3.php.net/manual/en/ref.gettext.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php-general list question - [Fwd: Delivery Report (failure) forphp-general@lists.php.net]

2004-02-06 Thread Eric Bolikowski
Exactly the same thing's happening to me! "Luke" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Me too, and im using the newsgroup, not even the mailing list!! :/ -- Luke "Craig" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I get one of these for almost every m

Re: [PHP] beginner question about while loops

2004-02-06 Thread Eric Gorr
At 11:41 AM -0800 2/6/04, Paul Furman wrote: while ($file = readdir($dh)){ if (strstr ($file, '.jpg')){ $pictures[] = $file; } Spotted this problem when staring at your code. Number of open braces: 2 Number of close braces: 1 You need to close off your while loop. Should I set

[PHP] Re: include_once() isnt!

2004-02-07 Thread Eric Bolikowski
in the scripts where you need classes, and your work will be a lot more structured. I personally use this system on my web-site, and it does that i don't have to be worried about if I am getting the correct classes, because I get them all through define_classes.inc.php Eric -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mysql functions

2004-02-10 Thread Eric Bolikowski
Would advise mysql_fetch_row() "Angelo Zanetti" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have a query which returns only 1 row, which of the following would be the > best to get the value from the resultset: > > mysql_result() > mysql_fetch_field() > mysql_fetch_row() > > th

[PHP] Re: Zero Sized Reply

2004-02-10 Thread Eric Bolikowski
Some source code would help "Deependra B. Tandukar" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Dear all, > > The script was working perfectly, but all of the sudden since last week > stopped working, gives Zero Sized Reply. The site is > http://coremag.net/corex/feedback/fee

[PHP] Re: Linked Table Structure

2004-02-10 Thread Eric Bolikowski
ountry_Id. Now let's say we're at the following file: foo.php?op=clubs&id=9 Now we can run the following query: "SELECT Club_Id, Club_Name, Club_Url FROM DG3 WHERE Country_Id = {$_GET['id']}". Here we get all the clubs in France. I hope this was something helpful.

[PHP] Re: reading remote page content

2004-02-10 Thread Eric Bolikowski
"Hamid Hossain" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I wants to read some pages throug http call. Then, I am going to parse the > returned string and do some process. > > For example: I want to get the latest news from CNN.com daily. So, I want to > call http://www.cnn.com

[PHP] Re: weird header() (bug may be)

2004-02-11 Thread Eric Bolikowski
Headers have to be pretty accurate, or it will cause trouble. And your redirect header is not quite correct. It should be this: header("Location: another_page.php"); and NOT header("Location:another_page.php"); What you need here is a space between "Location:" and the URL. "Adwinwijaya" <[EMAIL P

Re: [PHP] Make sure folder is writable

2004-02-24 Thread Eric Gorr
At 1:32 PM -0500 2/24/04, Matt Palermo wrote: Is there a way to check a folder on the server to make sure a specified folder has write permissions? I'm writing an upload script, but I need to make sure the user gave the destination directory write permissions before I can copy the files to the new

Re: [PHP] Regex help

2004-03-15 Thread Eric Gorr
At 6:06 PM +0100 3/15/04, Ryan A wrote: I know this is pretty easy to do but I am horrorable at working with regular expressions and was wondering if anybody might take a min to help please. I will have a variable: $the_extention which will have a value like:98797-234234--2c-something-2c How

[PHP] Session problems...

2004-03-19 Thread Eric Gorr
I thought I had a pretty good handle on sessions, but I can't figure out what could possibly be going wrong in this case. I've stripped my code down to basically the bear minimum which still reproduces the problem, which I included below. When I visit test1.php with the url: http://domain&path/

[PHP] Re: date()

2004-03-19 Thread Eric Gorr
Khalid Judeh wrote: hello all, i am new to php, i am trying to call the date function this way: and the result i get is: object18/03/04 any help would be appreciated hummm...very odd. I did the same thing and got: 19/03/04 Can you provide any more details? What version of PHP is being used? (

Re: [PHP] Session problems...

2004-03-19 Thread Eric Gorr
At 1:58 PM -0500 3/19/04, John W. Holmes wrote: From: "Eric Gorr" <[EMAIL PROTECTED]> When I visit test1.php with the url: http://domain&path/test1.php?name=bill&pwd=henry I see the output: user = 'bill' ID= 41699d4461e8fe3a71243bb3cb1c2298' You were

Re: [PHP] Session problems...

2004-03-19 Thread Eric Gorr
Ah HA! I knew I wasn't crazy...well, pretty sure... ;-) I figured out why my sessions were behaving so oddly. I was accessing test1.php via: http://ericgorr.net/... In test1.php, I was then redirecting to test2.php via http://www.ericgorr.net/... Apparently, with Mozilla and Safari, php s

[PHP] .ini of .conf file generate/parser solution?

2004-04-01 Thread Eric Wood
Anyone know of a php script that can dynamically build and maintain my own kind of conf file (like a smb.conf or httpd.conf) but I make up the content. Thanks, -Eric Wood -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] File upload progress

2004-04-06 Thread Eric Wood
in is changed as the relative dir and image links will break. But my customers really love the progress bar. -eric wood -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Need function to process tab delimited file using associative array

2004-10-24 Thread Eric Wood
the title row, and rows 2 onward are the data. So that I can: read row 1 into array print 'FName','LName' for each row print_r('FName')."\t".print_r('Phone').'\n'; next row This would allow me to ignore all the other colums I don&

Re: [PHP] Need function to process tab delimited file using associative array

2004-10-25 Thread Eric Wood
o be > looped through often. > Justin French Justin, Your fgetcsv() function was what I was needing. I found this in it notes: Quick and dirty script to take a csv file and turn it into a multidimensional associative array structure using the first line of the csv as the hash key names. Th

[PHP] Problem - Running PHP with different groups (Safe hosting enviroment)

2004-11-01 Thread Eric Bolikowski
n other folders? We know a little about UNIX, but not that much. That's our problem. Would be really happy if anyone could help us out! Eric Bolikowski -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: GUI editor for php?

2004-11-01 Thread Eric Bolikowski
"Andy B" <[EMAIL PROTECTED]> skrev i melding news:[EMAIL PROTECTED] > Hi. > > Is there any GUI editors out there for php? if so does anybody know of a > good one that doesnt cost a ton of money?? There's a trial for Zend Studio at www.zend.com Eric -

[PHP] Pear libraries

2004-12-08 Thread eric LUDINART
hi, I search a package with all available libraries PEAR in on pack ... for manual update ... thanks. eric -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Parsing php in html with IIS

2004-12-15 Thread Eric Lindsey
Gents, How do I configure my IIS server to parse a specific .html file for php code? I know how to do this on apache, but windows scares me :-) THANKS! Eric Lindsey Colorado Information Technologies Inc. http://www.coinfotech.com <http://www.coinfotech.com/>

[PHP] Isolated Execution Environment in PHP? (a la Safe module in Perl)

2005-01-26 Thread Eric Dorland
sable some more functions, etc). Something similar to Perl's Safe module (http://www.cs.usask.ca/resources/documentation/perl/Safe.pm.html). Is this at all possible in PHP? Can you turn on more safe mode restrictions on certain bits of code? Thanks in advance. -- Eric Dorland [EMAIL PROTECT

Re: [PHP] Isolated Execution Environment in PHP? (a la Safe module in Perl)

2005-01-26 Thread Eric Dorland
On Wed, 2005-01-26 at 12:41 -0800, Richard Lynch wrote: > Eric Dorland wrote: > > We've created our own CMS in PHP and we'd like to allow our users to do > > more sophisticated things, like embed there own PHP code in pages. We > > already run in safe-mode with our

[PHP] String to Stream

2005-08-05 Thread Eric Gorr
interested in possible alternative solutions, I would like to know how to accomplish this task even if it does not end up being the solution I use. -- == Eric Gorr === http://www.ericgorr.net === "Those who would sacrifice a little freedom for temporal safety

Re: [PHP] String to Stream

2005-08-05 Thread Eric Gorr
tring, etc...basically things that streams tend to handle well. There are probably better functions for dealing with a string than the ones you have mentioned (fseek is a file pointer). 'like fscanf, fseek' -- == Eric Gorr === http://www.ericgorr.net

Re: [PHP] String to Stream

2005-08-05 Thread Eric Gorr
, open the file with fopen and then use fscanf, fseek, etc. to process the text. However, I am assuming there is an easier way (i.e. a method without the file io overhead) to be able to treat the string as a stream. -- == Eric Gorr === http://www.ericgorr.net ===

Re: [PHP] String to Stream

2005-08-05 Thread Eric Gorr
Jay Blanchard wrote: What, exactly, do you want to accomplish? I want to be able to treat a string as a stream. For example, the C++ STL contains istringstream, which allows one to treat strings as streams. (http://www.cplusplus.com/ref/iostream/istringstream/) If you are truly wondering w

Re: [PHP] String to Stream

2005-08-05 Thread Eric Gorr
Jay Blanchard wrote: However, if I know what you want to do with the string more specifically (I asked for examples, which you have not given) I can get you to the right PHP functions. I am familiar with all of the PHP string functions. PHP does not have a class or function similar to isstri

Re: [PHP] String to Stream

2005-08-05 Thread Eric Gorr
with isstringstream. Looks like it wouldn't be terribly difficult to get something like this up and running. I was just taking a look at: http://us3.php.net/manual/en/function.stream-wrapper-register.php I'm kinda surprised no one has written a wrapper for strings yet...

Re: [PHP] String to Stream

2005-08-05 Thread Eric Gorr
And there are good reasons why other very intelligent people thought that including such functionality directly in the C++ STL and many other libraries was a good idea too. -- == Eric Gorr === http://www.ericgorr.net === "I believe each individual is naturally ent

Re: [PHP] String to Stream

2005-08-05 Thread Eric Gorr
Jochem Maas wrote: Eric Gorr wrote: Jochem Maas wrote: > http://php.net/manual/en/function.stream-wrapper-register.php is as close as it gets I think. - total overkill for manipulating strings IMHO - (me thinks there is atleast one other in agreement) - there is a reason php has all th

[PHP] Generating a 404 status message with header()

2005-08-08 Thread Eric Gorr
ut this did not work either. -- == Eric Gorr === http://www.ericgorr.net === "I believe each individual is naturally entitled to do as he pleases with himself and the fruits of his labor, so far as it in no way interferes with any other man's rights."

Re: [PHP] Generating a 404 status message with header()

2005-08-09 Thread Eric Gorr
Paul Waring wrote: On Mon, Aug 08, 2005 at 04:37:12PM -0400, Eric Gorr wrote: Should it? Is it possible to write a doesexists.php script which would cause the 404 directive to be triggered? I also tried: header("Status: 404 Not Found"); but this did not work either. Try sea

Re: [PHP] Nested IFs Problem

2005-08-31 Thread Eric Gorr
The code is doing exactly what you told it to do. To make it do what you what you seem to want it to do, get rid of the nested IFs and place all three tests within a single IF. -- == Eric Gorr === http://www.ericgorr.net === "Government is not reason, it is not e

Re: [PHP] Ugh, w32 anything is making me want to drink!

2005-10-22 Thread Eric Butera
On 10/22/05, Jochem Maas <[EMAIL PROTECTED]> wrote: > > John Nichel wrote: > > Jay Blanchard wrote: > > > >> [snip] > >> > >>> I just noticed that extension_dir in phpinfo is c:\php4 THAT AIN'T > >>> RIGHT! > >>> Why is PHP not loading the proper ini file? This is probably the > >>> source of > >>>

[PHP] mail return-path problem

2005-11-08 Thread Eric Butera
I was just curious if there was a way to set the return path of an email dynamically. I've looked around and all I could find was a Zend tutorial running sendmail from the command line, which I don't want to do. :) I tried setting "Return-Path:" in the mail() headers, but that didn't seem to make

Re: [PHP] mail return-path problem

2005-11-11 Thread Eric Butera
On 11/8/05, Richard Heyes <[EMAIL PROTECTED]> wrote: > > Eric Butera wrote: > > I was just curious if there was a way to set the return path of an email > > dynamically. I've looked around and all I could find was a Zend tutorial > > running sendmail from the com

[PHP] PHP server problem

2005-12-01 Thread Eric Lommatsch
ere PHP is back running on this server? Thank you Eric H. Lommatsch Programmer MICRONix, Inc. 2087 South Grant Street Denver, CO 80210 Tel 303-777-8939 Fax 303-778-0378 [EMAIL PROTECTED]

FW: [PHP] PHP server problem

2005-12-01 Thread Eric Lommatsch
looking at the httpd.conf is that these statement have an statement around them. But that is the version of PHP that is installed on this system. Thank you Eric H. Lommatsch Programmer MICRONix, Inc. 2087 South Grant Street Denver, CO 80210 Tel 303-777-8939 Fax 303-778-0378 [EMAIL PROTECTED

RE: FW: [PHP] PHP server problem

2005-12-01 Thread Eric Lommatsch
ex scripts appear not to work. Thank you Eric H. Lommatsch Programmer MICRONix, Inc. 2087 South Grant Street Denver, CO 80210 Tel 303-777-8939 Fax 303-778-0378 [EMAIL PROTECTED] -Original Message- From: James Benson [mailto:[EMAIL PROTECTED] Sent: Thursday, December 01, 2005 3:45

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Eric Gorr
Quoting Torgny Bjers <[EMAIL PROTECTED]>: I recommend Zend Studio if you can afford it since it has a GUI for both Windows and Linux And for those interested in using a real computer, it's GUI also runs under MacOSX. http://zend.com/store/products/zend-studio/requirements.php -- PHP General

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Eric Gorr
On 6 Dec 2005, at 19:24, Jay Blanchard wrote: [snip] And for those interested in using a real computer, it's GUI also runs under MacOSX. [/snip] If they are "real" why aren't there more of them? Far to many people have fallen victim to the deception field emanating from Microsoft. The only kn

Re: [PHP] What software do you use for writing PHP?

2005-12-06 Thread Eric Gorr
Jason Petersen wrote: Vim is my editor of preference. If I have to use Windows, I usually go with Homesite (because I already have a licensed copy) or Textpad (because it's better than Notepad). IDEs? Who needs 'em ;) Who? Anyone who understands just how useful a debugger can be in incre

Re: [PHP] Non-trivial task of converting text to HTML

2005-12-07 Thread Eric Gorr
Quoting Roman Ivanov <[EMAIL PROTECTED]>: Output text should be correctly formatted without using lots of br's and  's. Doing so manually is not a problem, I would just use for web paragraphs, and for book paragraphs. However, formatting such text with a scrip is very difficult. Does anyone

[PHP] PEAR Validate email question

2005-12-08 Thread Eric Butera
Hello, I'm using the PEAR Validate::email method to validate email addresses on our contact forms since the spam bots have gotten so bad. I am using the "check_domain" flag which calls the php function "checkdnsrr." This form processor is used on several sites now and all is going well except on

Re: [PHP] Non-trivial task of converting text to HTML

2005-12-08 Thread Eric Gorr
Quoting Roman Ivanov <[EMAIL PROTECTED]>: Eric Gorr wrote: Quoting Roman Ivanov <[EMAIL PROTECTED]>: Output text should be correctly formatted without using lots of br's and  's. Doing so manually is not a problem, I would just use for web paragraphs, and for boo

Re: [PHP] Questions from a ColdFusion Developer

2005-12-12 Thread Eric Butera
On 12/11/05, Christopher Jordan <[EMAIL PROTECTED]> wrote: > > Hi folks, > > I'm a ColdFusion developer, but I'm branching out into PHP because alot > of my smaller clients don't want to pay for CF. > > Anyway, a bit of background: > > I've got a page that does a search on one of my tables.

[PHP] PHP 4.4.1 "array_set_current" bug?

2005-12-16 Thread Eric Butera
Hello all, I have an image gallery script I created and I seem to be having some difficulties with it. I am using this script on many different platforms and different PHP versions. I have tried it on 4.4.0 (linux) and 4.3.11(entrophy osx). The problem is with PHP version 4.4.1 from what I can

Re: [PHP] PHP/MySQL noob rides again.. into trouble

2005-12-19 Thread Eric Butera
> > Could you direct me towards any good resources on general security with > php/mysql? > http://phpsec.org/library/ Make sure to read these: - data filtering - sql injection . . .and all the others in time. =)

Re: [PHP] Regex help

2006-01-13 Thread Eric Martel
echo "Panel: ".$match[0]; > } > > The $match array is empty. > > Actually looking at the data there are so many typos (imported from > Excel) that I will probably have to update by hand, but out of > curiosity now what would be a good regex for the info given? >

Re: [PHP] Re: SESSION and include

2006-02-08 Thread Eric Butera
On 2/8/06, Fredrik Tillman <[EMAIL PROTECTED]> wrote: > Ok here are some code: > /* Check User Script */ > session_start(); // Start Session > > include 'db.php'; > // Convert to simple variables > $username = $_POST['username']; > $password = $_POST['password']; > > if((!$username) || (!$passwo

[PHP] Weirdness with PHP FreeBSD/OSX/Linux headers already sent

2006-02-10 Thread Eric Butera
PHP List, Perhaps one of you might know the answer to this, because I certainly do not, nor do any of my coworkers. The "problem" is that scripts on our OSX 10.4 (our local development machines) and RedHat/Debian linux servers do not throw the "headers already sent" message. I could have an enti

Re: [PHP] Weirdness with PHP FreeBSD/OSX/Linux headers already sent

2006-02-11 Thread Eric Butera
To respond I do know the paths to the php.ini for all of the servers I used. In all of my scripts I turn error_reporting to E_ALL and use a custom error handler script to deal with errors. I was just looking for the setting that could cause the problem and its the ouput_buffering directive. I th

[PHP] Compile error in php4.04pl1 with apache

2001-02-07 Thread Eric Persson
LINUX=22 -I/home/eric/src/php-4.0.4pl1 - I/home/eric/src/php-4.0.4pl1/main -I/home/eric/src/php-4.0.4pl1/main -I/home /eric/src/php-4.0.4pl1/Zend -I/home/eric/src/php-4.0.4pl1/Zend -I/home/eric/ src/php-4.0.4pl1/TSRM -I/home/eric/src/php-4.0.4pl1/TSRM -I/home/eric/src/ph p-4.0.4pl1 -DUSE_EXPAT -I

[PHP] Conditionally include file based on document location

2002-09-17 Thread Eric C. Pollitt
le. The closest PHP example that I have found thus far follows: [INCOMPLETE] PHP CONDITIONAL INCLUDE EXAMPLE Extracted from: <http://www.jwweb.com/20010629.html> --

Re: [PHP] Re: Image resolution and php

2002-09-18 Thread Eric C. Pollitt
file type, resolution, color profile, date created, date modified and copyright. The File Browser also gives you the added advantage of being able to search for images visually rather than just by file name. Eric C. Pollitt, Founder 401 E. Illinois Ave. Peoria, IL 61603 Global Hemp - Portal to the

Re: [PHP] mid-level PHP/MySQL people in Los Angeles?

2002-09-18 Thread Eric C. Pollitt
/Remotely _Provided_Services/> to find more. PS I am not affiliated with Elance, just a suggestion. Eric C. Pollitt, Founder 401 E. Illinois Ave. Peoria, IL 61603 Global Hemp - Portal to the hemp community http://www.globalhemp.com/ Create like a god. Command like a king. Work like a slave! -- Constan

Re: [PHP] Conditionally include file based on document location

2002-09-18 Thread Eric C. Pollitt
hanks, Eric C. Pollitt, Founder 401 E. Illinois Ave. Peoria, IL 61603 Global Hemp - Portal to the hemp community http://www.globalhemp.com/ "Hemp is of first necessity to commerce and marine, in other words, to the wealth and protection of the country." -- Thomas Jefferson > From: Marek

Re: [PHP] editor php

2002-09-19 Thread Eric C. Pollitt
I haven't tried this, but it's a PHP Class named, "EditPHP." http://spunge.mirrors.phpclasses.org/goto/browse.html/package/43.html Eric C. Pollitt, Founder 401 E. Illinois Ave. Peoria, IL 61603 Global Hemp - Portal to the hemp community http://www.globalhemp.com/ "

[PHP] Need PHP programmer in Northwest for couple week job

2002-10-14 Thread Eric JT Harlow
Need a PHP/MySQL programmer for a couple week job in the Northwest (Portland OR, Area) Please respond ASAP. Eric JT Harlow Sisgrate Technologies Vancouver, WA USA www.sisgrate.com Email: [EMAIL PROTECTED] Phone: 360 891 6991 Fax: 360 891 6865 "This communication (including attach

[PHP] PHP/SQL programmer position open Portland OR/Vancouver WA area.

2002-04-04 Thread Eric JT Harlow
, Eric JT Harlow Sisgrate Technologies www.sisgrate.com Email: [EMAIL PROTECTED] Phone: 360 891 6991 Fax: 360 891 6865 “This communication (including attachments) contains private, confidential, privileged and/or proprietary information intended solely for the Recipient (s) named above. If you are

[PHP] problem uploading big (50MB) file

2001-03-29 Thread Gilles-Eric Descamps
filesize = 104857600 ; 100 Meg default limit on file uploads I've verified this through the php info function. I'm running Apache/1.3.9 (Unix) PHP/4.0.3pl1 on a Solaris 2.6 sparc server. MS Internet Explorer 5.01 keeps timing out after 30 seconds... Any ideas ? -- Gilles-Eri

RE: [PHP] problem uploading big (50MB) file

2001-03-29 Thread Gilles-Eric Descamps
1 1:18 PM > To: Gilles-Eric Descamps; [EMAIL PROTECTED] > Subject: Re: [PHP] problem uploading big (50MB) file > > > This is set by max_execution_time, did you restart apache to > re-read your > php.ini file? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] [ANSWER] problem uploading big (50MB) file

2001-03-29 Thread Gilles-Eric Descamps
t; and it wouldn't upload > anything cause it didn't parse it right. > In other words, set that value to what you had with say php4.0.1 > good luck! replaced 100M by 104857600, and it WORKED ! two days I was stuck on this Thanks, -- Gilles-Eric DESCAMPS,   Voi

[PHP] HTTP Authentication / Logging Out

2001-10-01 Thread Eric J Schwinder
that? Thanks, Eric J Schwinder eric.AT.bergencomputing.DOT.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Fatal error: Call to undefined function: mysql_pconnect() in /var/www/html/includes/db_fns.php on line 6

2004-08-12 Thread Eric L. Sammons
Trying set up php-syslog-ng on my Red Hat EL 3.0 AS system. I have verified that I can in fact access mysql and that I have the necessary database and that the user, password, and host are setup correctly in db_fns.php. It seems; however, that I still receive the given error: Fatal error: Cal

FWD: RE: [PHP] Fatal error: Call to undefined function: mysql_pconnect() in /var/www/html/includes/db_fns.php on line 6

2004-08-12 Thread Eric L. Sammons
>= Original Message From "Eric L. Sammons" <[EMAIL PROTECTED]> = >= Original Message From "Eric L. Sammons" <[EMAIL PROTECTED]> = did this, all answers came back stating to install php-mysql package. Already have that installed. Some hav

RE: [PHP] Fatal error: Call to undefined function: mysql_pconnect() in /var/www/html/includes/db_fns.php on line 6

2004-08-12 Thread Eric L. Sammons
I have done phpinfo and I see --with-mysql=shared,/usr >= Original Message From Jay Blanchard <[EMAIL PROTECTED]> = >[snip] >did this, all answers came back stating to install php-mysql package. >Already >have that installed. Some have stated they recompiled php, I really >would >like to

RE: [PHP] Fatal error: Call to undefined function: mysql_pconnect() in /var/www/html/includes/db_fns.php on line 6

2004-08-12 Thread Eric L. Sammons
I have started mysql, all is working (when I use the mysql client). >= Original Message From Jay Blanchard <[EMAIL PROTECTED]> = >[snip] >I have done phpinfo and I see --with-mysql=shared,/usr >[/snip] > >Have you started the mysql daemon? > >-- >PHP General Mailing List (http://www.php.

RE: [PHP] Fatal error: Call to undefined function: mysql_pconnect() in /var/www/html/includes/db_fns.php on line 6

2004-08-12 Thread Eric L. Sammons
No I see no mysql section in my phpinfo page. I am in the process of rebuilding php to see if this resolves the problem. >= Original Message From [EMAIL PROTECTED] = >On Thu, 12 Aug 2004 15:38:45 -0400, Eric L. Sammons <[EMAIL PROTECTED]> wrote: >> I have done phpinf

[PHP] include_path

2009-03-06 Thread Eric Lease Morgan
under /usr/lib/php. So is PEAR.php. Why can't my PHP script find Smarty/Smarty.class.php when it is located in my path, especially if it finds PEAR.php? How do I diagnose this problem? --  Eric Lease Morgan University of Notre Dame -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] include_path

2009-03-06 Thread Eric Lease Morgan
ou for the prompt reply, and it seems very feasible, but how do I allow apache access to the /usr/lib/php locatdion? -- Eric Lease Morgan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Beginner at writting a PHP Wrapper for C++ libraries

2009-06-11 Thread Eric A. Boney
and then modify the php.ini file and restart the apache server. How can I do this with my extension and just call/load the .so file in my script(s) that need it? Thanks in advance. -Eric Bonney -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problems with an extension

2009-06-28 Thread Eric A. Boney
clude of the header file everything still compiles and makes just fine, and after restarting the web server the extension is loaded just fine. Does anyone have any idea what would cause the extension to refuse to load with the header file included? -Eric -- PHP General Mailing List

Re: [PHP] Problems with an extension

2009-06-28 Thread Eric A. Boney
On Sunday 28 June 2009 11:00:48 you wrote: > On Sun, Jun 28, 2009 at 10:56, Eric A. > > Boney wrote: > > So I am developing a custom extension and I am having a issue. I have a > > header file that I need included in the project. If I #include the header > > file everyth

[PHP] Release phpexplorator

2007-02-08 Thread Tchouamou Eric Herve
Move and copy array of folders and files with one click - support apache icons, and apache configuration - Icon internal saved in base64..etc -- Eric Herve Tchouamou http://www.tchouamou.homeunix.com Via Portofino, 8 - 10135 Torino - Italy phone: +39 011 3720145 Cel: +39 328 6928649 email: [EMAIL

[PHP] phpexplorator has released phpexplorator

2007-02-08 Thread Tchouamou Eric Herve
ugs - Move and copy array of folders and files with one click - support apache icons, and apache configuration - Icon internal saved in base64..etc -- Eric Herve Tchouamou http://www.tchouamou.homeunix.com Via Portofino, 8 - 10135 Torino - Italy phone: +39 011 3720145 Cel: +39 328 6928649 email: [EMAIL PROTECTED]

[PHP] output compression when host has disabled mod_deflate, mod_gzip and php_value auto_prepend_file

2012-09-21 Thread edward eric pedersson
Hi My host, Host Papa (yes, they are rubbish) has disabled mod_deflate, mod_gzip and php_value auto_prepend_file so can't use them in .htaccess file. I would move host but I did not realise this was the case until I wanted to make use of them. I am tied in for three years so need to find a workaro

Re: [PHP] Friday's Question

2013-09-23 Thread Eric K. Dickinson
54, Only when the surface of the desk is problematic. On 09/20/2013 12:58 PM, Larry Martell wrote: On Fri, Sep 20, 2013 at 10:51 AM, Tedd Sperling wrote: Hi gang: Do you use a Mousepad? My reason for asking is that I've used a Mousepad ever since mice first came out (back when they had one

[PHP] FWD: Help with PHP4.3.2 and XML

2004-06-22 Thread Eric L. Sammons
>= Original Message From "Eric L. Sammons" <[EMAIL PROTECTED]> = I am in the process of writing a PHP program. It is really quite simple, I have a form that I complete, the information is then to be saved into a simple XML file. When I do this in Java the XML file wou

<    7   8   9   10   11   12   13   >