Search the Community
Showing results for tags 'elgg'.
-
Hi guys, i am not a coder , but know some basics, i am using elgg(opensource social network) in my project work, i am facing some problem, please help guys, elgg usess htmLAWED for security reason, so dont want to disable it, but want to modify it, i want to allow only table tags and its class, please go through the below example/problem i am facing, In editor i pasted this code and saved it. INPUT CODE : <table class="ttmarkcust" width="499" height="233" border="0" > <tr> <td class="tttimage" width="266" rowspan="2"><img src="#" width="243" height="100" /></td> <td class="tttprice" width="110" height="60">Rs.999/-</td> <td class="tttdiscount" width="101">75% OFF!</td> </tr> <tr> <td class="tttcoupons" height="66" colspan="2">SUPERHOTDEAL</td> </tr> <tr> <td class="tttvo"> <a href="#"><img src="#" width="150" height="42" /></a></td> <td class="tttbn" colspan="2"><a href="#"><img src="#" width="150" height="42" /></a> <br /></td> </tr> </table> When i click the post again and clicked Edit then SHOW SOURCE in editor i am seeing these codes: its filtering the code OUTPUT CODE: <table width="499" border="0"> <tr> <td width="266" rowspan="2"><img src="#" width="243" height="100" alt="image"></td> <td width="110" height="60">Rs.999/-</td> <td width="101">75% OFF!</td> </tr> <tr> <td height="66" colspan="2">SUPERHOTDEAL</td> </tr> <tr> <td> <a href="#"><img src="#" width="150" height="42" alt="image"></a></td> <td colspan="2"><a href="#"><img src="#" width="150" height="42" alt="image"></a> <br></td> </tr> </table> this is the htmLAWED file: https://github.com/Elgg/Elgg/blob/master/mod/htmlawed/vendors/htmLawed/htmLawed.php please help guys, i dont want filter to table and its classes, please help! Thank you
-
I'm trying to install this rss reader into an Elgg system. http://www.w3schools.com/php/php_ajax_rss_reader.asp But I'm getting these error messages: Warning: DOMDocument::load() [domdocument.load]: URL file-access is disabled in the server configuration in/home/www/mydomain.com/news/getrss.php on line 16 Warning: DOMDocument::load(http://search.popurls.com/rss/apple) [domdocument.load]: failed to open stream: no suitable wrapper could be found in /home/www/mydomain.com/news/getrss.php on line 16 Warning: DOMDocument::load() [domdocument.load]: I/O warning : failed to load external entity "http://search.popurls.com/rss/apple" in/home/www/mydomain.com/news/getrss.php on line 16 Fatal error: Call to a member function getElementsByTagName() on a non-object in/home/www/mydomain.com/news/getrss.php on line 20 Is that something anyone can help with, or am I not supplying you with enough information? Any help or comment is deeply appreciated. Thanks.