>

Jun

4


AutoMedia Inserter

📥 AutoMedia Inserter – Smart Media Embedder for WordPress AutoMedia Inserter is a powerful and flexible WordPress plugin that allows you to automatically insert audio, video, or image players into posts based on keywords found in the post title. Ideal for blogs with rich multimedia content such as audio stories, video episodes, or image-based documentation. 🚀 Key Features 🔍 Detects keywords in post titles and embeds associated media automatically 🎧 Supports audio, video (MP4, YouTube, Vimeo), and image formats 🎚️ Choose media placement: top, center, bottom, or mixed 🔁 Inline...
Read More


Plugin Resource Profiler

Plugin Resource Profiler The Plugin Resource Profiler is a WordPress plugin that helps site administrators monitor the resource usage of active plugins. It offers a clear breakdown of: Hook count per plugin Number of PHP files and classes loaded Detection of slow WordPress hooks (>50ms) Log of slow hooks with plugin origin Admin interface with sorting and filtering options Features Overview 1. Hook Usage Analysis Displays the number of WordPress hooks registered by each plugin. Useful to understand which plugin adds the most filters/actions. 2. File and Class Count Shows...
Read More


Installing OpenVPN Access Server

Hi there, in this post I'll create some bash files in linux (ubuntu) for easy installation of openvpn access server. So, all we need is a fresh or old installation of linux (I recomment ubuntu). In the terminal we need to create the file with extension ".sh". sudo nano openvpn.sh or sudo vim openvpn.sh We gonna write into the file the following lines for Ubuntu 18(x86_64), Ubuntu 20(x86_64),Ubuntu 20(arm64), Ubuntu 22(x86_64), Ubuntu 22(arm64). Ubuntu 18(x86_64) - download file #!/bin/bash apt update wait apt upgrade -y wait echo The update was...
Read More


Installing Apache Guacamole on Ubuntu 20.04

Install Guacamole Server Install all required dependencies sudo apt install build-essential libcairo2-dev libjpeg-turbo8-dev sudo apt install libpng-dev libtool-bin libossp-uuid-dev libvncserver-dev sudo apt install freerdp2-dev libssh2-1-dev libtelnet-dev libwebsockets-dev sudo apt install libpulse-dev libvorbis-dev libwebp-dev libssl-dev sudo apt install libpango1.0-dev libswscale-dev libavcodec-dev libavutil-dev sudo apt install libavformat-dev  Download the Guacamole source code wget...
Read More


File upload with PHP

First, ensure that PHP is configured to allow file uploads. In your "php.ini" file, search for the file_uploads directive, and set it to On if it's set to OFF: file_uploads = On Create The HTML form that allow users to choose the image file they want to upload: <html> <body> <form action="upload.php" method="post" enctype="multipart/form-data">   Select the image to upload:   <input type="file" name="file_to_upload" id="file_to_upload">   <input...
Read More