I have a problem with two images in one page. Only one image is showed, mostly the first, sometimes the second. The second looks like a broken link.
The link with the example:
109.70.6.65/~molenwal1/index.php/booking-sub
The paths of the two image files are:
109.70.6.65/~molenwal1/index.php?option=...trs=format:png&path=[DIR_SUBPROPERTY_IMAGE_1]zomerhuisje_01.jpg
109.70.6.65/~molenwal1/index.php?option=...trs=format:png&path=[DIR_SUBPROPERTY_IMAGE_2]zomerhuisje_02.jpg
When i use this link i have no problem i can see the image.
In the Apache Log this message is shown:
[Fri Apr 06 13:03:19 2012] [notice] child pid 1187 exit signal Segmentation fault (11)
When i use only one message i don't have this problem. Also in the sandbox of J-Cook i do not have the problem.
Because of the error message in the Apache log i think it is a combination of more then one image in one page and my server setup which is a Centos Linux with Directadmin and Apache. The rights on the imagemaps are ok (777). The thumb-image is also created!
Does anyone has experience with this?
The code for the images:
<code><?php echo JDom::_('html.fly.file', array(
'dataKey' => 'image_1',
'dataObject' => $this->subpropertyitem,
'width' => 300,
'height' => 200,
'attrs' => array('format:png'),
'indirect' => true,
'root' => '[DIR_SUBPROPERTY_IMAGE_1]'
));
?>
<?php echo JDom::_('html.fly.file', array(
'dataKey' => 'image_2',
'dataObject' => $this->subpropertyitem,
'width' => 300,
'height' => 200,
'attrs' => array('format:png'),
'indirect' => true,
'root' => '[DIR_SUBPROPERTY_IMAGE_2]'
));</code>