View Single Post
  #10  
Old 01-21-2014, 03:59 PM
anno1986 anno1986 is offline
Member
 
Join Date: Jan 2014
Posts: 3
Gender: Male
Credits: 873
anno1986 is on a distinguished road
Default Nesting too deep?!

What I figured out in my current setup:

I guess I am running PHP5.3 where this error occurs. As soon as I change to a higher PHP version I do NOT GET "Nesting level too deep - recursive dependency? "

What I also noticed it HAS something to do with images in admin panel.
When I comment out the following:

Code:
# FILE admincp/view/shopview.php LINE 62
$showForm->buildDropdownList("existingimageurl", "ImageList");
I was able to edit my shops again..

So I went deep into detail but got stuck here:

Code:
# FILE classes/resource/collection/linkedhashmap.php LINE 68
error_log('------ '.$key->__toString().' -- '.$value->__toString().' hash: '.$hash.'  index:'.$index);
$this->createEntry($hash, $key, $value, $index);
$eldest = $this->header->getAfter();
if($this->removeEldest($eldest)) $this->removeKey($eldest->getKey());
else{
if($this->size >= $this->threshold) $this->resize(2*$this->entries->length());
}
error_log('---- OK');
The last image where it stops nothing special:

Code:
# table {prefix}_filesmap
id|serverpath|wwwpath|friendlyname
16|
picuploads/png/6359d04458e086935c5abadbabc389ec.png|
http://evosl.com/fae/picuploads/png/6359d04458e086935c5abadbabc389ec.png|
exotic
Any ideas???
Reply With Quote