[PHP] PHP4.4.0 not recognizing pdflib installtion

2005-09-02 Thread Young
ready installed Apache2.54 and PDFlib-Lite-6.0.2 Any help is appreciated! Thanks, Young -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: image generation with PHP

2002-11-24 Thread Jason Young
I did this just today -- http://www.php.net/manual/en/function.imagecreate.php Its real short and sweet. If you're running on Linux, I'm sure you'll be able to get it to work just fine - on Windows, make sure you have the gd extention, and that it will be loaded with php.ini. Hope this helps!

[PHP] Re: image generation with PHP

2002-11-24 Thread Jason Young
You'll need the full PHP package (the 5 MB zip file, not the 400k quickie) .. it'll be in the extensions/ directory of there.. php_gd.dll.. Myrage wrote: i am using windows and I cannot seem to find the necessary libs and dlls "Jason Young" wrote in message [EMAIL PRO

[PHP] Re: image generation with PHP

2002-11-24 Thread Jason Young
Did you tell php.ini to load this extension, and then restart your webserver? (I am taking it that you're using IIS or PWS? -- Someone else will have to field the question on whether or not GD/PHP works with this.. I would imagine so, but I am not sure enough to put any money on it :) ) Myrage

RE: [PHP] php5 features?

2002-12-03 Thread Brad Young
>php5. >I'm particularly interested in what's gonna be added >or changed to php in regards to >its OOP capabilities. ______ Brad Young Director, Product Marketing [EMAIL PROTECTED] www.zend.com Zend - The PHP Company -- PHP General Mai

[PHP] Templates

2003-02-13 Thread Darren Young
er time and I'd like to have the basic HTML in the templates, and the real logic in the PHP code. Thanks in advance, Darren Young -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Templates

2003-02-13 Thread Darren Young
rying to catch back up quickly. Any "best practices" assistance would be appreciated. Thanks for the response by the way. /DAY -Original Message- From: Justin French [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 5:22 PM To: Darren Young; [EMAIL PROTECTED] Su

RE: [PHP] PHP 5

2003-02-18 Thread Brad Young
__ Brad Young [EMAIL PROTECTED] Zend - The PHP Company >-Original Message- >From: Adrian Portsmouth [mailto:[EMAIL PROTECTED]] >Sent: Monday, February 17, 2003 7:46 PM >To: [EMAIL PROTECTED] >Subject: [PHP] PHP 5 > > >Hi, > >I have been checki

RE: [PHP] Zend Encoder

2003-02-25 Thread Brad Young
ely 100% protected. Brad ______ Brad Young Director, Product Marketing [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> www.zend.com <http://www.zend.com> Zend - The PHP Company >-Original Message- >From: Thomas Johnsson [mailto:[EMAIL PROTECTED] >Sent:

RE: [PHP] what are the planned features of php 5?[Scanned]

2003-02-26 Thread Brad Young
You can also view the recorded on-line seminars that Zeev gave, which go into even more detail. http://www.zend.com/iseminar.php The Future of PHP and the Zend Engine 2 The Future of PHP and the Zend Engine 2 - Part 2 Examples and tutorials Brad >-Original Message- >From: Micha

RE: [PHP] Calendar

2003-03-01 Thread Darren Young
Check http://www.cascade.org.uk/software/php/calendar/ I've used that one on several sites. -Original Message- From: Jason D. Williard [mailto:[EMAIL PROTECTED] Sent: Saturday, March 01, 2003 4:28 PM To: [EMAIL PROTECTED] Subject: [PHP] Calendar Is there an easy way to create a calenda

[PHP] RedHat

2003-03-04 Thread Darren Young
Does anyone know if the PHP included in RedHat 8.0 has sockets enabled? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RedHat 8.0 MySQL Problem

2003-03-04 Thread Darren Young
I have an app that runs just fine on RedHat 7.2 with compiled Apache and PHP along with MySQL binaries installed from MySQL's site. I have a new machine running RedHat 8.0 that is completely "generic", i.e only RedHat Apache, PHP and MySQL RPM's installed. The error message I'm getting is: [04-Mar

[PHP] SOAP

2003-03-11 Thread Darren Young
Is there any way to act as a SOAP client with PHP other than with pear? Thx. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Feasability of Serial functions and constantly running progrms

2003-03-14 Thread Jason Young
After upgrading to RedHat 8.0 and effectively breaking some python caller-id script that I have no clue how to fix.. I'm curious of whether or not PHP would be able to get caller-id data from a modem.. I imagine it could, and probably won't be too difficult to overcome... but I am posing that q

Re: [PHP] ANY ONE CAN TELL ME WHAT PORT mssql_connect uses?

2003-07-15 Thread Liberty Young
On Tue, 2003-07-15 at 01:00, Nabil wrote: > I tried to make it direct connection, but this way uses many ports that the > firewall won't allowed.. > He said for security reasons that he can't open those ports to prevents > hackers to use them ... do u think this is a true ? any advice what port the

RE: [PHP] zend optimizer for 4.3.2

2003-07-17 Thread Brad Young
Yes, Zend Optimizer definitely does support 4.3.X. Brad __ Brad Young [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> www.zend.com <http://www.zend.com> Zend - The PHP Company >-Original Message- >From: Adrian Teasdale [mailto:[EMAI

RE: [PHP] Apache 2.x and PHP

2003-07-23 Thread Brad Young
We have a detailed whitepaper on the subject. Please check out: http://www.zend.com/whitepapers/PHPandApache2-ZendWhitepaper.pdf BY __ Brad Young [EMAIL PROTECTED] www.zend.com Zend - The PHP Company > >Hi All, > >Can anyone aswer this simple ques

[PHP] Too all who are stuck with PHP/Apache2 under RH8

2003-03-17 Thread Jason Young
Just a quick reiteration of something I found that probably most people already know.. but since I went through the painstaking trouble of removing the PHP and Apache RPMs and building them from scratch (I hate building sources), I wanted to make sure this is out there. If you're having problem

RE: [PHP] web services

2003-03-21 Thread Darren Young
I seem to remember reading somewhere about compiling PHP pages to 'bytecode' thus removing the need to distribute the source PHP pages. I'm going to have the need down the road to distribute a PHP based app to others and am curious about the same "hiding code" issues. I'm not all that worried about

RE: [PHP] Detailed error message?

2003-03-21 Thread Darren Young
I use the set_error_handler and have a local function that dumps that stuff. I then redirect all of that to a log file on disk so the user doesn't have to see it. Check http://www.php.net/manual/en/function.set-error-handler.php There's a whole section in the manual that deals with error handling

RE: [PHP] Sessions question

2003-03-21 Thread Darren Young
It's a "session" cookie, the browser clears it when it's closed. IIRC you set the time to 0 to turn the cookie into a session one. Not sure how it'll work with sessions though. > -Original Message- > From: Justin French [mailto:[EMAIL PROTECTED] > Sent: Friday, March 21, 2003 9:59 AM > T

Re: [PHP] Generating Related Drop Down Boxes

2003-06-11 Thread Jackie Young
Hi, Please keep in mind that I am a newbie to PHP, however I have just solved this same type of problem (for County, City, and Zip) as follows: // COUNTY print ""; print "* County:"; print ""; if ($countyX != "") { $county = $countyX; } print " "; print ""; $result =

[PHP] File upload HELP!!!

2003-06-27 Thread Ian Young
s 108 to 112 read as follows: $file_name = $write_dir.$input_file_name; $file_size = filesize ($file_name); $fp = fopen ($file_name, 'r'); $data = addslashes (fread ($fp, $file_size)); fclose ($fp); Hope you can help Ian J Young Principal Ian Youn

[PHP] Error with file upload: "No file uploaded in Unknown on line 0"

2002-09-23 Thread Jason Young
aded in Unknown on line 0 Is there something I can do to combat this? It's quite annoying to see up to 9 of these lines everytime I submit something from my page. I don't want to turn off all error reporting or anything like that, either... I'd like to see something that'

Re: [PHP] Error with file upload: "No file uploaded in Unknown on

2002-09-24 Thread Jason Young
if this is the only way to do it.. Thanks. -Jason Marek Kilimajer wrote: > Turn off notice logging in your php.ini, just keep warnings and errors. > > Jason Young wrote: > >> I have some code that a user can set a description about an item to be >> posted, and the

[PHP] Re: apache problem......

2002-09-24 Thread Jason Young
This seems to be a browser problem, as I often get similar errors when trying to access sites with port numbers. That looks like an IE error.. and I know I have the same problem with Mozilla. Anil Garg wrote: > hi > in my httpd.conf i have added a virtual host as: > > > # General setup for

Re: [PHP] Re: Cronjob

2002-09-25 Thread Jason Young
Sorry to butt in :) Arguments to web scripts are done in the format: page.php?arg1=data1&arg2=data2 So you would use that full string as the lynx path. Hope this helps :) -Jason Daren Cotter wrote: > Thanks for the info Chris, it works! > > How do I pass arguments to the script? I'm assuming

Re: [PHP] Re: Cronjob

2002-09-25 Thread Jason Young
I read about $argc and $argv, but when I call the > script passing two arguments, both $argc and $argv are > blank. Is this a php.ini setting I need to change or > somethign? > > --- Jason Young <[EMAIL PROTECTED]> wrote: > >>Sorry to butt in :) >> >>

Re: [PHP] Re: Cronjob

2002-09-25 Thread Jason Young
Daren, This post from Robert explains why you're having trouble :) I forgot the PHP version on my machine doesn't have the register_globals problem. THAT should work. -Jason > > I'm think you're all forgetting about register_globals being off by > default these days... The following may hel

Re: [PHP] Re: Cronjob

2002-09-25 Thread Jason Young
Correction.. isn't it $_SERVER and not $SERVER Jason Young wrote: > Daren, > > This post from Robert explains why you're having trouble :) > > I forgot the PHP version on my machine doesn't have the register_globals > problem. > > THAT should work. &g

Re: [PHP] Re: Cronjob

2002-09-25 Thread Jason Young
Jeez.. pardon me.. $_GLOBALS .. I don't know where I got SERVER from.. *sleeps before posting from now on* -J Jason Young wrote: > Correction.. isn't it $_SERVER and not $SERVER > > Jason Young wrote: > >> Daren, >> >> This post from Robert expla

[PHP] Re: mysql timestamp and php date

2002-09-30 Thread Jason Young
In my pages, I just format the date from the SQL query: "SELECT DATE_FORMAT(last_modified, '%m/%d/%Y %h:%i:%s %p') AS last_modified (...)" Look up the DATE_FORMAT on mysql.com to get a list of the arguments. Hope this helps! -Jason Bryan Koschmann - Gkt wrote: > Hello, > > I have a table wit

Re: [PHP] Re: mysql timestamp and php date

2002-09-30 Thread Jason Young
> Thanks for the help, and making me take a second to look further at it! > > Bryan > > > On Mon, 30 Sep 2002, Jason Young wrote: > > |In my pages, I just format the date from the SQL query: > | > |"SELECT DATE_FORMAT(last_modified, '%m/%d/%Y %h:%i:%

Re: [PHP] no errors ?

2002-10-02 Thread Jason Young
I noticed that by default, my display_errors was actually OFF, and the only way to see my errors was through Apache's error.log file I don't know if that's already been checked, but... figured I'd try to help. -Jason Gamin wrote: > Yes, > > On both my development machine and implmetation ma

[PHP] Re: Incrementing the value

2002-10-02 Thread Jason Young
Try $hid++; This automatically increments by one, its just much easier to deal with than +1 .. besides, it wouldn't work on my Win32 platform, either. --Jason Uma Shankari T. wrote: > Hello , > >border="0"> > > While clicking this link the $hid value get incremented and fetch the value

[PHP] Source files (.phps) cutting off prematurely

2002-10-07 Thread Jason Young
Hey guys and gals... I'm not sure if this is Apache, PHP, or a browser issue.. but.. .phps files get cut off while trying to access them in a browser.. anyone ever have a problem with this? I can't exactly calculate where in any particular file its doing this, but refreshing the page causes i

[PHP] Re: uploading files

2002-10-07 Thread Jason Young
How are you handling the transfer of files between its temporary area and where it's going to be stored? If you're copying instead of moving, I would imagine the file in the temp directory would still be present. -Jason Donahue Ben wrote: > I am uploading a gif file using > is_upload_file($f

[PHP] Re: Weird, weird, weird!

2002-10-08 Thread Jason Young
You're doubling up on your mysql_query's .. the first one runs, and I don't know the ins and outs of PHP, but the second mysql_query causes the resource to not be available... had a similar problem recently. Take the mysql_query out of the $cartquery assignment. -Jason Mike At Spy wrote: > An

[PHP] Re: who's in the chat?

2002-10-10 Thread Jason Young
What's the chat built in? Is this web-page-based, telnet-based? Is this your code (i.e. you have access to the source and can modify it on-the-fly)? Oliver Witt wrote: > Hi all, > Here's my problem: > I created a web site with a chat. People have to log in to get on the > site, but not to get

[PHP] Re: Problems with Fileupload

2002-10-10 Thread Jason Young
Hmm.. I have a page where I can upload up to 9 files at once -- and it works quite well.. However, these are just standard JPG pictures, and wouldn't get anywhere near 3M -- maybe its the way that PHP scripts time out after 30 seconds?? --Jason Sascha Braun wrote: > Hi freaks, > > my image l

[PHP] Re: who's in the chat?

2002-10-10 Thread Jason Young
cookie data or something.. Is this not what you wanted to do? (I guess I should have asked you to elaborate :) ) Just throwing suggestions out there -Jason Oliver Witt wrote: > Jason Young schrieb: > > >>What's the chat built in? Is this web-page-based, telnet-based? >>I

[PHP] Re: who's in the chat?

2002-10-10 Thread Jason Young
liver Witt wrote: > Jason Young schrieb: > > >>Without knowing how your chat works as far as entering the chat, you DO >>have to put some sort of name with the person, right? Perhaps you could >>just update a temp table with their chat name.. >> >>Or if yo

Re: [PHP] Argh! nulls un stuff..

2002-10-14 Thread Jason Young
My suggestion would be to checck for isset($_SESSION["temp"]) and if ($_SESSION["temp"] > "0") with quotes .. PHP is very forgiving with data types, and I've found its much easier to keep track of what exactly is going on if I reference everything in a string format. -Jason Sam Masiello wrote

[PHP] Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
Hey yet again... I've got a 3x3 grid of type 'file' input elements, for a nifty total of 9 upload spaces.. After specifying a file in all 9, and attempting upload, I only got 5.. I noticed the total filesize was 2 megs, so I changed the php.ini to 8.. yet I still got that problem. So I check

[PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
Can't anyone help me with this? :-/ Read below... I wrote: > Hey yet again... > > I've got a 3x3 grid of type 'file' input elements, for a nifty total of > 9 upload spaces.. > > After specifying a file in all 9, and attempting upload, I only got 5.. > I noticed the total filesize was 2 megs, so

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
files at a time?? -Jason Paul Nicholson wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Can you post the values of the post_max_size, upload_max_filesize, > & memory limit ini settings? > ~Paul > > On Tuesday 15 October 2002 03:21 pm, Jason Young wrot

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Jason Young
amount of files that can be uploaded at > once. Could you post the html code for the form? > Note: The post_max_size should be larger than the upload_max_filesize & > the memory limit has to be larger than the post_max_size. > So you should have something like: > upload_max_filesize

[PHP] $_FILES posting limited to 5?

2002-10-16 Thread Jason Young
I'm going to approach this question in a different way, in case some people were put off by the complexity of it yesterday. For all those who don't know my question from yesterday, I have a form where I can upload up to 9 files at a time. Unfortunately, only the first 5 of those files are bein

[PHP] Re: $_FILES limited to 5? (Server versions)

2002-10-16 Thread Jason Young
Just wanted to let everyone know: PHP version is 4.2.1 Apache is 1.3.24 Running WindowsXP Pro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Odd finding while researching $_FILES

2002-10-16 Thread Jason Young
Without going into the process of how I came to do this, I just wanted to throw out there that even if you only have 1 file input, it still seems to loop 5 times... Is this something with my code... -- $current = 0; while (list($key) = each($_FILES['picname'])) { echo $current; $current

Re: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread Jason Young
BEAUTIFUL! This was the problem... it wasn't that there was a limit of 5 maximum uploads, it was just that my 'while' statement was only counting as many fields as the first sub-array for $_FILES.. which is 5. Tom, thanks a bunch! -Jason Tom Rogers wrote: > Hi, > > Wednesday, October 16, 20

Re: [PHP] Blank PHP pages.

2002-10-16 Thread Jason Young
Make sure all of your code is executing properly. I had this problem for a little bit, actually. Edit your php settings to give you errors on the output, or just check your server logs.. there's gotta be something there. Just one problem and my whole PHP page failed to print anything within t

[PHP] Problem with fputs/fgets

2002-10-16 Thread Jason Young
I'm in the process of writing a very very simple web-based email client, just for my personal use, so I can perm-delete all the spam that comes in through the day on my home account before i get home. On the very first connect, its great.. connects, does a 'uidl' which lists all the mail ID's

[PHP] Re: Problem with fputs/fgets - Scratch that.

2002-10-16 Thread Jason Young
Scratch this.. as some of you probably have already picked up on.. I failed to terminate my 'top' line .. Sorry for that 0:) -J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] $_FILES posting limited to 5?

2002-10-16 Thread Jason Young
Yeah, this has been worked out already - turns out I was looping on the file elements themselves (size, name, tmp_name, etc) isntead of the actual number of files. Thanks for your reply tho! :) -J -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/uns

Re: [PHP] Problem with fputs/fgets

2002-10-16 Thread Jason Young
his? It'd be a lot easier and it does work on pop3 servers. > ~Paul > > On Wednesday 16 October 2002 05:02 pm, Jason Young wrote: > >>I'm in the process of writing a very very simple web-based email client, >>just for my personal use, so I can perm-delete all the spa

[PHP] Re: upload files

2002-10-25 Thread Jason Young
I'm not sure of the backwards compatibility, but if you're running PHP 4.2.x (I think? Maybe it came in earlier) .. use the $_FILES global variable, in place of $HTTP_POST_FILES. The array is exactly the same: $_FILES[name_of_file][attributes] Hopefully this helps? -Jason Cyrille Andres wrote

[PHP] Re: displaying flash from db

2002-10-21 Thread Jason Young
Well how exactly are you using this DB? Are you using a 'blob' type format to actually write the flash binary to the database, or are you using it to keep track of where it is in the filesystem? -J Yonatan Ben-Nes wrote: Hi all! Does anyone know where can i find some information about display

Re: [PHP] upload several files

2002-10-29 Thread Jason Young
I was going to post a similar response to this.. but I do recall that Hotmail uses a form where you select the filename and pop it over to a listbox.. then when you submit, it throws all the files into the email.. one page, one form, any number of files (up to 1 or 2 megs, however hotmail's lim

[PHP] Re: Form variables vs Sessions

2002-10-29 Thread Jason Young
Apologies if I'm being too simplistic here, but make sure that your first page's form elements have something similar to: And of course.. that your POST data is being grabbed accordingly by the first page to be able to set those variables. Maybe this helped? -Jason John W wrote: I am havin

[PHP] Re: Upload images to server other than web server?

2002-10-29 Thread Jason Young
Does it have direct access to this filesystem? Or maybe FTP access? I've seen a lot of talk about automatic FTP transfers on the list, maybe you can filter the topics and grab something from there? Just a few cents to throw in :) -Jason Greg Macek wrote: This topic may have been covered before

[PHP] Code Advice

2002-11-06 Thread Jason Young
I (think I) have come up with an interesting little solution for pages that have/can potentially have a lot of get vars, and I just wanted to throw it by everyone to see if I know what I'm talking about... Instead of having a whole bunch of ... "if (isset($_GET['var'])) $var = $_GET['var']" ..

Re: [PHP] Code Advice

2002-11-06 Thread Jason Young
Hmm.. So then can anyone tell me why its working so far? ;) I am trying out every single function in this page in hopes to catch something, but so far I don't see any breakage - I can see there are a few ways to skin this cat.. the original code I posted DOES work.. I still may be blind to an

Re: [PHP] Code Advice

2002-11-06 Thread Jason Young
ly working becuase you have register_globals = ON in your php.ini and those variable names are being set by default. Your posted code is actually doing nothing. What I can't figure is why you're not getting any errors. :-\ -Kevin - Original Message - From: "Jason Young" &

Re: [PHP] Code Advice

2002-11-06 Thread Jason Young
! Thanks to all, apologies for the brain-death. -Jason Ernest E Vogelsinger wrote: At 20:40 06.11.2002, Jason Young spoke out and said: [snip] register_globals is definately off.. Maybe its a PHP miracle, as Ernest suggested.. maybe Rasmus or someone else o

[PHP] Lynx/Apache PHP execution vs. PHP interpreter

2002-11-08 Thread Jason Young
I've got a CallerID program that I've found on Freshmeat.net (elcid, for those keeping track)... I've edited the reporting functions so that instead of throwing it up on the console like it normally does, it instead calls lynx with the -dump parameter to the PHP page, and that in turn puts the

[PHP] Re: arg parsing

2002-11-08 Thread Jason Young
This is a common upgrader's 'register_globals' confusion problem ;-) Basically what it means is that arbitrary values are not parsed in a GET-type request, like your action=new. You must explicitly ask for them.. *I* personally use this (I'm sure others will follow up with their code) at the top

Re: [PHP] How to echo the end marker '?>'

2002-11-08 Thread Jason Young
If you're trying to get a LITERAL ?> Use > for your > symbol so that you have ?> I also noticed you didn't have a Does this help? John W. Holmes wrote: >subject's allready my question ! I want to echo something like : " action = \",?php echo $PHP_SELF ?> \" >" so that the action becomes ec

RE: [PHP] zend studio (erro)

2002-11-11 Thread Brad Young
The Zend Studio comes with both a local debugger (for convenient local-machine / offline debugging) as well as remote server debugger (for 'the real deal'). If you work with the local debugger, the local version of php is used, which includes core php, but not any extensions. The function mssq

[PHP] File Browser

2002-07-12 Thread Darren Young
ntrol (CVS preferred) that would be wonderful. Anyone have any pointers to existing scripts? What would this type of application be called? A document repository perhaps? Thanks in advance, Darren Young [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Convert MySQL table into Access or Excell format

2002-07-12 Thread Darren Young
I seem to remember some Windows application that will do the conversion for you. I believe it's called mysql2access and the other way is access2mysql. IIRC, it's not open/free though. On Sat, 13 Jul 2002, Alex Shi wrote: > The thing is that, the MySQL table resides on a remote web server, my c

Re: [PHP] Convert MySQL table into Access or Excell format

2002-07-12 Thread Darren Young
6 port on their firewall? > > > > > -- > > Jason Wong -> Gremlins Associates -> www.gremlins.com.hk > > Open Source Software Systems Integrators > > * Web Design & Hosting * Internet & Intranet Applications Development * > > > > /* > >

[PHP] Form refresh problem

2001-01-20 Thread Lucas Young
Many thanks Lucas Young -- 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] opinion polling code

2001-01-20 Thread Lucas Young
te is down (www.ralusp.net) thanks in advance Lucas Young -- 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] my cookies arent working!

2001-01-20 Thread Lucas Young
Hi all I think most of the problems I am having with PHP and sample code not working seems to be because cookies arent being generated I'm using php.ini in it's default config Windows 2000 Pro IIS PHP 4.0.4pl1 PHP seems to be working fine otherwise... I did the installshield install then unzipped

RE: [PHP] my cookies arent working!

2001-01-20 Thread Lucas Young
ECTED]] Sent: Sunday, 21 January 2001 4:44 p.m. To: Php-General Subject: Re: [PHP] my cookies arent working! On Sun, Jan 21, 2001 at 04:24:09PM +1300, Lucas Young wrote : > I think most of the problems I am having with PHP and sample code not > working seems to be because cookies arent being gene

RE: [PHP] my cookies arent working!

2001-01-21 Thread Lucas Young
+1300, Lucas Young wrote : > I'm actually using code from the web - sympoll from www.ralusp.net and > authlib, both give me errors and neither seems to be writing cookies... I > note in PHP the session save path is /tmp, where should this folder live? Where you think its best

[PHP] Re: php propaganda request

2001-05-16 Thread Sara Young
There are also PHP case studies at http://www.zend.com/zend/cs/ Sara On 15 May 2001, at 8:27, Philip Olson wrote: > > Greetings PHP friends, > > I'm compiling a list of PHP related propaganda, please send any that you > know of. Positive, Negative, Neutral ... all is welcome! ;-) Thus far :

[PHP] A Problem With Loops

2002-01-10 Thread Ash Young
that PHP scripts on my web host have a max 60sec execution time but it is not getting anywhere near that time. Any one have any ideas what I'm doing wrong? Cheers, Ash Young -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

RE: [PHP] A Problem With Loops

2002-01-10 Thread Ash Young
for. However it will iterate the the correct amount if it never chooses a if statement. That make sense? The posted below, sorry there is quite a lot of it in the for loop :) Cheers, Ash Young for($n=3;$n") - $pos[MESSAGE]-1); // See if it exists already in our nicklist array

[PHP] Re: Any banner system?

2001-07-10 Thread Sara Young
There are some ad banner systems at the Zend.com's Applications section: http://www.zend.com/apps.php?CID=35 Sara On 9 Jul 2001, at 13:49, José León Serna wrote: > Hello: > I would like to know if there's a PHP Banner system with the following > features: > -Allow insert the banners anywhe

[PHP] Re: php chat

2001-07-10 Thread Sara Young
There are some Chat Programs at Zend.com's Applications Section: http://www.zend.com/apps.php?CID=240 Try also: http://www.zend.com/codex.php?CID=272 Sara On 9 Jul 2001, at 14:24, Jack wrote: > Hi all > is there anyone know where can I get a good php chat programme? > Jack > [EMAIL PROTECTED]

RE: [PHP] Embedding JavaScript into a PHP generated web page

2004-07-25 Thread Ash Young
Are you getting any error message at all or is the JavaScript just failing? If your receiving a PHP error, are you sure you've escaped all the quotes in the JavaScript? -- ash young :: http://evoluted.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Question about for

2004-07-25 Thread Ash Young
You could try for ($i=1;$i<11;$i=$i+2) -- ash young :: http://evoluted.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Embedding JavaScript into a PHP generated web page

2004-07-25 Thread Ash Young
I'd suggest putting some new line characters in after the '; ?> ... echo ' '; As soon as I hit the button 'Window' I get an ''object expected" error. Any thoughts? Rob "Robert Frame" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > After I posted this I did some more searching o

[PHP] CLI [Lack of] Performance on Windows

2009-02-01 Thread Jason Young
I'm not much for running PHP on Windows, but I thought that many of the performance issues had been worked out... However, I'm trying to run a PHP through CLI and having a terrible experience with speed. This is running Windows Server 2008 (with a Quad-Core Intel, 4 GB of RAM). My problem in

[PHP] Getting backtrace through GDB?

2009-08-26 Thread Jason Young
these so I can better help the PECL developer this is needed for. Thanks for any insight or suggestions you can give! -Jason Young -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Getting backtrace through GDB?

2009-08-27 Thread Jason Young
Anyone, anyone? Bueller? :P I'm sure someone has experience with GDB? I'm not looking for a newbie primer, I'm just curious if anyone has had experience with the problem below and knew how to correct it.. Thanks :) Jason Young wrote: Hi all, I'm trying to follow

Re: [PHP] this has got me baffled: imagesx() andimagesy()reporting the wrong size?

2009-11-16 Thread Jason Young
Indeed. Using ImageMagick's 'identify' command, the first layer is 30x24 on a 32x32 canvas. radioactive-bread-eek.gif[0] GIF 30x24 32x32+2+6 8-bit PseudoClass 256c 2.11kb radioactive-bread-eek.gif[1] GIF 32x27 32x32+0+4 8-bit PseudoClass 256c 2.11kb If getimagesize() works on the canvas, the

[PHP] How to make program execution go to another file?

2004-05-20 Thread michael young
Hi, I want program execution to go to one of several other files based on a decision. For Example. if (1==a) go to this .php file if (1==b) go to that .php file if (1==c) go to the other .php file Thank you for your time. Michael -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] How to make program execution go to another file?

2004-05-21 Thread michael young
if executed and the file does not exist. You can, of course use; if(file_exists("this.php")) include("this.php"); to suppress any warning at all. Warren Vail -Original Message- From: michael young [mailto:[EMAIL PROTECTED] Sent: Thursday, May 20, 2004 2:12 PM To: [EMAIL

[PHP] clearing new pages

2004-05-26 Thread michael young
Hi, a file called a.php prints "hello" to the browser then calls b.php which prints "goodbye" to the browser. the output looks like this: hello goodbye how do I clear the screen so the end results looks like this: goodbye -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] html area

2006-02-28 Thread Grant Young
Tiny_MCE is another fairly simple editor - although I've experienced some quirks that can be quite annoying/tricky. http://tinymce.moxiecode.com/ Regards, Grant -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] About date & time...

2006-02-28 Thread Grant Young
Hi Gustav. I'm a swede, and I we use hours 0 - 24. 8 pm = 20 for us. 9 pm = 21 for us 10 pm = 22... and so on... But with date()-function there is 10 pm that shows (and I want 22 to show instead) I'm using PHP 4.0.3... Do I have to use getdate() then? (getdate()-function showed 22...)

Re: [PHP] Where can I find nice Web icons for custom admin interface?

2006-03-02 Thread Grant Young
Hi Nicolas. I've collected some pointers over the past few months to royalty free icons and designers at: http://del.icio.us/braquin/icons HTH. Regards, Grant -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] DB calls vs Session solution

2006-03-13 Thread Grant Young
Hi Jochem. the nice thing about programming with my 'data framework' is that its very generic, flexible and interspective (generating abitrarily complex sql/html/? from objects) ... which comes with a great cost. so I have code that is really very very heavy but if you consider the (complete|di

[PHP] Merging two partially-transparent images results in black pixels

2006-03-18 Thread Jason Young
rtransparent on portions that are definitely transparent in Photoshop, etc. Any help would be much appreciated! Thank you -Jason Young -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Get class name in static method

2006-03-20 Thread Grant Young
Not sure about PHP5, but for PHP4 I found this hack solution at: http://passivedigressive.com/archives/2005-02/php-static-class-name-solution/ There are probably all sorts of issues with this approach, but it solved the problem at the time... HTH. Grant -- PHP General Mailing List (http://ww

Re: [PHP] Best authentication method for user

2006-04-03 Thread Grant Young
Hi Alain. On the authentication front, you can use HTTP basic authentication for this kind of thing too - and it means you're not having to re-invent the wheel in a lot of ways. The Auth_HTTP PEAR module makes this pretty simple to implement: http://pear.php.net/package/Auth_HTTP/ You can i

  1   2   >