By enabling ‘concurrent mailbox access’ option on server, you can access the mailbox from your local PC and using iPhone at same time. To enable this on MailEnable please follow the bellow steps: 1. Log into MailEnable Administrator. 2. Go to MailEnable Management 3. Click on Servers–>services. 4. Rightclick on POP, select ‘properties’–>advanced 5. Select the option “Allow concurrent mailbox access”. 6.Then restart MailEnable. log into MailEnable Administrator–> MailEnable Management–>Servers–>Services->POP (properties)–> advanced–> allow concurrent mailbox access If you require help, contact SupportPRO Server Admin
On August 25, 2011, Linux marked an important milestone – its 20th anniversary. What began as a small personal experiment eventually transformed into one of the most powerful and widely used operating systems in the world. The Beginning of Linux In 1991, Finnish computer science student Linus Torvalds shared a message on a Usenet newsgroup announcing a hobby project. He described his work as a free operating system designed for 386 AT computers and invited feedback from the developer community. At the time, he modestly explained that the project would not become something large or professional. However, that simple announcement laid the foundation for what would later become Linux — an open-source system that reshaped modern computing. From Hobby to …
To enable the PPP feature for a VPS, we first need to check whether the modules ppp_async and ppp_deflate are loaded in the kernel. You can check this by executing the following commands. # modprobe ppp_async# modprobe ppp_deflate Or you can list the active modules using the command lsmod. # lsmod | grep pppppp_deflate 39168 0zlib_deflate 52760 1 ppp_deflateppp_async 45184 0crc_ccitt 6337 1 ppp_asyncppp_generic 20165 6 ppp_deflate,ppp_asyncslhc 30561 1 ppp_generic Steps to enable the PPP feature.1. # vzctl set VEID –features ppp:on –save2. # vzctl set VEID –devices c:108:0:rw –save3. # vzctl exec VEID mknod /dev/ppp c 108 04. # vzctl exec VEID chmod 600 /dev/ppp5. Restart the VPS using the command # vzctl restart VEID To check the PPP …
You can install litespeed on a WHM/Cpanel server by simply following the bellow steps. 1. Log into server via SSH as ‘root’ user. 2. Go to /usr/src cd /usr/src 3. Download the installation file using wget. wget http://www.litespeedtech.com/packages/cpanel/lsws_whm_plugin_install.sh 4. chmod 700 lsws_whm_plugin_install.sh 5. sh lsws_whm_plugin_install.sh ( ./lsws_whm_plugin_install.sh) 6. rm -rf lsws_whm_plugin_install.sh 7. Log into WHM. Go to manage pluggins section. 8. Start the installation procedure by clicking on ‘Install LiteSpeed’. 9. This will ask you to enter your license information and admin password. Enter these information and click on ‘Build matching PHP Binary’. (Please do not tick the box to start LiteSpeed immediately). 10. Click on Switch to LiteSpeed 11. Click on Admin Web Console and login 12. Final stages …
SMTP (Simple Mail Transfer Protocol) is the standard protocol used to send emails across the internet. It acts as a bridge between email clients and mail servers, ensuring that outgoing messages are transmitted to the recipient’s mail server efficiently. SMTP typically operates on ports 25, 465, and 587, and is responsible only for sending emails. For receiving emails, protocols like IMAP and POP3 are used. A properly configured SMTP service is essential for smooth email delivery. This includes correct port settings, authentication, and server permissions. If any of these are misconfigured, it can lead to errors such as failed email delivery, connection timeouts, or authentication failures. Understanding the Error If you encounter the error: “Message not sent. Server replied: Connection …
How to Fix “PHP Is Not Recognized as an Internal or External Command” in Windows
If you see this error in Command Prompt: it means Windows cannot find the PHP executable file. This happens when the PHP installation directory is not added to the system PATH environment variable. Let’s understand why this happens and how to fix it properly. Why This Error Occurs Windows uses a special environment variable called PATH to locate executable files when you run commands in Command Prompt. If PHP was: then its installation directory may not have been added to PATH. When that happens, Windows doesn’t know where php.exe is located — and the command fails. What Is the PATH Variable? The PATH variable is a list of directories that Windows searches when you type a command. For example: If …
You can recreate qmail’s queue by following the steps given below, but while recreating all the current messages will be removed from the queue and cannot be restored. So it is better to take backup of messages before starting. Steps: 1. log into server and stop qmail #/etc/init.d/qmail stop 2. cd /var/qmail/queue 3. rm -rf info intd local mess remote todo 4. mkdir mess 5. for i in `seq 0 22`; do mkdir -p mess/$i done cp -r mess info cp -r mess intd cp -r mess local cp -r mess remote cp -r mess todo chmod -R 750 mess todo chown -R qmailq:qmail mess todo chmod -R 700 info intd local remote chown -R qmailq:qmail intd chown -R qmails:qmail …
Email providers are services that allow users to send receive and store email messages over the internet They offer secure mail servers spam filtering user authentication and access through webmail mobile apps and email clients Popular email providers support protocols like IMAP POP and SMTP to ensure reliable communication across devices. Follow the steps below to create an email account on an Android mobile device. From the Home screen, tap the Apps icon. Open the Email app (or Mail, depending on your device). Tap Add Account or Next. Enter the following details: Email address – Your full email address Password – Your email password Tap Next. Choose the account type: IMAP (recommended) or POP Incoming Server Settings Enter the following …
If you want to disable redirection to SSL connection while accessing WHM, cPanel, Webmail, please follows these steps. Login to WHM >> Tweak Setting >> Uncheck the following options under Redirection. Always redirect users to the ssl/tls ports when visiting /cpanel, /webmail, etc. Also you have to uncheck the following option under Security in Tweak Settings. Require SSL for all remote logins to cPanel, WHM and Webmail. This setting is recommended. Also you can disable those options from the shell. SSH to the server as root. Open /var/cpanel/cpanel.config and set the following options to 0 (zero). alwaysredirecttossl requiressl – alwaysredirecttossl=0 requiressl=0 Save the file and exit. If you require help, contact SupportPRO Server Admin Partner with SupportPRO for 24/7 proactive cloud support …
When managing Linux servers, administrators often need to move thousands of files from one directory to another. However, attempting to move a large number of files using the standard mv command may result in an error. This guide explains why the “Argument list too long” error occurs and how to safely move large numbers of files without issues. Why the Error Occurs If you try to move a huge number of files (for example, more than 50,000 files) using: you may see the following error: Reason Linux shells expand * into all filenames before executing the command.When the total character length exceeds the system’s allowed limit, the command fails. This limitation is controlled by the system’s maximum argument length (ARG_MAX). …