Have reviewed your install and even with debugging your site is suppressing errors. This looks like a mod_security issue though. Please have your host check their mod_security logs and see if it's logging a security error.
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.
Hello, the ISP techs have been working on this non-stop for a couple days now.
The white screen is not generating an error because there are no errors on the page...it is literally a blank html page. That's pretty common.
There are no error being reported anywhere on teh server except for hte file not found below. they have double checked the IonCube and resolved what they thought could have been a problem with ZenD. Bottom line is still getting white-screens with no way to find out what the error is despite lots of people sinking many many hours into it.
[Tue Aug 20 00:24:13 2013] [error] [client 10.30.6.171] File does not exist:
Have reviewed your install and it's because your host does not have PHP encoded with iconv. This is used for UTF8 conversion during History Logging. The good news is even though you get a blank page your changes are still saved.
There are two ways to fix this. First way is contact your host and have them enable iconv (best approach). Alternative is to perform the below edit and remove the iconv usage (I don't know the dangers of doing this).
IN: /components/com_comprofiler/plugin/user/plug_cbpaidsubscriptions/models/table/cbpaidTable.php
ON: Line 426
FROM:
Code:
$v = @iconv( 'UTF-8', 'UTF-8//IGNORE', $v );
TO:
Code:
//$v = @iconv( 'UTF-8', 'UTF-8//IGNORE', $v );
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.