Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a problem.

I add this helper to codeigniter and follow all steps to install htmlpurifier and integrate with CI.

I made a new config:

case 'ckeditor':
                $config = HTMLPurifier_Config::createDefault();
                $config->set('Core.Encoding', 'utf-8');
                $config->set('HTML.Doctype', 'XHTML 1.0 Strict');
                $config->set('HTML.Allowed', 'p,a[href|title],b,strong,blockquote[cite],i,u,h3,h4,h5,h6,pre,address,em,img[class|src|title|alt]');
                $config->set('AutoFormat.AutoParagraph', TRUE);
                $config->set('AutoFormat.Linkify', TRUE);
                $config->set('AutoFormat.RemoveEmpty', TRUE);
                break;

This config dont allow any tags, but i specified in my config and call this config in my code:

$Clean_ProyectoDescripcion = html_purify($ProyectoDescripcion, 'ckeditor');
share|improve this question
1  
Can you show us some example HTML input and output? And: What is your magic quotes setting? – pinkgothic Sep 5 '12 at 8:21

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.