JavaUpload: "^SUCCESS$" was not found in the response header
Posted: 24 Nov 2009, 15:54
Hi all,
i had the same error. Cause is the (useful !!!) php-setting "session.cookie_httponly = On". This setting marks the session-cookie as accessible only through the HTTP protocol.
Solution 1: Set session.cookie_httponly = 0 in /etc/php5/apache2/php.ini. Restart apache.
or better
Solution 2: Add
<param name="readCookieFromNavigator" value="false">
<param name="specificHeaders" value="Cookie: <?php echo $this->session->getName().'='.$this->session->getId();?>">
in ./administrator/components/com_phocagallery/views/phocagallerym/tmpl/form_javaupload.php after line 35 and after line 18.
Systemdata: Suse-Linux 10.3, Apache/2.2.4, PHP 5.2.11, Joomla 1.5.15, Phoca_Gallery 2.5.8
Best regards
Günter
i had the same error. Cause is the (useful !!!) php-setting "session.cookie_httponly = On". This setting marks the session-cookie as accessible only through the HTTP protocol.
Solution 1: Set session.cookie_httponly = 0 in /etc/php5/apache2/php.ini. Restart apache.
or better
Solution 2: Add
<param name="readCookieFromNavigator" value="false">
<param name="specificHeaders" value="Cookie: <?php echo $this->session->getName().'='.$this->session->getId();?>">
in ./administrator/components/com_phocagallery/views/phocagallerym/tmpl/form_javaupload.php after line 35 and after line 18.
Systemdata: Suse-Linux 10.3, Apache/2.2.4, PHP 5.2.11, Joomla 1.5.15, Phoca_Gallery 2.5.8
Best regards
Günter