Still has blank page at first post error! (Bugs)

by Special @, Sunday, October 28, 2007, 12:55 (5997 days ago)
edited by Special, Sunday, October 28, 2007, 13:48

I am still finding same error, since beta 15. when i install it is all right but when i do first post all pages go blank. I traced it and found that error is in line 97 of index.inc.php,. page with $mode "index" and "entry" only seems to have that problem now. is it necissary to convert formated time to a utf-8? for info: I have installed it in localhost.

Also found that error in entry.inc.php is in line 40

locked
3973 views
Avatar

Still has blank page at first post error!

by Alex ⌂, Sunday, October 28, 2007, 23:46 (5996 days ago) @ Special

Hi,

I am still finding same error, since beta 15.

Still in the current version (beta 17)? Maybe it has to do with the iconv() function.

What do you get when running this on your system:

<?php
if(function_exists('iconv'))
 {
  echo 'iconv is available';
 }
else
 {
  echo 'iconv is not available';
 }
?>

is it necissary to convert formated time to a utf-8?

Yes, it is. Otherwise you might get wrong characters in non English month names and weekdays.

Alex

locked
4232 views

Still has blank page at first post error!

by Special @, Monday, October 29, 2007, 03:16 (5996 days ago) @ Alex
edited by Special, Monday, October 29, 2007, 03:27

That function is not available in both localhost as well as at reseller club's hosting.

I think i can activate iconv.dll in localhost but i'm afraid how to do same in shared hosting of reseller club?

locked
3883 views
Avatar

Still has blank page at first post error!

by Alex ⌂, Monday, October 29, 2007, 13:01 (5996 days ago) @ Special

That function is not available in both localhost as well as at reseller club's hosting.

OK, iconv() still seems to be a less common function, so in the next version I'll implement it like this: if(function_exists('iconv')) { convert... }.

Alex

locked
4047 views

RSS Feed of thread