[PHP] Cron php refresh

2008-04-20 Thread Jeffrey
? I appreciate I could use sleep() after every 50 mails - but there would still be the time-out problem. I've searched the manual and via Google - but haven't found anything - possibly I am searching on the wrong terms. Your help will be much appreciated. Thanks, Jeffrey -- PHP General

Re: [PHP] Cron php refresh

2008-04-20 Thread Jeffrey
Per Jessen wrote: Jeffrey wrote: I'm working on an application that includes e-mail notifications of certain events. Because the application will have hundreds or thousands of users, I've designed it so that e-mail notifications are saved to a MySQL table. Then a regular cron job runs a php

[PHP] Page not displayed/Forbidden on PHP forms

2007-11-22 Thread Jeffrey
We are running identical web applications with two different hosts. Both are LAMP. With one of hosts, we are having reports of users seeing Page not displayed or 403 Forbidden after submitting forms. These forms are always sending data to the same page from which they started and the problem

Re: [PHP] Sending Pictures to Cell Phones

2007-11-21 Thread Jeffrey
screen pages, which can be useful for developing if you want to use this route. Good luck! Jeffrey [EMAIL PROTECTED] wrote: Hey list, I'm doing some RD for a project at my job and my boss wants the ability to send pictures to cell phones. I was wondering if anyone had any experience

Re: [PHP] client-server upload communication?

2006-08-06 Thread Jeffrey Sambells
Your page currently has a JS error but... The short answer is not in PHP. The PHP script doesn't 'process' the upload of the file. When the file is received by the server, the script (line 1) starts executing AFTER the file is already fully uploaded, and the files temporary location is

[PHP] Bug in == comparison?

2006-07-21 Thread Jeffrey Sambells
functions such as strval() in the comparison however I've used similar logic in the past without problems. Any help would be great. Thanks Jeff ~~ Jeffrey Sambells Director of Research and Development Zend Certified Engineer (ZCE) We-Create Inc. [EMAIL PROTECTED

[PHP] Re: Bug in == comparison?

2006-07-21 Thread Jeffrey Sambells
hrm.. It just seemed strange as the script I was working on is 3 years old and had worked flawlessly until today. Thanks. - Jeff ~~ Jeffrey Sambells Director of Research and Development Zend Certified Engineer (ZCE) We-Create Inc. [EMAIL PROTECTED] email

[PHP] Session breaks when form data submitted

2006-07-20 Thread Jeffrey
We have a site which requires users log in. Once they do so a session is created (session_start), some data is saved as session data, particularly data which identifies the user, their privileges, etc. If the session ends, breaks, etc. The user must log in again. There are also forms on the

Re: [PHP] For Loop

2006-06-20 Thread Jeffrey Sambells
for($i=1; $i100; $i++) { ${'p'.$i.'name'} = 'whatever'; } - jeff On 20-Jun-06, at 6:14 PM, Albert Padley wrote: I have a regular for loop - for($i=1; $i100; $i++) Within the loop I need to create variables named: $p1name; $p2name; $p3name; etc. The integer portion of each variable

Re: [PHP] interview

2006-04-13 Thread Jeffrey Pearson
How about the Presidential election?!! On Apr 13, 2006, at 9:23 AM, Jay Blanchard wrote: [snip] Great, now the interviewee will be able to cheat. Way to go Jay. [/snip] *blush* I know. I wonder where we could apply, that way we can skew the results so that the cheating doesn't matter.

Re: [PHP] Determining number of days in a selected month

2006-01-20 Thread Jeffrey Pearson
The java mailing list I belong to recently had this same conversation. I didn't know php had that ability built in. Java doesn't (score another one for php). The cleanest solution I saw on the Java list that would be non-language specific (in other words, the same logic can be implemented

[PHP] Grouping

2006-01-19 Thread Jeffrey Pearson
OK. I know I did this a LONG time ago but I don't remember how I did it. Thus, my post. I have a list of last names from a MySQL database. I need to display them grouped by the first letter of their last names and insert a separator on display. Similar to a phone book. So it looks like;

Re: [PHP] installing php5 on os x and CLI version

2006-01-09 Thread Jeffrey Sambells
php runs out of /usr/bin/php but entropy.ch installs into /usr/local/ php5 so you want to run /usr/local/php5/bin/php (on my system i symlinked the two so they are the same). -jeff ~~ Jeffrey Sambells Director of Research and Development Zend Certified

Re: [PHP] detecting file size

2005-12-12 Thread Jeffrey Sambells
The php script starts to execute AFTER the file has already been uploaded so the quick answer is no you can't get the file size prior to the upload finishing (in PHP). I fought with a similar problem and ended up implementing the uploading portion of a script using perl which has access to the

Re: [PHP] Class Constant PHP 5

2005-12-07 Thread Jeffrey Sambells
will assume that the simple answer to my original question was 'No that it is not possible'. Thanks - Jeff Jeffrey Sambells cell 519.897.2552 phone 905.878.4701 web http://www.sambells.info On 7-Dec-05, at 1:22 PM, Jay Blanchard wrote: [snip] is there a way to dynamically define a class constant

Re: [PHP] PHP Warning: imagettftext() expects parameter 2 to be double

2005-12-07 Thread Jeffrey Sambells
You've got 83px in you XML file for the fontsize. the 'px' is messing it up change it to just 83 in the XML file or cast the value to (float) which will extract the 83 and remove the px: snip foreach ($xml-textblock as $text) {

[PHP] Regex for balanced brackets?

2005-11-21 Thread Jeffrey Sambells
= SUBJECT test { test2 { test3 } } test4 { } SUBJECT; preg_match_all(/$pattern/ix,$subject,$matches); header(content-type: text/plain; ); var_dump($matches); ? - Jeff ~~ Jeffrey Sambells Director of Research and Development

Re: [PHP] Using PHP for accsess control, preventing access to staticfiles

2005-10-27 Thread Jeffrey Sambells
sessions and use something like mod_security or a simple cookie/ query_string check to see if the requested file has a valid session. Then apache would handle the download as normal so users could use whatever download mechanism they want. - jeff ~~ Jeffrey

[PHP] PDO pgsql?

2005-10-11 Thread Jeffrey Sambells
extension but thought I'd ask if anyone has any ideas why it's not working? Thanks. -Jeff ~~ Jeffrey Sambells Director of Research and Development Zend Certified Engineer (ZCE) We-Create Inc. [EMAIL PROTECTED] email 519.745.7374 office 519.897.2552 mobile

RE: [PHP] Having resource variables over several scripts

2005-10-10 Thread Jeffrey Santos
Ben, If you grab the resource and store it in a variable, you certainly should be able to send it via GET or POST. For that matter, you should be able to store the information in a SESSION variable too, so I'm not sure what is going wrong. Could you email the code you are using to grab the

RE: [PHP] Having resource variables over several scripts

2005-10-10 Thread Jeffrey Santos
I was under the impression he was using the resource to get information then trying to pass that information... rereading it makes it seem otherwise, so sorry for the false information :-P I've never actually tried passing resources themselves among scripts so TG is most likely correct. As far

RE: [PHP] storing passwords in $_SESSION

2005-10-10 Thread Jeffrey Santos
Why not store a cookie and session variable with a randomly generated ID code (see uniqid function in manuals) then just check to see if one is equal to the other on your relogin This way you don't record any personal user information and can still do an autologin type script. - Jeff

RE: [PHP] Mystery about chmod and permissions

2005-10-09 Thread Jeffrey Santos
To save on computing time, the results of the fileperms command are cached... I assume when you run a new instance of the program, it uses a new cache / old one is deleted when the first instance ends. Either way, you should clear the cache first: clearstatcache(); echo Directory permissions

Re: [PHP] passing a variable with php_self

2005-10-03 Thread Jeffrey Sambells
! a href=? echo htmlspecialchars($_SERVER['PHP_SELF']).'? action=bigger';? -Jeff ~~ Jeffrey Sambells Director of Research and Development Zend Certified Engineer (ZCE) We-Create Inc. [EMAIL PROTECTED] email 519.745.7374 office 519.897.2552 mobile

Re: [PHP] passing a variable with php_self

2005-10-03 Thread Jeffrey Sambells
oops, that should be htmlentities, not htmlspecialchars. - Jeff On 3-Oct-05, at 11:51 AM, Jeffrey Sambells wrote: $PHP_SELF should not be used because it will not work without register_globals being enabled. Rather, you should use $_SERVER ['PHP_SELF'] for it as above however... Don't

[PHP] Trigger root script?

2005-09-26 Thread Jeffrey Sambells
thought of using a cron to watch for some indicator but that would mean there could be a one minute delay. Any thoughts? Running php / linux and I have root access to the machine myself so i can set it up however I need to. Thanks. Jeff -- Jeffrey Sambells Director of Research

[PHP] Retrieving variable name?

2005-09-21 Thread Jeffrey Sambells
is it possible to retrieve the name of a variable passed into a function from within the function? ? function example($input) { //for example here can I determine that $input came from $a in the previous scope? } example($a); ? Jeffrey Sambells Director of Research and Development We

Re: [PHP] why memory limit is still being complained about?

2005-09-21 Thread Jeffrey Sambells
Not sure about Gallery or Apache 2 but Apache 1 uses different php.ini files for cli, cgi and mod_php. It could be that gallery checks using the command line version of php which has a different setting for memory limit? Seems silly but it's a thought. Jeff Jeffrey Sambells Director

Re: [PHP] Re: Retrieving variable name?

2005-09-21 Thread Jeffrey Sambells
oh well, thanks for the help. Jeffrey Sambells Director of Research and Development We-Create Inc. 519.897.2552 cell 519.745.7374 office 888.615.7374 toll free http://www.wecreate.com On 21-Sep-05, at 6:02 PM, Jake Gardner wrote: Maybe something fancy with references? http://us2.php.net

Re: [PHP] Very Basic question: What IDE/tools I need to begin using PHP?

2005-07-26 Thread Jeffrey D. Means
-highlight PHP code. I want to debug, deploy... ALL! I have just downloaded Zend Studio Client AND Zend Studio Server. Is that all I need to begin?... Tak - Start your day with Yahoo! - make it your home page -- Jeffrey D. Means [EMAIL PROTECTED

Re: [PHP] using require

2005-07-08 Thread Jeffrey D. Means
in the long run. Just my opinion, and I'm bound to take flak for it. -- Like Music? http://l-i-e.com/artists.htm -- Jeffrey D. Means [EMAIL PROTECTED] Owner / CIO for MeansPC http://www.meanspc.com/ Custom Web Development For Your Needs

[PHP] PHP version usage statistics?

2004-04-14 Thread Jeffrey Tavares
Is there some way to know a general php usage statistics specific to how many run 4.1, 4.2, and 4.3? I'm trying to get an average percentage to figure out whether it would be a great loss to not support prior versions. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP version usage statistics?

2004-04-14 Thread Jeffrey Tavares
netcraft shows how many servers have php, but nothing specific about versions. Maybe I'm wrong, but I checked all over netcraft's site. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Question on PDF upload

2004-03-19 Thread Jeffrey Lee
with the content-length=512KB, but the PDFs generated from PageMaker, its content-length is greater than 512KB, why the content-lengths are different? Sorry for my poor english. Thanks for your help. Jeffrey Hi, I am sorry about that I didn't mention about the file size of that pdf. It's less than 1MB

RE: [PHP] E-mail account disabling warning.

2004-03-18 Thread Jeffrey Shaw
There seems to be a lot of these going around. Remember: Don't open attachments unless you are sure of what you are getting! Keep your Virus Scan program up to date. Any database over 14 days old should be updated. Many times, the Headers and addresses of the messages are faked. This is easy

[PHP] Re: [Q] PHP code embedded in html files - What happens?

2004-03-14 Thread Jeffrey Lee
web server is configured like this. I believe it's normal behaviour in your case. Please correct me if I've made anything wrong, thanks. Cheers, Jeffrey Michael T. Peterson [EMAIL PROTECTED] ¦b¶l¥ó news:[EMAIL PROTECTED] ¤¤¼¶¼g... When the following file, tmp.htm, is executed no output

[PHP] windows 2003 server configuration

2004-03-12 Thread Schmidt, Jeffrey
I am running Windows 2003 server and am having trouble configuring. I unzipped php 4.+ to c:\php. I renamed php.ini and put it in C;\windows and configured the extension_dir = c:\php\extensions, doc_root = c:\inetpub\wwwroot, and cgi.force_redirect = 0. I also moved php4ts.dll to

[PHP] Question on PDF upload

2004-03-11 Thread Jeffrey Lee
that file, then I can view the file in browser also. Oh, please help. Cheers, Jeffrey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Question on PDF upload

2004-03-11 Thread Jeffrey Lee
Hi, I am sorry about that I didn't mention about the file size of that pdf. It's less than 1MB and I have checked my php.ini that it allows post_max_size = 8M. So, in my little knowledge, I think it's alright. Thanks for your help. Jeffrey - Original Message - From: Raditha

Re: [PHP] Operator question

2003-12-09 Thread Jeffrey Labonski
-- Jeffrey Labonski| http://www.eportation.com Senior Software Developer | (215) 627-2651 voice ePortation, LLC.| (267) 237-7866 cell [EMAIL PROTECTED] | (215) 893-5287 fax On Tue, 9 Dec 2003, Richard Davey wrote: Hello Jeff, Tuesday, December 9, 2003, 4:11:10

[PHP] Create from PHP on the Fly???

2003-10-02 Thread Jeffrey Fitzgerald
Can this be done? How much $$$? Quality of PDF?? Thanks very much... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: RE: [PHP] PHP Editor - which to use?

2003-09-23 Thread jeffrey pearson
I like to use Edit Plus. www.editplus.com It has the syntax highlighting for php, perl, java, and many others through modules that are downloadable from their web site, DOESNT change code like dreamweaver does and its cheap ($25). Jeff Pearson - Original Message - From: Ruessel, Jan

[PHP] Parsing Current Server Domain

2003-08-28 Thread jeffrey pearson
Does anyone know how I would parse the domain that scripts are currently being executed in? For example: I use seperate domains for development and production. There are times I have to specify a hard coded url instead of a relative one. So for the development it would be;

[PHP] RE: [users@httpd] RE: Can't POST over 500K

2003-08-24 Thread Jeffrey D. Means
This is not an apache proble it is a problem with your php.ini file. In this file there is a line that specifies how large of POST data can be received, the default is 500k. If you are running apache 2.0 there is an additional place where this might be being defined. You can find this file in

[PHP] anyone have any idea as to how to display a message after a page has started loading??

2003-08-22 Thread Jeffrey D. Means
on this?? BTW: at the time I am trying to display a message I have already started output to the browser. --- Jeffrey D. Means CIO for MeansPC [EMAIL PROTECTED] --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.512 / Virus Database: 309

[PHP] Can PHP Build XML Pages?

2003-07-14 Thread Jeffrey Fitzgerald
Looking for direction PHP and XML. I have a need to build a simple XML doc from a PHP set of form vars. Any tips or examples are greatly appreciated. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] does anyone know how to tell if a PHP scrip is being executed from the command line not a server HTTP request??

2003-07-06 Thread Jeffrey D. Means
I am trying to write a script but for security I need to verify that it is not executed by a web server. At this point I have just placed it outside the htdocs tree but would like to build into the script a test to die if it is being executed by a web server. Thanks Jeff Means CIO for MeansPC

[PHP] imap_open() and courier-imap server

2003-06-25 Thread Jeffrey D. Means
This code does not work with my system. Any ideas as for a work arround?? --code starts $config[imap_server] = bast.picotech.net; $config[imap_port] = 143; $mailbox = INBOX; $login[username] = myusername; $login[password] = mypassword; $servername = { . $config[imap_server] . : .

[PHP] Opening a Dynamic Pop Up Window

2003-05-30 Thread Jeffrey L. Fitzgerald
Help! :-) Have a need for a pop up window to show images when the thumbnail is clicked. But the script I found only shows the image and no background, etc. I want to be able to have the pop up open and then send it a php created dynamic page with the proper html and image. In perl I know

Re: [PHP] Re: Opening a Dynamic Pop Up Window

2003-05-30 Thread Jeffrey L. Fitzgerald
First thanks for your help!.. I have the variable passing OK to this html page below. But the filename is not making it to the img src tag. I think the syntax is off?? I'm thinking maybe the img src tage needs to be broken up to allow the $image var to process? !DOCTYPE HTML PUBLIC

Re: [PHP] Re: Opening a Dynamic Pop Up Window

2003-05-30 Thread Jeffrey L. Fitzgerald
Actually, I just found out we run PHP 4.0.6... Will the query string/GET process still work? Right now it's not and I thought I saw in the docs that the POST/GET isn't in pre 4.1... Just add some Javascript to the links around your thumbnails, like this: a

[PHP] Email This Story and Print Functions

2003-05-30 Thread Jeffrey L. Fitzgerald
Thanks to Kevin, Monty and the others who helped with my earlier post... Anyone have experience with PHP based Email This Story and Print This Story functions?? I am looking to add these along with a digital postcard mailer. -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Suggestions on FAQ application?

2003-01-11 Thread Jeffrey B. Ferland
Why re-invent what is already written? I'm well aware that it's easy to write but there may be something out there already that suits my needs and has some features that I hadn't thought of. If you don't have a suggestion on a package please spare me the rude replies which seem to run rampant

Re: [PHP] count characters without space

2003-01-11 Thread Jeffrey B. Ferland
who knowes how to count the charcaters in a string without the space character? Using a regular expression to strip out all the spaces before passing to the word counting function seems easiest. You'll be left to adapt it to PHP, but the regexp is: 's/ //g' That removes all spaces. If it gives

Re: [PHP] MySQL vs PostgreSQL

2003-01-06 Thread Jeffrey B. Ferland
I'm just deciding which DB to use for my projects and I'm not clear with one thing... When considering a database for web, is MySQL good enough? I read it only supports table locking, which is not very satisfying in such a multiuser environment as the internet.. PostgreSQL has

Re: [PHP] MySQL vs PostgreSQL

2003-01-06 Thread Jeffrey B. Ferland
Not to cause a flame war, but, MySQL and PostgreSQL are both excellent choices, MySQL tends to be a lighter less feature rich database while PostgreSQL tends to have more features, perform better under load, etc. Under differing types of load, yes. MySQL is more hit-based, while PostgreSQL

Re: [PHP] Function passed as argument to function

2002-12-01 Thread Jeffrey B. Ferland
For reference, see http://autocracy.homelinux.org/template.php and http://autocracy.homelinux.org/error.php Unless you have a good reason to do otherwise please post your code here. People would be less inclined to help if they have to go about clicking on links to see what your problem

Re: [PHP] Guestbook

2002-12-01 Thread Jeffrey B. Ferland
The quick solution, if you intend to continue the autoincrement field, is to number the entries manually when you're displaying them: Something along the lines of: $count = 0; while ($row(mysql_fetch_array($result_id))) { $count++; echo Entry $count; ... ... } The

[PHP] Function passed as argument to function

2002-11-30 Thread Jeffrey B . Ferland
std_layout(Title here, list_writings(poetry)) both std_layout and list_writings are user-defined functions. std_layout() echo's the two arguments that it takes at select points in its execution. I want to the output of list_writings() to be an argument for std_layout(). -Jeff SIG: HUP --

Re: [PHP] Function passed as argument to function

2002-11-30 Thread Jeffrey B . Ferland
On Saturday 30 November 2002 03:14 pm, you wrote: On Sunday 01 December 2002 03:54, Jeffrey B.Ferland wrote: std_layout(Title here, list_writings(poetry)) both std_layout and list_writings are user-defined functions. std_layout() echo's the two arguments that it takes at select points

[PHP] PHP and https no working recieving cookies and header info how to fix needed.

2002-09-27 Thread Jeffrey D. Means
I am using PHP 4.2.3 with Apache-SSL 1.3.26 and need some advice on how to get my scripts to receive the cookies that I am setting along with the POST and GET values from the preceding form. How do I go about this task? My thanks in advance for any help offered as I am totally stumped. Jeff

[PHP] PDF_function HELP again!!! :(

2002-07-30 Thread Jeffrey
Here we go again; I posted the message pdflib, NEED HELP with function problem (newby) and thank you to all that helped. Even after that help, seems I cant understand scope to well. Im trying to make a function that creates another page when I have reached the bottom of a page. For some reason

[PHP] Re: PDF_function HELP again!!! :(

2002-07-30 Thread Jeffrey
Diregard the missing { bracket its not the problem, I dont why its missing from my post. Jeff Jeffrey [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Here we go again; I posted the message pdflib, NEED HELP with function problem (newby) and thank yo

Re: [PHP] PDF_function HELP again!!! :(

2002-07-30 Thread Jeffrey
On Tue, 30 Jul 2002, Jeffrey wrote: Here we go again; I posted the message pdflib, NEED HELP with function problem (newby) and thank you to all that helped. Even after that help, seems I cant understand scope to well. Im trying to make a function that creates another page when I have

Re: [PHP] PDF_function HELP again!!! :(

2002-07-30 Thread Jeffrey
ROTECTED]... Oh, watch your = vs. == in your if statements. On Tue, 30 Jul 2002, Jeffrey wrote: Wish it was that easy, here is the call to end the page right above as im trying to trouble shoot this problem. // End document PDF_end_page($p); // Test document open close function n

[PHP] pdflib, NEED HELP with function problem (newby)

2002-07-25 Thread Jeffrey
Hello, Using php v 4.2.2 with pdflib support, on apache v. 1.3, and redhat linux 7.2. I for some reason can not get a pdf_setfont, pdf_set_text_pos, pdf_[anything], to work inside a function. What is going on. All the pdf extensions work find as long as I dont try to use them inside a

[PHP] Is there any way to change the process user (logon user) for a running script??

2002-05-09 Thread Jeffrey D. Means
I have come across a situation where I need to temporarly change the user profile in the middle of a script. I would prefer to do this than to change ownership of files to allow the script to be able to read them. I don't know whose files I will be reading when the script runs, however I need

[PHP] Why does this not work??

2002-04-22 Thread Jeffrey Means
In using the setcookie function I can not set a cookie if I specify a time period. ie. setcookie(Cookie_Name, Cookie_Value, time()+30); will not set a cookie, but setcookie(Cookie_Name, Cookie_Value); does work. What am I dooing wrong?? Jeffrey D. Means CIO for PicoTech Fort Collins

[PHP] I would like to get a script to display in a frame

2002-04-20 Thread Jeffrey D. Means
Does anyone have any experience with making script output display in a frame?? I would like to get this to happen on an e-commerce site I am designing and am stuck. I have tried form method=POST action=myscript.php target=main with no success. Please help. Jeff Means CIO for PicoTech

Re: [PHP] Running a script with Crontab

2001-09-30 Thread Jeffrey Paul
Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467 ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749 PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

RE: [PHP] installing PHP with-apxs with-oci8 --with-oracle onLinux - remote oracle

2001-09-25 Thread Jeffrey Iskandar Ahmad
Andrew Hill, I would like to thank you very much for your help. I manage to connect to remote oracle after a week try. The problem was I run apache as nobody and nobody user does not have priviliege to access ~oracle directory. Now I can continue with my project.. :) Jeffrey Iskandar Ahmad

Re: [PHP] WEB LOG

2001-09-24 Thread Jeffrey Paul
Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467 ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749 PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: [PHP] WEB LOG

2001-09-24 Thread Jeffrey Paul
it. This doesn't afford any more security at all. -j Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467 ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749 PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7 -- PHP General

RE: [PHP] installing PHP with-apxs with-oci8 --with-oracle onLinux - remote oracle

2001-09-23 Thread Jeffrey Iskandar Ahmad
I have reinstalled but still cannot work. How i compile: ./configure --with-mysql --with-apxs=/usr/local/apache/bin/apxs \ --with-ldap=/home/jeffrey/download/directory/install --with-oci8=/home/oracl e Apache server stop and started. Im using redhat 7. Oracle 8i installed as programmer

[PHP] installing PHP with-apxs with-oci8 --with-oracle onLinux - remote oracle

2001-09-21 Thread Jeffrey Iskandar Ahmad
= (ADDRESS = (PROTOCOL = TCP)(HOST = patin)(PORT = 1521)) ) (CONNECT_DATA = (SID = I32) ) ); $c1 = ocilogon(ims,ims,$db); if ($c1 == false){ echo OCIError($c1).; exit; } else { echo success; } Jeffrey

RE: [PHP] installing PHP with-apxs with-oci8 --with-oracle onLinux - remote oracle

2001-09-21 Thread Jeffrey Iskandar Ahmad
I did but didnt work. Jeffrey Iskandar Ahmad System Engineer Technology Division TIME dotNet -Original Message- From: Andrew Hill [mailto:[EMAIL PROTECTED]] Sent: Friday, September 21, 2001 9:09 PM To: Jeffrey Iskandar Ahmad; [EMAIL PROTECTED] Subject: RE: [PHP] installing PHP

[PHP] incorrect Timezone using mail() -- HELP!

2001-08-26 Thread Jeffrey Iskandar Ahmad
not display correctly. I have tried different servers but still the same. And all clients get the wrong date. Im Using php 4.06 and win2k and winnt4. Can anybody help me. Thanks Jeffrey Iskandar Ahmad System Engineer Technology Division TIME dotNet -- PHP General Mailing List (http

[PHP] incorrect Timezone using mail()

2001-08-23 Thread jeffrey jeffrey
Hi, When i use this function mail(), mail was sent successfully but when recipient receive the mail the date timezone is incorrect. It displayed -0800 instead of +0800. Im from +0800. The timezone does not display correctly. I have tried different servers but still the same. And all clients

Re: [PHP] Apache alias to a specific .htm file

2001-08-17 Thread Jeffrey A Schoolcraft
if you have DirectoryIndex support you can specify what file it will use as an index page. for most unix type os's this seems to be index.php[ 3] index.htm[ l] for IIS it's default.asp or something Jeff In an ideal world I would like to be able to type http://localhost into my browser and

Re: [PHP] ADV. Natural penis enlargement -without surgery-!

2001-08-01 Thread Jeffrey Paul
At 09:00 PM 7/31/2001, Guaranteed ! wrote: We are a serious company, offering a program that will enhance your sex life, and enlarge your penis in a totally natural way. I think they got the ASP mailinglist mixed up with the PHP one.. -j --

Re: [PHP] Newbie: Site search, more than one directory

2001-08-01 Thread Jeffrey Paul
At 04:11 PM 8/30/2001, Steve Wright wrote: Hey, I have just developed a simple site search.. .and am after learning how to get it to search all directories... at present, it only searches the one it is in!! snip $cmdstr = grep -i $searchstr *; man grep on my linux box shows:

[PHP] PHP ImageMagick

2001-06-29 Thread Jeffrey Barendse
on this in. ;-) Regards, Jeffrey Barendse -- 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] Got OO error after upgraded php3.0.8 to php4.05

2001-05-18 Thread Jeffrey Wang
Hi, I got error on OO programming after upgraded php3.0.8 to php4.05. I am using apache 1.3.14, phplib 7.2c and MYSQL 3.23.36. The program was working fine under PHP 3.0.8. Error is showing all html code on browser as following. {FONT FORM Method=post ACTIONLIGN=CENTERE=verdana,

Re: [PHP] return parse error

2001-04-13 Thread Jeffrey Paul
At 03:56 AM 4/13/2001, Peter Harkins wrote: This generates a parse error: mysql_connect("localhost", "root", "rootpw") or return("bar"); But all the following work fine: mysql_connect("localhost", "root", "rootpw") or die("bar");

Re: [PHP] Creating Arrays

2001-04-12 Thread Jeffrey Greer
[posted and emailed] If you're looking for a simple way to work with databases I would use phplib. Phplib is a db abstraction layer which supports over a dozen databases including mysql. You can get the libraries at http://phplib.netuse.de/download/phplib-7.2c.tar.gz You will need to use

Re: [PHP] Creating Arrays

2001-04-12 Thread Jeffrey Greer
[posted and emailed] On 12 Apr 2001 12:48:52 -0700, [EMAIL PROTECTED] (Jeffrey Greer) wrote: // putting the values in an array is trivial, but you should do it like this // or you will confuse your numeric ids with the ids that php puts in an array automatically Whoops. I was wrong about

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-11 Thread Jeffrey Greer
On 10 Apr 2001 19:08:03 -0700, [EMAIL PROTECTED] (Seung-woo Nam) wrote: Jeffrey Greer wrote: I'm not trying to provide the level of service of a large isp or even get 100 customers. I would just like to pay for my half of the web portal. I thought $8/mo for my service would be a good

RE: [PHP] Can't redeclare already declared function

2001-04-11 Thread Jeffrey Paul
better yet, try include_once() instead of all instances of include(). It will only include a file once, rather than every time you call include() on that path. Nifty feature. -j At 11:17 AM 4/11/2001, Johnson, Kirk wrote: The function in question is defined in an included file, right?

[PHP] $8/mo php hosting on 24/7, OC3+ web server

2001-04-10 Thread Jeffrey Greer
drive My name is Jeffrey Greer. You can mail me at [EMAIL PROTECTED] You can view more info at http://www.singlesconnection.org/services/php_hosting.php -- Jeff Greer - B.S. computer science - Univ. MO - Rolla - web developer/software engineer, dedicated to the struggle against the fascist

Re: [PHP] __ $8/mo php hosting on 24/7, OC3+ web server ___

2001-04-10 Thread Jeffrey Greer
On 10 Apr 2001 12:08:01 -0700, [EMAIL PROTECTED] (Kurth Bemis) wrote: At 06:15 PM 4/10/2001, Jason Lotito wrote: no no - its an OC3+ web server.must be an overseas brand..or something..i've never heard of it.maybe its an SGI or something they have wacky names for their stuff :-)

Re: [PHP] Good Free PHP Editor?

2001-03-16 Thread Jeffrey A . Stuart
In article [EMAIL PROTECTED], [EMAIL PROTECTED] says... On 12 Mar 2001 03:51:13 -0800, [EMAIL PROTECTED] (Nick Davies) wrote: How about linux ones? I just tend to use vim or emacs but i'm sure there are some out there. I've used Xemacs. Do you know if there is a PHP mode for it?

Re: [PHP] payment

2001-03-10 Thread Jeffrey Greer
On 9 Mar 2001 22:43:08 -0800, [EMAIL PROTECTED] (Aaron Tuller) wrote: At 12:27 AM -0600 3/10/01, Jeffrey Greer wrote: With paypal's business account there are no credit checks and the rate is 2.2% for cc payments. You bring up valid points, but I still think paypal could be good for a lot of e

Re: [PHP] payment

2001-03-09 Thread Jeffrey Greer
On 9 Mar 2001 14:15:37 -0800, [EMAIL PROTECTED] (Rick St Jean) wrote: How to people typically integrate payment processors with PHP? And what processors are used most often? I know that a number of people are scrambling after cybercash died. There is a site out there www.opay.com that says it

RE: [PHP] RE: db forms creator?

2001-02-10 Thread Jeffrey A. Stuart
Yes. Take a look at Code Charge. It does what you want and then some! (www.codecharge.com) -- Jeff (FurBall) WebOverdrive Newbie Tech Board http://www.topniche.com/tech/ [EMAIL PROTECTED] -Original Message- From: Tim Ward [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 07, 2001

[PHP] Sessions and SSL

2001-02-07 Thread Jeffrey A Schoolcraft
(or whatever made transparent session data). Thanks. Jeffrey Schoolcraft -- 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] undefined symbol: __dn_expand ???

2001-02-06 Thread Jeffrey Dyer
Hey, I'm on Mandrake 7.1. I installed PHP 4.0 without any errors, using the following: ./configure --with-mysql=/usr/local/mysql --with-apxs=/usr/local/apache/bin/apxs --with-gnu-ld make make install It seemed to go fine -- no errors during installation, however, when I try to start apache I