The problem: After installing on Joomla 1.5.2, everything worked with the exception once I clicked "New" to create the first form and ended up with a completely blank admin page.
The Solution: Turn off gzip compression.
So obviously this worked but its not a permanent solution if I need to run gzip. Will this be solved soon?
I'm pretty certain that this has been fixed. Are you using the latest download of ChronoForms?
Bob
I am using the most recent one which I downloaded just before finding two issues, this one being one.
I had the same problem with joomla 1.5.2 & Chrono Contact 2.5 J1.5 RC2.
Thank you!
Max
Currently turning off Gzip compression is still the current solution.
Regards,
Mark
I don't think that anyone else has reported it for Joomla 1.5.3. Are you sure you have the latest update of ChronoForms?
Bob
Removing GZip compression works fine, however I require compression on the website.
Sorry, I've no idea - even Googling the error message the only reference is to your post here.
Bob
Content Encoding Error
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.
* Please contact the website owners to inform them of this problem.
On IE you get a standard error page, while on Firefox you see the "bad encoding" error.
Everything is ok while running w/o GZip...
If anyone happens to be interested I'm in the process of updating to 1.5.7 and will post my results if I get the same error.
...If anyone happens to be interested I'm in the process of updating to 1.5.7 and will post my results if I get the same error.
Just patched to 1.5.7 and I can confirm this error still occurring. :?
it never happens to me here, wonder why, I believe this is an issue with your server config somehow ? whats your admin area language ?
Same with me (J! 1.5.4, 1.5.5, 1.5.6 and 1.5.7 ... and Chrono 2.5RC3 and 3.0B1 and 3.0B2)
Admin language in ITALIAN and in ENGLISH... same issue. Web server is Apache 2.x on Linux (everything else is ok with gzip on...)
It's an issue of the full component: if you try to send the form from the frontend (I use the plugin to include it in content), it fails... if no gzip compression is active, sending is ok...
PHP Built on: Linux elcamino 2.4.32-grsec-opteron-peon-1.1.1 #1 SMP Fri Dec 21 15:45:17 PST 2007 i686
Database Version: 5.0.67-log
Database Collation: utf8_general_ci
PHP Version: 5.2.6
Web Server: Apache/2.0.61 (Unix) PHP/4.4.7 mod_ssl/2.0.61 OpenSSL/0.9.7e mod_fastcgi/2.4.2 DAV/2 SVN/1.4.2
Web Server to PHP interface: cgi-fcgi
Joomla! Version: Joomla! 1.5.5 Production/Stable [ Mamni ] 27-July-2008 22:00 GMT
User Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3
Using version ChronoForms V3.0 Stable.
this iwll be great of course, you can email me the admin login at the PM ?
Thanks!
Max
I faced this issue earlier today and I worked out a hack solution. It's a very very dirty hack but it will let you use gzip and ChronoForms so here it goes:
In the file administrator/index.php edit line 91
echo JResponse::toString($mainframe->getCfg('gzip'));to
if($_POST['option'] == 'com_chronocontact' || $_POST['option'] == 'com_chronocontact')
{
echo JResponse::toString(false);
} else {
echo JResponse::toString($mainframe->getCfg('gzip'));
}
Obviously the effect is that gzip compression is turned off but only when you load ChronoForm pages (and only in the backend).
Regards
Max
Thanks...
A solution from inside Chronoforms itself is not yet ready! I'm working to achieve this.
Regards
Max
Im running Joomla 1.5.9 and Chronoforms 3.0 STABLE and still getting this problem.
Cheers
Max
Thanks for the nice solution, I will try to find a way to get a fix for this or even a snippet to work at chronoforms files, about your code, replace $_POST['option'] with JReques::getVar('option') because using $_POST directly in the Joomla code is not very secure!
Regards
Max
I tried this tweak to jOOOL`s fix and I get a "Class 'JReques' not found" error.
Is there something else I need to add to make the class available?
Im running Joomla 1.5.9 and ChronoForms 3.0 stable.
edit: just realised I posted 2 posts above in this thread🙂
Thanks for the reply Max, looking forward to the new version.
edit2: I also just realised that once I have finished my form, I dont really need to access the chronoforms admin bit anymore.
So, form done, gzip turned back on, no problems. If I need to edit the form, just turn gzip off while you do it! Simple🙂
Youll have to excuse me, Im having a slow day :?
