Warning: Missing argument 3 for plgContentRokbox::onPrepareContent()
Are you getting any such error,
Warning: Missing argument 3 for plgContentplg_iframe::onPrepareContent() in /home/users/public_html/**mysite.com**/plugins/content/plg_iframe.php on line 57 Warning: Missing argument 3 for mb_videobot() in /home/users/public_html/**mysite.com**/plugins/content/azvideobot.php on line 8 Warning: Missing argument 3 for plgContenteventDirections::onPrepareContent() in /home/users/public_html/**mysite.com**/plugins/content/eventdirections.php on line 343 Warning: Missing argument 3 for plgContentRokbox::onPrepareContent() in /home/users/public_html/**mysite.com**/plugins/content/rokbox.php on line 26Â
So, here is the solution. Just open that file and do this.
function onPrepareContent( &$article, &$params, $limitstart )
Replace it with,
function onPrepareContent( &$article, &$params, $limitstart = null )
or
function onPrepareContent( &$article, &$params)
Both should work. So try doing any one of them. Thats it..
Lets say, if you are getting;
Â
Warning: Missing argument 3 for plgContentplg_iframe::onPrepareContent() in /home/users/public_html/**mysite.com**/plugins/content/plg_iframe.php on line 57
Then open the /plugins/content/plg_iframe.php file .
or
If you are getting
Warning: Missing argument 3 for mb_videobot() in /home/users/public_html/**mysite.com**/plugins/content/azvideobot.php on line 8
Then open the /plugins/content/azvideobot.php file .
or
If you are getting
Warning: Missing argument 3 for plgContenteventDirections::onPrepareContent() in /home/users/public_html/**mysite.com**/plugins/content/eventdirections.php on line 343
Then open the /plugins/content/eventdirections.php file .
or
If you are getting
Warning: Missing argument 3 for plgContentRokbox::onPrepareContent() in /home/users/public_html/**mysite.com**/plugins/content/rokbox.php on line 26
Then open the /plugins/content/rokbox.php file .





joomlaservices
joomlaservices
394295112
joomlaservices
+91-9853790816
joomlaservices

Comments
$mainframe->registerEvent('onPrepareConte nt','mb_videobot');
function mb_videobot($published, & $row, & $params, $page=0 ){ ........
What needs to be changed?