- Appsite
- Black & White
- Musicity (with support for JomSocial)
- Party Freak (with support for JomSocial)
- Sporter
All new templates are available in our download section.
Administrator
GK User
Tue May 17, 2011 5:26 pm
Thanks!
Senior Boarder
GK User
Tue May 17, 2011 5:37 pm
I am getting this error in the Musicity template: Notice: Uninitialized string offset: 0 in /my site info here/templates/gk_musicity/lib/gk.framework.php on line 600
Senior Boarder
GK User
Tue May 17, 2011 5:58 pm
Please disable showing notices in php.ini file or put this fragment in the index.php file:
I had my web host try to turn the error off and even they could not. This was my web hosts final response: I have done some testing and it seems to be an error with your script and it will not disappear if you turn display errors to off.
please contact your programmer relating to this issue.
Any ideas?
Senior Boarder
GK User
Wed May 18, 2011 8:05 am
If your service provider disable PHP notice messages it definitely delete this message. There is no way to show notice information when the PHP notices are disabled. Please try to paste this code to the head of default.php file in template directory.
Platinum Boarder
GK User
Fri May 27, 2011 7:09 pm
paste like this and it work in gk_musicity index.php
// run the framework
ini_set('error_reporting', E_ALL & ~E_NOTICE & ~E_WARNING);
$tpl = new GKTemplate($this, $GK_TEMPLATE_MODULE_STYLES);
Fresh Boarder
GK User
Sat May 28, 2011 7:42 am
Thank you guys for the templates for 1.6... finally!
Thanks a lot again.
Milo
Fresh Boarder
GK User
Sun May 29, 2011 1:40 pm
To fix the error message all I had to do was make a php.ini file with this code in it: display_errors = Offand now the errors do not show up.