From:             [EMAIL PROTECTED]
Operating system: Linux 2.2.19
PHP version:      4.0.6
PHP Bug Type:     *General Issues
Bug description:  memory exhausted error

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to
allocate 9 bytes) in
[somewhere]/mysql.php on line 8

Apache 1.3.19, PHP 4.0.6 configured with:
./configure  --prefix=/opt/php4 --with-apxs=/opt/apache/bin/apxs 
--with-pgsql=/opt/pgsql --with-mysql=/opt/mysql/ --with-openssl=/usr/local/ssl/ 
--with-imap=/opt/imap --with-gettext --with-zlib --with-dom --with-gd 
--enable-gd-imgstrttf --enable-inline-optimization --with-xml --with-ttf --with-gdbm 
--with-mm --enable-versioning --enable-trans-sid --enable-magic-quotes 
--enable-safe-mode --enable-sockets --enable-sysvsem --enable-sysvshm --enable-shmop 
--enable-calendar --enable-exif --enable-memory-limit

Might "--enable-memory-limit" be the culprit?
(It's a production system and I can not play much with it)

mysql.php worked correctly with php 4.0.5
mysql.php:
<?php
  function getData($query)
  {
    global $host, $user, $password, $db;
    //echo $query."<br>";
    $conn      = mysql_connect ($host, $user, $password);
    $result    = mysql_db_query($db, $query);
    while($row = mysql_fetch_array($result))
      $aux[] = $row;
    mysql_free_result($result);
    return $aux;
  };
  function putData($query)
  {
    global $host, $user, $password, $db;
    $conn      = mysql_connect ($host, $user, $password);
    $result    = mysql_db_query($db, $query);
    return $query;
  };
?>



-- 
Edit Bug report at: http://bugs.php.net/?id=11832&edit=1



-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to