[PHP] upload_max_filesize

2006-01-24 Thread Daniel Lahey
A client has started experiencing problems with uploading files larger than the default 2M set in php.ini. The problem only started occurring a few weeks or so ago, and I cannot figure out how to get around it. I have a php.ini file in the /public_html folder that reads: post_max_size

Re: [PHP] Help Desk software

2005-12-21 Thread Daniel Lahey
, at 12:05 AM, [EMAIL PROTECTED] wrote: Daniel Lahey said the following on 12/20/2005 10:28 PM: Can anyone recommend some good Open-Source Help Desk software for PHP? Glenn Sieb said: IMHO the best is RT, which is Perl and Mason. (http://www.bestpractical.com/rt) There are some nice PHP ones

[PHP] Help Desk software

2005-12-20 Thread Daniel Lahey
Can anyone recommend some good Open-Source Help Desk software for PHP? (I know this is a little off-topic, but I'm having a hard time finding decent Open Source software.) TIA -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Getting values from the Javascript namespace

2005-03-27 Thread Daniel Lahey
Is there any way to get values from the Javascript namespace into PHP? I want to use a value passed into a Javascript function in a query within some PHP code in the function which is used to dynamically populate a select's options. TIA -- PHP General Mailing List (http://www.php.net/) To

[PHP] getid3

2005-01-27 Thread Daniel Lahey
I found a really great utility for getting info on music files that I thought I'd share. Here's the info: / /// getID3() by James Heinrich [EMAIL PROTECTED] // // available at http://getid3.sourceforge.net

Re: [PHP] php editor

2005-01-17 Thread Daniel Lahey
I use Dreamweaver and I absolutely love it. It's a bit pricey, though. In the latest newsletter from Apple Developer Connection, there is a notice about skEdit, which is only $20. It looks pretty nice, though I haven't tried it. Eclipse is very good, too, and it's free (phpEclipse is an

[PHP] Using SSL

2005-01-02 Thread Daniel Lahey
I've posted about this before, and I guess I'm just thick, but I'm just not getting it. I need to implement secure transactions for a client, but I just can't figure out how to open a page with an https prefix. The server has mod-ssl and OpenSSL compiled into it: Apache/1.3.33 (Unix)

[PHP] Using SSL

2004-12-13 Thread Daniel Lahey
Can anyone point me to a good source of information for how to use SSL with PHP? I know it's not quite on-topic, but perhaps someone could point me at a good source of info? TIA -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Question for the PHP consultants out there.

2004-11-12 Thread Daniel Lahey
What web based software project management tool do you use to keep track of projects, project tasks, customer requests, and bug reports? You might try Ace Project: http://www.aceproject.com/ An error is the more dangerous in proportion to the degree of truth which it contains. - Henri Frederic

[PHP] Re: Advice on imagecreatefromsrc_type

2004-11-04 Thread Daniel Lahey
I find it hard to believe that your choice of browser affects the operation of PHP. Where is this report? I may have been mistaken about the report: Windows versions of PHP prior to PHP 4.3.0 do not support accessing remote files via this function, even if allow_url_fopen is enabled. (Found

[PHP] Advice on imagecreatefromsrc_type

2004-11-03 Thread Daniel Lahey
I've encountered the same bug that others have in regards to failure of the imagecreatefromjpeg(), imagecreatefrompng(), and imagecreatefromgif() functions when running under IE. I found a report stating that the functions don't work in IE for PHP versions prior to 4.3.0, however this is

[PHP] move_uploaded_file() problem

2004-10-08 Thread Daniel Lahey
I'm seeing a very strange problem with move_uploaded_file(...). I'm uploading jpegs and the transfer appears to go a little too quickly, and when I look at the directory listing, the files are about twice the size that they should be. When we view the file in the browser, the images are either

[PHP] Regular expression help

2004-08-25 Thread Daniel Lahey
I'm trying to figure out how to formulate a regular expression that will get me everything following a pound sign (#) up to the first space or { character. (I'm trying to parse the ids out of a style sheet.) Can anyone point me in the right direction? I've been searching on the web for