[PHP-WIN] attachment with pdf files

2003-11-13 Thread Disko_kex
Hi again.. I have a really strange problem when I sending emails with attachment. With regualar text files, images etc it works fine but with pdf files it wont work. I also tried with MIME E-mail message composing and sending class from phpclasses.org. When I compared the orginal file with the

php-windows Digest 13 Nov 2003 09:31:58 -0000 Issue 1997

2003-11-13 Thread php-windows-digest-help
php-windows Digest 13 Nov 2003 09:31:58 - Issue 1997 Topics (messages 22080 through 22081): PHP mkdir with IIS and network share 22080 by: Dang Nguyen attachment with pdf files 22081 by: Disko_kex Administrivia: To subscribe to the digest, e-mail: [EMAIL

Re: [PHP-WIN] attachment with pdf files

2003-11-13 Thread Eric COLINET
Maybe you have to set magic_quotes_runtime (in php.ini) to false. But it's a strange issue. Regards, Eric At 10:35 13/11/2003, Disko_kex wrote: Hi again.. I have a really strange problem when I sending emails with attachment. With regualar text files, images etc it works fine but with pdf files

[PHP-WIN] JPgraph

2003-11-13 Thread Rinku Shivnani
Dear all, Pls guide me on how to install jpGraph library in the server and from which URL ? Expecting your prompt response. Regards, Rinku -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] attachment with pdf files

2003-11-13 Thread Disko_kex
I had magic_quotes_runtime = On, I turned it Off and now it works fine, Big thanks -Original Message- From: Eric COLINET [mailto:[EMAIL PROTECTED] Sent: den 13 november 2003 10:38 To: Disko_kex; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] attachment with pdf files Maybe you

Re: [PHP-WIN] JPgraph

2003-11-13 Thread Ignatius Reilly
http://www.aditus.nu/jpgraph/ _ - Original Message - From: Rinku Shivnani [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 13, 2003 10:45 AM Subject: [PHP-WIN] JPgraph Dear all, Pls guide me on how to install jpGraph library in the server and

[PHP-WIN] Fatal error, but include_path seems correct?

2003-11-13 Thread Roderick Martin
My setup: PHP 4.0.6 Windows NT 4.0 Netscape-Enterprise/3.6 SP3 Installed phpMyAdmin to the root of the server, which is d:/Netscape/SuiteSpot/docs/phpMyAdmin254/ I get the error: Fatal error: Failed opening required './libraries/grab_globals.lib.php'

Re: [PHP-WIN] Fatal error, but include_path seems correct?

2003-11-13 Thread Eric COLINET
Try : D: \Netscape\SuiteSpot\docs\phpMyAdmin254 Instead of : D: \Netscape\SuiteSpot\docs\phpMyAdmin254\libraries for your include path. Eric At 16:34 13/11/2003, Roderick Martin wrote: My setup: PHP 4.0.6 Windows NT 4.0 Netscape-Enterprise/3.6 SP3 Installed phpMyAdmin to the root

Re: [PHP-WIN] Fatal error, but include_path seems correct?

2003-11-13 Thread Roderick Martin
Tried it. Same error message... Fatal error: Failed opening required './libraries/grab_globals.lib.php' (include_path='.;c:\php4\pear;D:\Netscape\SuiteSpot\docs;D: \Netscape\SuiteSpot\docs\phpMyAdmin254') ind:/Netscape/SuiteSpot/docs/phpMyAdmin254/index.php on line 9 On Nov 13, 2003, at

Re: [PHP-WIN] Session configuration

2003-11-13 Thread PETCOL
David, I too had the same problem, once I put the session_start(); outside the HTML html tag it's now gone away, but, using this code which is in a tutorial, I get these errors: Start Code ++ ?php session_start(); ? !DOCTYPE HTML PUBLIC -//W3C//DTD HTML

php-windows Digest 13 Nov 2003 22:56:35 -0000 Issue 1998

2003-11-13 Thread php-windows-digest-help
php-windows Digest 13 Nov 2003 22:56:35 - Issue 1998 Topics (messages 22082 through 22089): Re: attachment with pdf files 22082 by: Eric COLINET 22084 by: Disko_kex JPgraph 22083 by: Rinku Shivnani 22085 by: Ignatius Reilly Fatal error, but include_path

[PHP-WIN] COM Hangs Script if another Script is doing something at the same time

2003-11-13 Thread Scott Carr
Long subject but, it's a weird problem. I am running a system that has 1 COM object used in a couple different spots. Basically the usage is on 3 pages in a 30-40 page system. So it is not that many locations. I have noticed that if I am accessing a script at the same time a COM script is

[PHP-WIN] WIN-IIS File Upload error

2003-11-13 Thread Vladimir Iahnenco
Hi, All, I tried to implement the file upload on a WEB server and run into the issue. 1.Test case 1. WinXp, IIS, localhost - no problems. 2. Test case 2, Win2000, IIS, remote PC. The error log, print_r $_FILES, and source follow below. I saw some notes about the sharing. I tried to set tmp and

Re: [PHP-WIN] WIN-IIS File Upload error

2003-11-13 Thread toby z
hay 1. check temp_uploads settings in ur php.ini 2. try this $userfile_name=$_FILES['userfile']['name']; //The original name of the file on the client machine. $userfile_type=$_FILES['userfile']['type']; //The mime type of the file, if the browser provided this information. An example

Re: [PHP-WIN] Fatal error, but include_path seems correct?

2003-11-13 Thread toby z
hay rod locate $cfgPmaAbsoluteUri in ur phpmyadmin config.inc file and put the path by which ur trying to access myadmin . like 'http://localhost/myadmin/'; then $cfgServers[$i]['host'] = 'localhost'; and 3rd u need-not include path to myadmin in ur include_path in php.ini :) good