One user our community like to change the profile details. But after saving he get a white page. The URL after saving is:
www.jaii.de/meinprofil/saveuseredit
Blank page means a fatal error of some sort occurred. Enable debug mode and maximum error reporting then retest to see what error is displayed. If none then check your server error log for any errors. Blank page is usually due to hitting PHP memory limits.
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 58722328 bytes) in /.../libraries/joomla/database/driver.php on line 2047
I raised the memory size, this leads me to an other error 0 (JSON).
A post in your forum gave me the answer:
"It is important to see what the JASON error causes: Its not the update itself. In the update of Joomla the developers built in a check, whether JASON decoded parameters are presented correctly or not. In case if not, it throws the error we are talking about. The problem is, that those incorrect parameters were written into the database a long time ago by components or plugins. Sometimes this may have been done also during the creation of a website by using a copying routine. In dont know what exactly it was. In my case the Jason error was caused by those mess of /// and .... and """ in the params column of the user table. I have been using Community Builder for a long time and the params therefore have been written only by CB. Maybe that a malicious peace of code in Joomla did the rest, but the result was a chaotic string in the params column. In case you dont want to review every single line manually and correct this into a correct string readable for the JASON routine, then just use this mysql Statement to let your server do the work:
UPDATE `XXXX_users` SET `params` = '{}'.
Please note: XXXX has to be replaced by your database-prefix, that your Joomla uses in your MYSQL database.
Keep in mind, what Krileon said above: This will reset ALL user parameters to default state."