Re: [PHP] (ANNOUNCE) New PHP mailing list *searchable* archives

2003-10-21 Thread bigdog
- Edwin - wrote: Sort of a PHP-AI eh? :) Hmm... I don't think that's a bad idea at all, but... I wonder how you'd deal with new messages/posts/questions which: 1. Real people don't even understand, and 2. Real posters don't even understand what they're asking. Well, that's, of course,

Re: [PHP] (ANNOUNCE) New PHP mailing list *searchable* archives

2003-10-21 Thread bigdog
Robert Cummings wrote: I think this is great but have one bit of hopefully constructive criticism... the horizontal real estate is too small, or the font is too large, I find the content wraps terribly :/ Cheers, Rob. Hi Rob-- True. Alas, it has to fit in our design, so one of the

Re: [PHP] making php and perl talk to each other...

2002-11-19 Thread BigDog
If you are running them as commandline apps you can just pipe | the output to another program i.e. phpapp.php | perlapp.pl That should work as long as you deal with the arguments properly... On Tue, 2002-11-19 at 09:50, Kelly Meeks wrote: Is there any way to get a php script to grap the

Re: [PHP] Header Location not working

2002-11-19 Thread BigDog
What browsers are having the problems? On Tue, 2002-11-19 at 15:36, Baumann Reto wrote: Hi all Does somebody know if there is a potential problem with Header(Location: ); not working properly? I have a redirection, but it seems that on some browser, this doesn't work. Instead of

Re: [PHP] Post Problem

2002-11-18 Thread BigDog
That is what you should be getting right? When you have a select statement that has a value as the first one then that is what you will get when you post or get the form. if you want a blank one then do option/option and that should not pass anything in the post or get... On Mon, 2002-11-18

Re: [PHP] explicit dot in open_basedir

2002-11-18 Thread BigDog
The explicit dot is to tell the system that you want the current working directory. So by saying ./tmp you want the tmp (directory or file) that is located in the current working directory. If i understand what you are saying is that ./tmp is a directory in the current working directory. If

Re: [PHP] echoing date of first and last day of current week.

2002-11-18 Thread BigDog
Probably the best way is to convert the times all into seconds and then do the math to get the last day of the week. Should be relatively easy... HTH On Mon, 2002-11-18 at 05:57, Noodle Snacks wrote: I want to get the unix timestamps of the first and last days of this week... Currently I

Re: [PHP] Post Problem

2002-11-18 Thread BigDog
What does the entire form look like? On Mon, 2002-11-18 at 17:43, Dave J. Hala Jr. wrote: I selected the option that would have the value 4, what I get is 4SQN=4 I should get just the value 4 On Mon, 2002-11-18 at 04:33, BigDog wrote: That is what you should be getting right

Re: [PHP] Post Problem

2002-11-18 Thread BigDog
WIDTH=11% bgcolor=66 font face= arial size =3a HREF=https://122.192.204.199/logout.php;Logout/a/td/font /tr /table br /font /body /html On Mon, 2002-11-18 at 04:44, BigDog wrote: What does the entire form look like? On Mon, 2002-11-18 at 17:43, Dave J. Hala

Re: [PHP] is this not possible?

2002-11-18 Thread BigDog
No... Javascript need to send that data back to the server and how are you going to do that? You will have to use a form or a link or some method to send it to the server. Now you can use php to write your javascript code that can be used to link to a php file that can be run on the client side

Re: [PHP] Display cell if dates are between 2 dates - help

2002-11-16 Thread BigDog
This is how i deal with dates... $date = date in the database. $today = strtotime( gmdate( Y-m-d ) ); $spd= 60 * 60 * 24; // seconds per day $fdate = strtotime( substr( $date, 0, 10 ) ); $future = ( $fdate - $today ) / $spd; do the comparision with $future and it

Re: [PHP] Register_globals = off-compliant form class?

2002-11-16 Thread BigDog
try using pear... On Sat, 2002-11-16 at 22:53, Leif K-Brooks wrote: I'm looking for a good class for forms that will work with register_globals off. I was planning to modify Manuel Lemos's class, but it turned out to be too big of a task. Any ideas? -- The above message is encrypted

Re: [PHP] Javascript + PHP

2002-11-15 Thread BigDog
http://groups.google.com/groups?hl=enlr=ie=UTF-8group=comp.lang.javascript On Fri, 2002-11-15 at 23:07, SED wrote: I need to finish a project using PHP and JavaScript but the references for JavaScript I'm using is rather old. I'm looking for a JavaScript postlist similar to this but without

Re: [PHP] LDAP specific?

2002-11-14 Thread BigDog
Why can u not do a page that displays the images as img src? That should work for ya...instead of sending the headers. Are u saving the image in the ldap server? On Thu, 2002-11-14 at 09:27, Tony Earnshaw wrote: People, I'm trying to produce a book of mugs (a 'mug' is a 'face') for people

Re: [PHP] LDAP specific?

2002-11-14 Thread BigDog
This is how I do it. I create a php page that gets the image and sends the correct header. Then in my other php page that displays the details about a user i call img src=showperson.php?name=$fullname. Then in showperson i send the correct image headers and the image is displayed properly.

Re: [PHP] how to generate ms-word files

2002-11-14 Thread BigDog
You might want to do a search on google and see if someone has written a class on creating word documents. I am almost certain that someone has created on. This will save you much time... On Thu, 2002-11-14 at 12:34, michael wrote: hello I'm trying to generate ms-word files with php. Until

Re: [PHP] passing multiple variables in a url

2002-11-14 Thread BigDog
Does this not work... a href=contactus.php?email=directorsubject=job enquiry On Thu, 2002-11-14 at 14:11, CJ wrote: I have a contact us php script on my site that allows users to email direct from the webiste. I want to be able to pass the to address and subject line to the script so I can

Re: [PHP] PHP Auth with Apache

2002-11-14 Thread BigDog
Ed, When you do auth with mysql and they succeed then u can set the $_SERVER['PHP_AUTH_USER'] and in theory that should allow you to connect to the directory because that should be set for apache http authentication. You might have to play with it, but i am sure you can get it to work. On Thu,

Re: [PHP] PHP Auth with Apache

2002-11-14 Thread BigDog
On 14 Nov 2002, BigDog wrote: Ed, When you do auth with mysql and they succeed then u can set the $_SERVER['PHP_AUTH_USER'] and in theory that should allow you to connect to the directory because that should be set for apache http authentication. You might have to play

Re: [PHP] PHP apache module question

2002-11-14 Thread BigDog
When you compile php + apachemany people have php as a DSO. So there is no actual binary file in a bin directory that is called. You can also have php as a module that is in the apache core, where it is loaded automatically in apache (not a DSO). You can run php as a cgi which uses the

Re: [PHP] STDIN question

2002-11-14 Thread BigDog
You would have to pass it through the get method... You can only pass stdin to the binary... On Thu, 2002-11-14 at 20:05, Mike D wrote: Is it possible to pass STDIN data to a php script via wget or lynx (cuz Apache is not installed in CGI mode, so I don't have a binary to call)?? I am

Re: [PHP] STDIN question

2002-11-14 Thread BigDog
There sys admins just do not want to deal with it... On my box i have about 2-3 versions of php and 2 version of apache at any given moment... but it can get confusing sometimes... :) On Thu, 2002-11-14 at 20:27, Mike D wrote: Thanks for the feedback BigDog and Jason Wong (you guys rock

Re: [PHP] Error uploading a file

2002-11-14 Thread BigDog
Are you sure that the size is specified correctly? I remember that i have but down 32 for mb when really it takes bytes as the number so i had 32 bytes which sucked for me... On Thu, 2002-11-14 at 20:36, Emiliano Marmonti wrote: Hello all, when I try to upload a file I receive the

RE: [PHP] PHP Auth with Apache

2002-11-14 Thread BigDog
You are sending the header information to the browser before the session stuff begins... make sure that you call session_start(); right after your ?php start tag... On Thu, 2002-11-14 at 21:50, Ysrael Guzmán wrote: I have a problem, i'm new in PHP It is the problem in my browsegive me

Re: [PHP] Re: Authentication with PHP and HTTP

2002-11-14 Thread BigDog
Just never do it period...that is the best habit to have... That is poor coding on the programmers part... On Fri, 2002-11-15 at 00:59, Maxim Maletsky wrote: using this method for a production environment is incredibly vulnerable. Just think of having a link on that page to some other site (or

Re: [PHP] Unsetting Array Element

2002-11-13 Thread BigDog
In theory the memory should be free and the array should be smaller... On Wed, 2002-11-13 at 07:11, Monty wrote: Does unsetting an array element make the array smaller? For example, if I have two elements in an array... $array = (title = Title of Document, content = Ten

Re: [PHP] PHP Installation on Redhat 8 - General Questions

2002-11-13 Thread BigDog
What you need to do is go into your apache_1.3.26/src/modules/php4 directory and and clean out the libphp files. 1. Stop apache. 2. Remove lib files from apache_1.3.26/src/modules/php4 3. Do a make clean in apaches top dir. 4. Do a make clean in php top dir. 5. Remove config.cache in php dir. 6.

Re: [PHP] PHP include dir

2002-11-13 Thread BigDog
yeah, include_path =path this allows you to put scripts in other places out side the web document tree. For example: lets say you have configuration files that contain all your database passwords...you can put the document in a directory like /usr/local/php/config_scripts and add that directory

Re: [PHP] Re: Open Source Presentation Tool

2002-11-13 Thread BigDog
Did all this really have to be sent to the list? On Wed, 2002-11-13 at 22:28, Rasmus Lerdorf wrote: If you don't care that I (or anybody else) can evaluate the presentations generated by your tool why did you bother to follow up my message in the thread when I exposed my evaluation of

Re: [PHP] Query problem

2002-11-12 Thread BigDog
In your php.ini file you can turn on all the errors have have them displayed... I would suggest doing that and you should see some errors if there are any. Have you verified that dates in the database via mysql command line or gui application. On Tue, 2002-11-12 at 21:27, Cesar Aracena wrote:

Re: [PHP] ldap strong authentication

2002-11-12 Thread BigDog
What type of strong authentication does it want? Do you need to connect via ssh or something... On Tue, 2002-11-12 at 22:13, Karim Jafarmadar wrote: hello I want to connect to a local NDS via LDAP, but when i try to bind i get the error: Unable to bind: Strong authentication required

RE: [PHP] Mcrypt Under IIS 5 / Win32?

2002-11-12 Thread BigDog
Can u not get it from php.net...the zip file that contains all the extensions and dlls...not the installer... That should have the one that you need. I am still thinking it is an issue with the path...it took me about a week to get it all working... On Tue, 2002-11-12 at 23:08, Nick Richardson

Re: [PHP] ldap strong authentication

2002-11-12 Thread BigDog
to bind to server: No such Object in ... i am running this thing on a debian box with php4 and openldap-tls installed bye karim jafarmadar On 12 Nov 2002 17:13:17 + BigDog [EMAIL PROTECTED] wrote: What type of strong authentication does it want? Do you

Re: [PHP] ldap strong authentication

2002-11-12 Thread BigDog
BigDog [EMAIL PROTECTED] wrote: You have two problems it seems. 1. Wrong connection security...now you are using ldaps 2. Now you have the incorrect rdn. Oh .. i get it you mean the second error is due to a ldap/nds problem but i got the connection right when you tried

[PHP] Re: snmp_set_quick_print or snmpwalkoid issue ?

2002-05-02 Thread Ray \BigDog\ Hunter
Basically you are not going to get the value type of the snmp, ie OID, timeticks, integers, etc.. Ray Hunter Razvan Cosma [EMAIL PROTECTED] wrote in message Pine.LNX.4.44.0205011203110.32753-10@mach2">news:Pine.LNX.4.44.0205011203110.32753-10@mach2... First of all, gretings to

[PHP] CURL Users

2002-05-02 Thread Ray \BigDog\ Hunter
Has anyone every used curl to do something similar to wget on linux? BigDog -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php