Send Emails From Your Web Server With the PHP mail() Function and PHPMailer

Most businesses choose to create a professional email account to boost their credibility and build customer trust. To accomplish this, you just need to buy a domain and set up your business email on an email client or a server. If you build your website or web application with the PHP programming language, you can…

How to run a PHP script using a custom PHP executable in Plesk Scheduled Tasks?

https://support.plesk.com/hc/en-us/articles/12377377419287-How-to-run-a-PHP-script-using-a-custom-PHP-executable-in-Plesk-Scheduled-Tasks- Log into Plesk. Go to Tools & Settings > Scheduled Task > Add Task; At Script Path, specify the full path to the PHP script on the server. If arguments are needed, specify that accordingly in the with arguments field; At Run field, specify the desired frequency the task should be run; Choose the Run a PHP…

How to reset ColdFusion Administrator Password

ColdFusion: here’s how to reset the administrator password. To update a lost ColdFusion password, follow the steps below. Remote Desktop into the server. Navigate to the ColdFusion folder I.E: C:\ColdFusion10\cfusion\bin and run passwordreset.bat. Enter 1 for the option to change the administrative password for ColdFusion. Enter in the new, secure password.  Re-enter the password once more to confirm the change. You…

Install Linux Centos 7, Nginx, MySQL, Postgres, PHP 8.0

Update LANG Edit environtment vi /etc/environment add these lines… LANG=en_US.utf-8 LC_ALL=en_US.utf-8 Update and upgrade Core yum -y update yum -y upgrade Install NGINX yum install epel-release yum install nginx Start NGINX and Enable Service systemctl start nginx systemctl enable nginx Install PHP 8.0 Enable Remi Repo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm Check yum –disablerepo=”*” –enablerepo=”remi-safe” list php[7-9][0-9].x86_64…