COMMUNITY FORUM
Saving Items in K2
- LARENE WADE SPITLER
-
Topic Author
- Offline
- New Member
When I try to save an item, the screen draws a blank screen.
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Please provide some more info, such as what appears on your error log and your setup.
Please Log in or Create an account to join the conversation.
- LARENE WADE SPITLER
-
Topic Author
- Offline
- New Member
[Fri Mar 29 15:26:27 2013] [error] [client 186.45.156.128] File does not exist: /home/twin/www/twinislandinvestments.com/plugins/system/jcemediabox/css, referer: twinislandinvestments.com/
[Fri Mar 29 15:26:28 2013] [error] [client 186.45.156.128] File does not exist: /home/twin/www/twinislandinvestments.com/plugins/system/jcemediabox/js, referer: twinislandinvestments.com/
[Fri Mar 29 15:26:29 2013] [error] [client 186.45.156.128] File does not exist: /home/twin/www/twinislandinvestments.com/plugins/system/jcemediabox/themes, referer: twinislandinvestments.com/
[Fri Mar 29 16:11:18 2013] [error] [client 71.219.149.208] PHP Notice: Undefined property: TableK2Item::$state in /home/twin/www/twinislandinvestments.com/plugins/content/blogping/blogping.php on line 150, referer: twinislandinvestments.com/administrator/index.php?option=com_k2&view=item
[Fri Mar 29 16:11:18 2013] [error] [client 71.219.149.208] PHP Fatal error: Call to undefined function iconv() in /home/twin/www/twinislandinvestments.com/administrator/components/com_finder/helpers/indexer/parser/html.php on line 33, referer: twinislandinvestments.com/administrator/index.php?option=com_k2&view=item
[Fri Mar 29 16:14:52 2013] [error] [client 71.219.149.208] PHP Notice: Undefined property: TableK2Item::$state in /home/twin/www/twinislandinvestments.com/plugins/content/blogping/blogping.php on line 150, referer: twinislandinvestments.com/administrator/index.php?option=com_k2&view=item&cid=58
[Fri Mar 29 16:14:52 2013] [error] [client 71.219.149.208] PHP Fatal error: Call to undefined function iconv() in /home/twin/www/twinislandinvestments.com/administrator/components/com_finder/helpers/indexer/parser/html.php on line 33, referer: twinislandinvestments.com/administrator/index.php?option=com_k2&view=item&cid=58
These are the pieces I installed:
K2_v2.6.2
plugin_k2_css4k2_J17_172
plg_jw_simpleImageGallery-v2.2_j1.6
plg_jw_allvideos-v4.4_j1.5-2.5
mod_jw_srfr-v2.3_j1.5-1.7
Larene
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
The PHP Fatal error: is caused from a core Joomla! component called finder.
I can also see that you have Blog Ping enabled.
You should do some reverse engineering on this one. Try disabling the plugins and components you have installed and you will find what is causing that Fatal Error.
Please Log in or Create an account to join the conversation.
- LARENE WADE SPITLER
-
Topic Author
- Offline
- New Member
I turned off BlogPing and was down to one error.
To fix the last error, I had to fix a bug in Joomla.
administrator/components/com_finder/helpers/indexer/parser/html.php
I changed:
$input = iconv("utf-8", "utf-8//IGNORE", $input);
to:
if (function_exists('iconv'))
{
$input = iconv("utf-8", "utf-8//IGNORE", $input);
}
I saw similar code in Joomla checking to see if this function existed.
It is working now.
Larene
Please Log in or Create an account to join the conversation.
- danieljas
-
- Offline
- New Member
- Posts: 3
Krikor Boghossian wrote: The missing files are from the jcemediabox plugin you should try reinstalling it.
The PHP Fatal error: is caused from a core Joomla! component called finder.
I can also see that you have Blog Ping enabled.
You should do some reverse engineering on this one. Try disabling the plugins and components you have installed and you will find what is causing that Fatal Error.
Dear Krikor.
I have also problem with saving, which I'd described on: getk2.org/community/New-to-K2-Ask-here-first/160498-Cant-save-configuration
Unfortunatelly without response. Could you help me.
I can't save configuration (i.e. spam settings) and I have problem with robots.
I will be gratful for your help.
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
I think the first thing you should do is open your browser's developer tools and check the network tab, and the console tab for any JS errors.
Furthermore a lot of 3rd party components and plugins load JS so check if jQuery is loaded twice or check for possible conflicts.
Finally, make sure the version of jQuery you are loading in the backend is compatible with K2 or your WYSIWYG editor.
Please Log in or Create an account to join the conversation.