- Go to Settings.
Click Custom domains.
Click Start setup.
Use a domain you own that is registered elsewhere
Click Use a domain from a third party.
Click Next.
Enter your domain. - If you are prompted to verify ownership, skip the remaining steps in this section and follow the instructions later in this page. Then try again.
- Click Next.
Follow the on-screen instructions to connect to a third-party domain registrar.
These steps may be different depending on your registrar. For more help, go to your domain registrar’s help resources.
Click Done.
Postfix Mail Queue
Postfix Mail Queue Management
To view the number of emails in the Postfix mail queue
mailq
Postfix delete mail queue: postsuper command
To delete all emails in the queue
postsuper -d ALL
To remove all mails in the deferred queue
postsuper -d ALL deferred
To remove a particular mail from the queue
postsuper -d mail_id
To remove messages from a particular domain.
mailq | grep xdomain.com | awk {'print $1'} | xargs -I{} postsuper -d {}
To remove all mails from a particular mail id
mailq | tail +2 | awk 'BEGIN { RS = "" } / testmail@xdomain\.com$/ { print $1 }' | tr -d '*!' | postsuper -d -
To remove all mails which have testmail@xdomain.com in the entire mail.
for id in `postqueue -p|grep '^[A-Z0-9]'|cut -f1 -d' '|sed 's/*//g'`; do postcat -q $id | grep testmail@domain.com && postsuper -d $id; done
To remove all mails which have a particular pattern like “.de”
for id in `postqueue -p|grep '^[A-Z0-9]'|cut -f1 -d' '|sed 's/*//g'`; do postcat -q $id | grep “.de” && postsuper -d $id; done
Postfix queue structure
/var/spool/postfix/maildrop /var/spool/postfix/hold /var/spool/postfix/incoming /var/spool/postfix/active /var/spool/postfix/deferred /var/spool/postfix/corrupt
Display the list of Queued mails , deferred mails, and Pending mails
postqueue -p
To Display the mail header and contents
postcat -q “Queue ID”
To check the total number of mails in the queue
postqueue -p | grep -c "^[A-Z0-9]"
To attempt to send one particular mail
postqueue -i “Queue ID”
Force mails on Postfix
To reattempt delivery of all mails in the queue
postqueue -f
HTTP 503 Service Unavailable Error
- What’s the HTTP 503 Service Unavailable Error?
- 503 Service Unavailable
- 503 Service Temporarily Unavailable
- HTTP Server Error 503
- HTTP Error 503
- Error 503 Service Unavailable
- The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
- Service unavailable 503 wordpress
Find some fixes below:
1. Temporarily Deactivate all WordPress Plugins: Rename the plugin folder and create an empty plugin folder.
2. Deactivate the WordPress Theme: Deactivate current Theme. Switch to default theme. You can edit database.
Click into the “wp_options” table, then click on the “Search” tab. You will want to search under the “option_name” for template.
3. Temporarily Disable Content Delivery Network (CDN)
4. Limit WordPress ‘Heartbeat’ API by adding following function to functions.php of your action theme.
add_action( 'init', 'stop_heartbeat', 1 ); function stop_heartbeat() { wp_deregister_script('heartbeat'); }
5. Increase Your Server’s Resources
6. Review Your Logs and Enable WP_DEBUG
NTLRD is missing | Windows XP
- NTLDR is missing
- Press any key to restart
- NTLDR is missing
- Press Ctrl Alt Del to restart
- Boot: Couldn’t find NTLDR
- Please insert another disk
How to Fix Errors (options)
- Reset all internal data and power cables.
- Restart your computer.
- Disconnect any external drives.
- Try changing the boot order in BIOS.
- Check the hard disk and other drive settings in BIOS and ensure they’re correct.
- Restore the NTLDR and ntdetect.com files from the Windows XP CD.
- Repair or replace the boot.ini file.
- Write a new partition boot sector to the Windows XP system partition.
- Repair the Windows XP master boot record.
- Try replacing the IDE cable.
- Update your motherboard’s BIOS.
- Perform a repair installation of Windows XP.
- Perform a clean installation of Windows XP.
- Replace the hard drive and then perform a new installation of Windows XP.
How to reset admin password | Perfex CRM
If you fail to reset your password from the UI you have an option to reset the password from phpmyadmin.
- Login to control panel (cPanel, plesk, DirectAdmin, CWP pro etc)
- Go to phpmyadmin
- Select the database
- Select table tblstaff
- Find your account (you can track it by the email field)
- In the password column paste the following hash:
$P$Be1LVicdQJb9CwOg5WgEz6xnq8SCqT/
This is password: 123123
Now you can easily login with your email and this password.
- « Previous Page
- 1
- …
- 5
- 6
- 7
- 8
- 9
- …
- 18
- Next Page »