Sep 21, 2018 | SSH | coding, server management, ssh, WHM
We often get support tickets from users worried that WHM is reporting that the tmp directory is either full or getting near to full and don’t know how to prevent this from happening. If you have root access to your server you can use tmpwatch to regularly purge...
Sep 21, 2018 | Coding, Web Design | coding, php, shortcuts
The PHP ternary operator is a shorthand way of writing an if/else statement. The logic of the Ternary Operator is // basic ternary logic $result = (condition) ? return if true : return if false ; A working example would be something like // working example of ternary...