Our biggest sale of 2019 is live until Jan 1st 2020! Get 50% off Websites Security plans, Server Management plans, Malware Cleanup & Removals, Website Firewall protection and more. Our website security solutions include website monitoring, Malware detection, Hack cleanup, Firewall protection and much more! https://attacker.net/website-security https://attacker.net/website-security-plans-pricing You can check our Free Website Security… Continue reading Attacker.NET 50% End of Year Promotion
Tag: DirectAdmin
Professional Linux & Windows Server Management & Security Services (cPanel, Plesk, DirectAdmin and others)
We provide a wide range of server management plans. You can completely customize your order or feel free to contact us. All of our experts are highly trained and certified. You can rest assured that you’re always in safe hands. Our Server Management services: Linux Server management Windows Server Management VPS Node management Feel free to… Continue reading Professional Linux & Windows Server Management & Security Services (cPanel, Plesk, DirectAdmin and others)
FREE Backup space & FREE setup fee – Limited time for new signups!
https://Attacker.NET/ * Current specials:– We’re offering FREE 20GB off-site backup space with all of our server management plans for a limited time, for new signups.- We’re offering FREE SETUP and FREE 2nd month for transferring your server management services to us! For more information, Please contact us at [email protected] #cpanel #plesk #cloudlinux #directadmin #vps #server #hosting… Continue reading FREE Backup space & FREE setup fee – Limited time for new signups!
Updating Apache to the latest version on DirectAdmin
You can check the current version of apache by running /usr/sbin/httpd -v CustomBuild – current If you’re using custombuild (as most new boxes are), run the following cd /usr/local/directadmin/custombuild ./build update ./build apache ./build php n ./build rewrite_confs CustomApache – end-of-life If you are using customapache with the 1.3 version of apache to the most recent, run… Continue reading Updating Apache to the latest version on DirectAdmin
How to Optimize MySQL
CentOS There is a default my.cnf that comes with mysql (4+5) that will make mysql run a bit quicker if you have 2+ gig of ram cp -f /usr/share/mysql/my-large.cnf /etc/my.cnfThere is also my-huge.cnf, or my-medium.cnf depending on your hardware setup. Check the contents of these my*.cnf files for the one that’s right for you.… Continue reading How to Optimize MySQL
Setting up DA with an SSL certificate
You can switch DirectAdmin to use SSL instead of plain text. -> https instead of http on port 2222. Note that this is for the DirectAdmin connection on port 2222, *not* for apache. If you’re tryting to setup a certificate for your domain through apache, use this guide. If you do not have your own certificates,… Continue reading Setting up DA with an SSL certificate
How to upgrade mysql with custombuild
To upgrade mysql using the custombuild script, do the following: cd /usr/local/directadmin/custombuild ./build set mysql 5.1 ./build set mysql_inst yes ./build set mysql_backup yes ./build update ./build mysql Where mysql can be 5.0, 5.1 or 5.5. A full raw sql backup will be run prior to the upgrade if you have mysql_backup=yes set. It goes without… Continue reading How to upgrade mysql with custombuild
Change email password without logging in on DirectAdmin
If you would like your pop users to be able to change their own email passwords without having to login to the control panel, simply give them this link: http://www.domain.com:2222/CMD_CHANGE_EMAIL_PASSWORD Where www.domain.com is either your domain, hostname, or IP address. More information on this function and how you can use it via API can be… Continue reading Change email password without logging in on DirectAdmin
How to forward a website to another url
There are several ways to accomplish this task, but the simplest to understand is to use php. To do this, you need to create the page that will do the forwarding. This can be any page, as long as it ends in “.php”. If you are trying to redirect a domain, you’d create “index.php” inside… Continue reading How to forward a website to another url
Adding custom modules to apache for custombuild – DirectAdmin
If you want to add any extra modules to apache in custombuild, they’ll need to be compiled in. Any module that needs to be compiled in will have a –with-module type flag which will need to be used. To add this flag, run the following: cd /usr/local/directadmin/custombuild mkdir -p custom/ap2 cp configure/ap2/configure.apache custom/ap2/configure.apache vi… Continue reading Adding custom modules to apache for custombuild – DirectAdmin