July 24, 2008
MyCaptcha Wordpress plugin issues
I was playing around with the mycaptcha plugin, and had quite the frustraiting experience. Basically, the instructions given are incorrect/incomplete.
On my single.php page, I needed to have the beginning look like this:
<?php session_start() ?>
<! – MyCaptcha ->
<?php if (class_exists(’MyCaptcha’)) {
$MyCaptcha;
$MyCaptcha->initialize();
} ?>
<! – MyCaptcha ->
<?php get_header(); ?>
Otherwise, I was getting various errors including:
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home
or
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /htdocs/blog/wp-content/themes/sexyround/single.php:3) in /htdocs/blog/wp-content/plugins/mycaptcha/MyCaptcha.php on line 51
Hope this helps someone… let me know if it does!









Comments(2)
great…it works,
i wondered why the author didn put in the complete code
and it’s amazing that u figured out tat piece by urself :p
I wish I could take much of the credit. Between searching around, and my own trial and error, I came to the solution provided. The various posts about this issue that I came across never contained the whole answer. Glad it helped you.