This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for i in $(find /home/*/public_html -maxdepth 0); do u=$(echo $i | awk -F '/' '{print $3}') && chown -R $u:$u $i; done | |
| for i in $(grep DocumentRoot /usr/local/apache/conf/httpd.conf | awk '{print $2}' | grep -v /usr/local/apache/htdocs); do chgrp nobody $i; done | |
| find /home/*/public_html -type d -exec chmod 755 '{}' ';' | |
| find /home/*/public_html -type f -exec chmod 644 '{}' ';' | |
| find /home/*/public_html -iwholename '*.cgi' -exec chmod 755 '{}' ';' | |
| find /home/*/public_html -iwholename '*.pl' -exec chmod 755 '{}' ';' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a href="index.php?option=com_user&task=logout&return=aW5kZXgucGhw" title="Sign Out">Sign Out</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function snippet($text,$length=100,$tail="...") { | |
| $text = strip_tags($text); | |
| $text = trim($text); | |
| $txtl = strlen($text); | |
| if($txtl > $length) { | |
| for($i=1;$text[$length-$i]!=" ";$i++) { | |
| if($i == $length) { | |
| return substr($text,0,$length) . $tail; | |
| } | |
| } |
NewerOlder