By Greg Nowak, 5 December, 2021 SSH Tips and Tricks Kick user from SSH server: sudo pkill -HUP -u [USERNAME] Tags server
By Greg Nowak, 1 October, 2021 Check defined constants - PHP Code Snippet <?php define('DISALLOW_FILE_EDIT', true); echo "\n DISALLOW_FILE_EDIT is: " . constant('DISALLOW_FILE_EDIT') . "\n"; //$constants = get_defined_constants(); //var_dump($constants); // pretty large list ?> Key words: define defined constant constants Tags Script php Linux server