0
votes
1answer
20 views

php sybase Allowed memory size exhausted?

I'm getting this problem while trying to run any query against Sybase from php: PHP 5.4.3 (cgi-fcgi) (built: May 9 2013 17:03:23) built --with-sybase-ct=/path/to/freetds code: <?php ...
2
votes
2answers
53 views

Capturing (externally) the memory consumption of a given Callback

The Problem Lets say I have this function: function hog($i = 1) // uses $i * 0.5 MiB, returns $i * 0.25 MiB { $s = str_repeat('a', $i * 1024 * 512); return substr($s, $i * 1024 * 256); } I ...
1
vote
1answer
40 views

Should I unset my PHP array values?

Does garbage collection on array values work like the garbage collection on normal variables? I.e. will the complete $array be kept in memory until each array key is unset or the whole array no ...
0
votes
2answers
28 views

variable storage and php out of memory error [closed]

suppose PHP memory limit is set to 128M now suppose you do $v = "128 M worth of data"; will this cause a PHP out of memory error to occur?
5
votes
1answer
80 views

Codeigniter optimization / best place to load models is?

I am working on a large project, made in Codeigniter and I am wondering if there is difference in the performance of an controller dependent, where the required models are loaded. The question: ...
0
votes
1answer
24 views

PHP print_r large array to variable not working

I'm trying to print_r a large array to a file to debug it. I've tried 2 methods: $arr = get_large_array(); file_put_contents('file.txt', print_r($arr, true)); and $arr = get_large_array(); ...
0
votes
0answers
28 views

PHP memory usage with Mongo Driver

I tested retrieving 150 documents, each with an array of 2000 records. This is the memory usage: Memory after collection: 1584 Memory after findOne: 530936 Memory after find: 81798960 So findOne ...
0
votes
1answer
53 views

How can I save memory load and prevent a ZEND HEAP php error querying millions of records creating a .txt file

PHP chokes up after about 45 minutes of processing records with a ZEND HEAP error which I spent countless hours researching and trying to resolve and was unable to do so. There is not an .ini ...
0
votes
1answer
39 views

PHPExcel Timeout occur

Please help me for the the problem exporting large data to excel format xlsx. i m exporting almost 45000 records at a time to single file and it timeout without saving file. the mysql select query is ...
0
votes
1answer
50 views

PHP - Reading in a large XML file from Amazon S3 in cron job causes process to run out of memory

We have a process that is set to run at 1am every day as a batch job to perform some calculations we need in order to send out notice of updates to our users. We're getting this message where the ...
0
votes
0answers
54 views

Issue in heavy Excel report generation with multiple sheets

I am generating an excel report with 3 sheets in a single excel file based on the date range given as the inputs from a form. Currently i am using PHPExcel for this. The problem i am facing is, there ...
5
votes
1answer
56 views

Running an intensive batch process in PHP, and avoiding memory exhaustion

I have several thousand records (stored in in a table in a MYSQL table) that I need to "batch process." All of the records contain a large JSON. In some cases, the JSON is over 1MB (yes, my DB is well ...
3
votes
6answers
107 views

Running out of memory always on the same line

First of all, I am not looking for an answer saying "Check your PHP memory limit" or "You need to add more memory" or these kind of stuff ... I am on a dedicated machine, with 8GB of RAMS; 512MB of it ...
-3
votes
2answers
37 views

PHP Web app is going to take up lots of memory. How can I set a limit or store that memory? [closed]

A PHP web app that I am going to initiate soon is going to take up lots of memory. How can I set a limit to tell it to stop when it reaches a certain point? What is a good limit? It takes up lots of ...
0
votes
2answers
54 views

PHP script (algorithm) - only loops till a certain iteration after which it stops

I am running an algorithm in PHP which has a lot of data involved. All the processing happens within a nested for loop. Strangely, the outer for loop stops working after 'X' number of iterations ...
0
votes
1answer
145 views

Joomla Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 1048576 bytes)

I'm currently running Joomla 1.5.8 on a live server. I can only make certain changes to the website such as text content updates in articles. However any modification to a module returns this titles ...
0
votes
1answer
81 views

Get real memory limit?

Using ini_get('memory_limit') will get what is specified in the php.ini file (i presume). But if i run ini_set('memory_limit', 'somethingInsanelyHigh') and then run ini_get(..) again, it will return ...
3
votes
1answer
58 views

Memory Leak caused by Accessing Undefined Array Index

I am having a script which analyses XML data and fills same arrays with information. For some (huge) input, the script crashed. There is a foreach loop which is run around 180 times without problems ...
4
votes
2answers
82 views

PHP - possible hurdles when executing long script

I have a quite long loop running in a function , but does not finish all the eventual iterations and stops without giving any errors : function my_function(){ foreach (range(100,999) as ...
0
votes
0answers
45 views

PHP code is overloading, slowing the browser and eventually crashing

I've got the following PHP code implemented on a single page to render a report from an API call but for some reason it's progressively eating up resources until the browser eventually crashes. Any ...
15
votes
3answers
332 views

memory_get_peak_usage() with “real usage”

If the real_usage argument is set to true the PHP DOCS say it will get the real size of memory allocated from system. If it's false it will get the memory reported by emalloc() Which one of these 2 ...
5
votes
2answers
75 views

Does PHP dynamically handle memory usage based on its limit?

I have a script that runs successfully when PHP's memory_limit is set to 50M at about 25 seconds of runtime. When I print memory_get_peak_usage at the end of the script, it lands pretty closely to ...
0
votes
0answers
47 views

How define handler for OOM linux killer in php

I have a script which consumes a lot of memory, so Linux Out Of Memory killer kill my script. How i can send email notification, that script was killed by OOM killer ? P.S. I used set_error_handler ...
2
votes
0answers
40 views

How to reuse memory with PHP objects [closed]

I have a piece of code, which has to handle several hundred objects (images), but after the 77th instance it bumps into the 128 MB memory limit and dies. The objects instaced by a static call which ...
3
votes
1answer
36 views

How to decrease memory usage when passing big variables around

For example: a(wordwrap(str_repeat('abcdef', 500000), 160, "\n", true)); function a($v){ $v[1] = 'x'; $v = b($v); return $v; } function b($v){ $v[2] = 'x'; $v = c($v); ...
2
votes
1answer
44 views

Why do references use more memory?

Shouldn't they make the script use less memory? function a(&$var); uses more memory than function a($var); and foreach($array as $k => &$v) uses more memory than foreach($array as $k ...
2
votes
2answers
73 views

Doctrine ORM Memory issues

The Problem: While running a Daemon service that uses Doctrine from the Factory classes below there is a memory issue. When the Daemon Service starts it runs about 175MB. A day later it's about ...
0
votes
1answer
180 views

Converting single sheet in an XLS file to CSV with PHPExcel - Memory exhausted

I've got an Excel file (97-2003) which I need to be able to import via PHP and have it convert just one sheet in the file to CSV. These are uploaded by users so there's no option for doing it ...
0
votes
0answers
30 views

php mysql memory grows and then suddenly reduces

I have got a website running on a VPS (Apache, MySql, PHP). The hosting company provide graphics of the memory usage. Now I noticed that the RAM memory usage is as follows: It grows in several hours ...
2
votes
2answers
231 views

PHP Fatal error when deploying Symfony2 project using Capifony

When deploying my Symfony2 project to my server I occassionally get the following error: PHP Fatal error: Uncaught exception 'ErrorException' with message 'proc_open(): fork failed - Cannot ...
0
votes
0answers
85 views

SQLite PDO :memory: save database to file

i'm working with a SQLite in PHP database that way: $db = new PDO('sqlite:products.sqlite'); i've to do many INSERT query, but it looks like those operation slow down the process a little bit. i ...
0
votes
1answer
53 views

php DOMDocument Memory Usage [closed]

I'm making a script using DOMDocument to create an .xml configuration file. This file is mainly going to be read. Now I'm wondering how much memory that would use? It's reading 5 values from a ...
1
vote
1answer
44 views

How can I use Memcached to store data for a given time

I am wondering how I would use Cache (MemCache) to display how many registered and active users I have on my website. I currently use: return mysql_result(mysql_query("SELECT COUNT(`user_id`) ...
1
vote
3answers
50 views

How to save values with PHP in dynamic memory?

I need to create a simple form which saves it's values in a dynamic memory. So far the code goes like this: <tr> <td>Code:</td> ...
0
votes
0answers
42 views

Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 41420841 bytes) [duplicate]

The CakePHP app that I'm working on allows the upload of PDF files, and using FPDF, merges those PDFs together. This is the first time that I've seen this issue, but it seems that really large PDFs ...
1
vote
1answer
48 views

Does this code create multiple instances of the function?

I am learning how to build a parent/child category list. I found a great tutorial and have implemented the following code: while($row = $tree_sth->fetch()){ $rows[$row['id']] = ...
0
votes
0answers
50 views

Simple Function using 67MB Memory ( Simple Dom Parser )

I'm new to PHP. I'm trying to make a simple parser. It is working fine but it's taking too much memory (67 - 70 MB) You can see it working on www.msdesignz.com/script function printHtml($html) { ...
1
vote
1answer
61 views

Save arrays strategy in PHP

I came to this issues recently where I have to decide if I save a list of arrays all in one file or keep it in separeted files. Here's the deal. I have an array of arrays, I'll simplify the example: ...
0
votes
0answers
40 views

php://output and memory usage

so I'm doing this in order to print out a csv file: while(ob_end_clean()); $fp = fopen('php://output', 'w'); fputcsv($fp, $header_fields); foreach($j as $fields){ $row = array(); foreach ...
2
votes
1answer
152 views

Symfony 2 Doctrine memory usage

I am creating a query with an entity repository and it sems to have memory leaks. In my Entity repository class : echo 'mem 1 : ' . (memory_get_usage()/1024/1024) . "<br />\n"; $query = ...
2
votes
2answers
117 views

symfony2 command too much data memory limit

I've created a command to create events for my application. The command creates more then 700 events, everything is doing fine. But every event should have more then 250 guests. It means, I must ...
1
vote
1answer
26 views

How do I tell PHP to get rid of load_file data after it's used?

Here is my PHP. It runs through a bunch of URLs to get similar data (current homeruns from baseball player profiles). However, I'm getting 'Allowed memory size exhausted', which leads me to think that ...
1
vote
1answer
145 views

Web Server CPU/Memory Resource LImited as a result of multiple ajax calls to PHP script

I'm hosting a website with Webhostingpad, and I'm running into an issue. As my homepage loads, I am currently making 8 concurrent ajax calls to a php script that returns content being used for the ...
0
votes
1answer
159 views

MySQL db export: Allowed memory size of 67108864 bytes exhausted

First off, this issue has been stated on StackOverflow many times, but not where I am seeing the error. I've read through every one to make sure this is not a duplicate. Issue is occurring when I try ...
1
vote
2answers
199 views

php how to limit number of entry processes

I have php website. I continuosely get 508 resource limit exceeded error so am wodering how can I optimise my website to cope with it? How for example I can lower the number of entry processes my ...
4
votes
2answers
121 views

PHP Script Memory Leaking Until Eventual Overflow

Keep running into a weird problem with a PHP script. The idea of the script is to grab a bunch of data from a MySQL table, process it, compare it some data from another table, and print out the ...
0
votes
2answers
113 views

php curl memory usage

I have this function that gets the html from a list of pages and once I run it for two hours or so the script interrupts and shows that memory limit has been exceeded, Now i've tried to unset/set to ...
5
votes
3answers
7k views

Tracking Memory Usage in PHP

I'm trying to track the memory usage of a script that processes URLs. The basic idea is to check that there's a reasonable buffer before adding another URL to a cURL multi handler. I'm using a ...
9
votes
5answers
5k views

Manipulate an Archive in memory with PHP (without creating a temporary file on disk)

I am trying to generate an archive on-the-fly in PHP and send it to the user immediately (without saving it). I figured that there would be no need to create a file on disk as the data I'm sending ...
54
votes
9answers
123k views

PHP: Fatal Error: Allowed Memory Size of 134217728 Bytes Exhausted (CodeIgniter + XML-RPC)

I have a bunch of client point of sale (POS) systems that periodically send new sales data to one centralized database, which stores the data into one big database for report generation. The client ...

1 2 3 4 5 9