RE: [PHP] Installing mcrypt

2003-11-12 Thread Mike R
There has only been one version of libmcrypt (new server), so I'm not sure why it thinks there is a 2.5.6 version on it. Where do I find the LD_LIBRARY_PATH enviroment variable to change it? Or is there another solution? I had a similiar problem recently when trying to install

RE: [PHP] Installing mcrypt

2003-11-12 Thread Mike R
-Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 12:33 PM To: Mike R Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Installing mcrypt Mike R wrote: That was it. :) Problem is, I'm getting a different error now

[PHP] Getting an uploaded picture

2003-11-12 Thread Mike R
I wrote a script that uploads pictures and writes them to a particular directory on a server. Then I wrote a script that shows a list of what pictures are in the directory and creates a link to the picture. Everything seems to spit out from the list just fine, but the links do not work. Not

[PHP] php compile....

2003-11-12 Thread Mike R
I'm compiling php (4.3.4) on a server with linux (different server than my other post), and the config, make, and make install all seem to go fine (no errors or special messages). No go on PHP, though. Restarted apache, but nothing. Should I reboot the server? Any other possibilities? Thanks

RE: [PHP] Getting an uploaded picture

2003-11-12 Thread Mike R
[snip] Then I wrote a script that shows a list of what pictures are in the directory and creates a link to the picture. Everything seems to spit out from the list just fine, but the links do not work. Not because the html in them is wrong, but when you right-click on the picture to save

RE: [PHP] php compile....

2003-11-12 Thread Mike R
-Original Message- From: Jay Blanchard [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 3:32 PM To: Mike R; [EMAIL PROTECTED] Subject: RE: [PHP] php compile [snip] In what way would I have to modify it? I've compiled before without any issues

RE: [PHP] Getting an uploaded picture

2003-11-12 Thread Mike R
From: Mike R [EMAIL PROTECTED] I thought about that, but figured I'd ask first - particularly since I wasn't sure which code to send: the code for uploading the pictures or the code that displays the pictures/links to them? Show the code that displays the links to them and some

RE: [PHP] php compile....

2003-11-12 Thread Mike R
[snip] Yeah, got that as: AddType application/x-httpd-php .php AddType application/x-httpd-php .html AddType application/x-httpd-php .phtml And the DirectoryIndex stuff is there, too. [/snip] So, all of that is there, yet PHP does not work? After you compiled PHP did you restart

[PHP] Microsoft .NET arguement

2003-11-17 Thread Mike R
I have someone here at my desk arguing that Microsoft's .NET is better than PHP - faster to process, easier and quicker to program, etc. They also (claim) that Microsoft's SQL is much faster and such vs. MySQL. Any comments to help me defend PHP or to educate me? :) -Mike -- PHP General

RE: [PHP] Microsoft .NET arguement

2003-11-17 Thread Mike R
) is a secure environment -- just the place to run your important applications. -- Original Message -- From: Mike R [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Monday, November 17, 2003 11:06:37 AM -0500 Subject: [PHP] Microsoft .NET arguement I have someone here

RE: [PHP] Microsoft .NET arguement

2003-11-17 Thread Mike R
, I disagree. Its about the same, and in some cases, PHP might have a few more shortcuts. Maybe they're using some visual editors to speed them up? -Dan Joseph -Original Message- From: Mike R [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 11:07 AM

[PHP] jpeg Uploader issue

2004-01-09 Thread Mike R
I am having an issue where a user with a MAC can't see jpegs uploaded to a web site I built. They are getting some sort of corrupt file indicator. All PC users are fine from what I gather. I saw only one reference to this on the web in a forum, and it lead to no particular answer; just a few

RE: [PHP] Re: jpeg Uploader issue

2004-01-12 Thread Mike R
i had a problem like the one you descriped. The problem was quite simple. In my case everything worked fine with Windows-Web-Browsers but not with MAC-Browsers. Check the value of the filetype variable. There might be differences between different plattforms. I'm sorry to sound stupid

RE: [PHP] Re: jpeg Uploader issue

2004-01-12 Thread Mike R
On Mon, 12 Jan 2004, Mike R wrote: i had a problem like the one you descriped. The problem was quite simple. In my case everything worked fine with Windows-Web-Browsers but not with MAC-Browsers. Check the value of the filetype variable. There might be differences between different

RE: [PHP] Re: jpeg Uploader issue

2004-01-13 Thread Mike R
On Mon, 12 Jan 2004, Mike R wrote: i had a problem like the one you descriped. The problem was quite simple. In my case everything worked fine with Windows-Web-Browsers but not with MAC-Browsers. Check the value of the filetype variable. There might be differences between different

RE: Re[2]: [PHP] Re: jpeg Uploader issue

2004-01-13 Thread Mike R
Hello Mike, Tuesday, January 13, 2004, 2:55:44 PM, you wrote: In PHP you would set the Content-type header like so: header(Content-type: image/jpeg); MR So, should I write that header to the actual image file prior to the image MR itself? You should output it to the browser prior to

[PHP] payflowpro problem

2004-01-13 Thread Mike R
Does anyone know if there are particular settings in php 4.3.4 that prevent payflowpro from responding properly? I'm getting 'Amount mismatch' when I run my function - which runs on other sites and ips just fine (i.e. I can move the exact code over there and it works fine) - but it doesn't seem

RE: Re[4]: [PHP] Re: jpeg Uploader issue

2004-01-13 Thread Mike R
Sinc the link goes directly to the picture, how do I apply the header first? Should I apply it in the html page the link is on? :) Thanks! -Mike Hello Mike, Tuesday, January 13, 2004, 5:31:47 PM, you wrote: MR That's what I kind of thought, but this is a case where the browser is MR

RE: Re[4]: [PHP] Re: jpeg Uploader issue

2004-01-15 Thread Mike R
Since the link goes directly to the picture, how do I apply the header first? Should I apply it in the html page the link is on? :) Thanks! -Mike Hello Mike, Tuesday, January 13, 2004, 5:31:47 PM, you wrote: MR That's what I kind of thought, but this is a case where the browser is

[PHP] Really Annoying Require/Include Error

2004-03-30 Thread Mike R
I am getting this error: Fatal error: Failed opening required '/home/sites/site111/web/news/settings/newsletter.settings.inc.php' (include_path='') in /home/sites/site111/web/news/forms/sign_in_out_form.inc.php on line 7 From this piece of code: require

RE: [PHP] Re: Really Annoying Require/Include Error

2004-03-30 Thread Mike R
-Original Message- I am getting this error: Fatal error: Failed opening required '/home/sites/site111/web/news/settings/newsletter.settings.inc.php' (include_path='') in /home/sites/site111/web/news/forms/sign_in_out_form.inc.php on line 7 From this piece of code:

[PHP] PHP Apache Version

2004-04-30 Thread Mike R
Is there a version of Apache 2+ that now works with PHP? Last I checked, the were incompatible, but recently someone I ran into claimed that the bugs have been for such a setup. :) Thanks, -MIke -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Value in URL issue

2004-06-16 Thread Mike R
I have an issue where I have a value in a link like this: http://www.something.com/templates/nav.php?page=about But when the link is clicked on, the value of page is empty. Is this a globals issue of some sort? Thanks, -Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Re: Value in URL issue

2004-06-16 Thread Mike R
Both $_GET['page'] and print_r($_REQUEST) come up empty! No results at all. :\ -Mike -Original Message- From: Torsten Roehr [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 3:44 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: Value in URL issue Mike R [EMAIL PROTECTED

RE: [PHP] Re: Value in URL issue

2004-06-16 Thread Mike R
I only get 'NULL' when I do that. Sort of interesting. -Mike -Original Message- From: Matt Grimm [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 4:10 PM To: Mike R Subject: Re: [PHP] Re: Value in URL issue Try this at the top of nav.php (before any other code

RE: [PHP] Value in URL issue

2004-06-16 Thread Mike R
the ? in your url. - Original Message - From: Mike R [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 1:45 PM Subject: [PHP] Value in URL issue I have an issue where I have a value in a link like this: http://www.something.com/templates/nav.php?page=about

RE: [PHP] Value in URL issue

2004-06-17 Thread Mike R
PROTECTED] Subject: Re: [PHP] Value in URL issue Maybe you should post all the relevant code. - Original Message - From: Mike R [EMAIL PROTECTED] To: Gabino Travassos [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 2:36 PM Subject: RE: [PHP] Value in URL issue

[PHP] Re-compiling PHP

2004-10-21 Thread Mike R
I am trying to re-compile php, but keep getting erros that the mysql extensions are not installed. I got the binary from php.net and included mysql in configure (following). What am I not doing correctly? ./configure '--prefix=/usr/local' '--enable-exif' '--enable-track-vars'

RE: [PHP] Re-compiling PHP

2004-10-21 Thread Mike R
Mike R wrote: I am trying to re-compile php, but keep getting erros that the mysql extensions are not installed. I got the binary from php.net and included mysql in configure (following). What am I not doing correctly? You're trying to compile the binaries? Sorry, the tar'd file I

RE: [PHP] Re-compiling PHP

2004-10-21 Thread Mike R
Sorry, no, its PHP 4.3.9 - and I am upgrading from 4.1.2. I have mysql installed and have been using it. I'll see if I can put something in about the exact location of the libs. Any other suggestions out there? :) Thanks, -Mike Mike R wrote: Mike R wrote: I am trying to re

RE: [PHP] Re-compiling PHP

2004-10-21 Thread Mike R
:[EMAIL PROTECTED] Sent: Thursday, October 21, 2004 2:56 PM To: Mike R Cc: John Nichel; [EMAIL PROTECTED] Subject: RE: [PHP] Re-compiling PHP On Thu, 2004-10-21 at 14:52 -0400, Mike R wrote: Mike R wrote: I am trying to re-compile php, but keep getting erros that the mysql

RE: [PHP] Re-compiling PHP

2004-10-21 Thread Mike R
On Thu, 21 Oct 2004 15:35:09 -0400, Mike R [EMAIL PROTECTED] wrote: Even after re-compiling with the location of the mysql headers, it still won't work. :\ Pretty discouraging. What version of PHP did they start dropping the libraries? Maybe I need to just upgrade to that version

RE: [PHP] Re-compiling PHP

2004-10-22 Thread Mike R
On Thu, 2004-10-21 at 16:05 -0400, Mike R wrote: On Thu, 21 Oct 2004 15:35:09 -0400, Mike R [EMAIL PROTECTED] wrote: Even after re-compiling with the location of the mysql headers, it still won't work. :\ Pretty discouraging. What version of PHP did they start dropping

[PHP] php paypal

2004-07-27 Thread Mike R
Does anyone know if it is possible to pass a variable in the URL to the return page when using paypal? Meaning, when someone is done a transaction in paypal and they return the merchant's site, can a variable be passed all of the way through back to the merchant's site? :) -Mike -- PHP

RE: [PHP] php paypal

2004-07-27 Thread Mike R
, -Mike Might be easier to use session vars to track whatever it is your tracking. Jason On Tue, 27 Jul 2004 11:11:31 -0400, Mike R [EMAIL PROTECTED] wrote: Does anyone know if it is possible to pass a variable in the URL to the return page when using paypal? Meaning, when someone