[PHP-DEV] Bug #7780 Updated: Return of "Text" field returns only 4kB, but only in ISAPI-Mode From: fmk <email protected>
Date: 06/30/01

ID: 7780
Updated by: fmk
Reported By: Yin.Yang <email protected>
Old-Status: Open
Status: Closed
Bug Type: MSSQL related
Operating system:
PHP Version: 4.0.3pl1
Assigned To:
Comments:

This has been fixed. When running the ISAPI module, the php.ini file was not read correctly. Upgrade to latest version

Previous Comments:
---------------------------------------------------------------------------

[2000-11-13 06:22:01] Yin.Yang <email protected>

Working with IIS 4 and ISAPI, and having added the following lines to php.ini

*snip*
mssql.textsize = 8192 ;
mssql.textlimit = 8192 ;
*snip*

a request of a field with Data-Type Text > 4kB gives back only the first 4kB of the text (in general).

The interesting phenomenon is:

After restarting IIS completely (net stop iisadmin), the WHOLE text out of the DB (appr. 6kB) will be returned, but only ONCE (meaning a reload in the browser, taking another browser, etc. gives again only the "cutted" text-field).

Working in CGI-mode, the whole text will be returned every time.

A exemplary code-snippet, if it helps:

**shortened snip**
  $check = "SELECT * FROM $table WHERE $QUERY_STRING";
  $result = mssql_query($check) or die("Konnte die Datenbankabfrage nicht durchführen.");
  $row=mssql_fetch_row($result);
  $head = makehtmlchar($row[2]);
  $body = makehtmlchar($row[3]);

  $mytext .= "
    <table width=610>
    <tr><td><h4><b>$head</b><br><font class=stdtext>($row[1])</font></h4></td></tr>
    <tr><td><font class=bigtext>$body </font></td>n";
**snip**

---------------------------------------------------------------------------

ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=7780&edit=2

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>