The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
I made a parser which is using too much memory ( 38 megs ), how could I cut that down?
I must be doing something which is bad practice in PHP but I'm new to it. PHP Code:
|
#2
|
|||
|
|||
![]()
Bump, I really can't fix this without input... I'm not asking for this to be understood but if anything which may cause the memory limit being reached is in use. I've made it so that loop will only run once but the memory limit is reached just the same.
|
#3
|
||||
|
||||
![]()
What do you have your php_memory set at? Can you increase it?
|
#4
|
|||
|
|||
![]()
It dies at about 38 megs, I don't think the memory limit is the problem.
|
#5
|
||||
|
||||
![]()
Have you tried putting in some var_dumps() to see what your various strings are getting set to? I'd try at least this:
var_dump($line,$start,$end); ... right before the $trig assignment where you say it usually bombs out. What actual error are you getting when the script dies? -- hugh |
#6
|
|||
|
|||
![]()
This might be important, to test it I have this code directly under the functions..
PHP Code:
Code:
string(331) " Collapse\"\"join'," string(324) " Collapse\"\"join'," string(7) "" string(82) "join'," string(75) "join'," string(7) "" string(82) "join'," string(75) "join'," string(7) "" string(82) "join'," string(75) "join'," string(7) "" string(82) "join'," string(75) "join'," string(7) "".... EDIT: This is starting too look like a bad PHP string parse, specifically with this line PHP Code:
|
#7
|
|||
|
|||
![]() PHP Code:
|
#8
|
|||
|
|||
![]()
Use single quotes around strings that contain lots of double quotes!
![]() |
#9
|
||||
|
||||
![]()
But I don't think that would be causing the runaway problem. That would just potentially screw up the HTML of any actual output.
Mr Apples - I suggest you look at using xdebug with something like Eclipse. It'll take a while to setup, and you'll need a test server which doesn't have the Zend Encoder loaded, but it's worth it. You'll wonder how the heck you managed before. With xdebug and a decent IDE like Eclipse or Komodo, you can just step through the code in real time, set breakpoints, watch variable values, etc. It makes debugging this kind of problem literally a zillion times easier. At least. Possibly a gazillion times. The alternative is just to start putting in var_dumps every other line in the code, so you can start to see what is going on. Which may be quicker than the initial effort of setting up xdebug ... but it's like that "teach a man to fish" proverb ... it may take longer first time, but once you can fish and/or xdebug, you are set for life! -- hugh |
#10
|
|||
|
|||
![]()
The source of the memory problem was a infinite loop, caused by my nubness when it comes to PHP string syntax ( clarified here: https://vborg.vbsupport.ru/showthrea...42#post1440242 ), and that the || should have been a && to prevent the infinite loop.
It still doesn't work (of course), I'm getting impossible results, thats my problem though. Thanks for the suggestion cheesegrits, I'll look into the xDebug thing. |
![]() |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|