Skip to content
View andcam's full-sized avatar

Block or report andcam

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Wordpress: Allow HTML in term descri... Wordpress: Allow HTML in term descriptions (disable KSES filter)
    1
    /*
    2
     * Allow HTML in term descriptions.
    3
     *  https://developer.wordpress.org/reference/functions/wp_filter_kses/
    4
     *
    5
     */
  2. Wordpress - allow SVG media uploads Wordpress - allow SVG media uploads
    1
    function ljxdm_upload_mime_types( $mimetypess ) {
    2
    	$mimes['svg'] = 'image/svg+xml';
    3
    	return $mimes;
    4
    }
    5
    add_filter( 'upload_mimes', 'ljxdm_upload_mime_types' );
  3. Configure Exim on cPanel to use Mail... Configure Exim on cPanel to use Mailgun SMTP
    1
    Section: AUTH
    2
    mailgun_login:
    3
    driver = plaintext
    4
    public_name = LOGIN
    5
    hide client_send = : smtp.user@mail.domain.com : password
  4. various methods to find and list ope... various methods to find and list open ports
    1
    # tcp ports and services
    2
    
                  
    3
    egrep -w '(80|22|443)/tcp' /etc/services
    4
    
                  
    5
    # netstat list of open ports