Some of search engines remove the trailing slash from URLs that look like directories – e.g. Yahoo does it while listing on their search engine. This could result into duplicated content problems when the same page content is accessible under different urls. Apache gives some more information in the Apache Server FAQ. Let’s have a … Read More “Add Trailing Slash to URL (.htaccess)” »
#!/bin/bash MYSQLCMD=mysql for db in `echo show databases | $MYSQLCMD | grep -v Database`; do for table in `echo show tables | $MYSQLCMD $db | grep -v Tables_in_`; do TABLE_TYPE=`echo show create table $table | $MYSQLCMD $db | sed -e’s/.*ENGINE=\([[:alnum:]\]\+\)[[:space:]].*/\1/’|grep -v ‘Create Table’` if [ $TABLE_TYPE = “InnoDB” ] ; then mysqldump $db $table > … Read More “Script to convert InnoDB tables to MyISAM” »
Following are the few sites from where we can test our mailserver and domain for testing, reputation and blacklsiting. Blacklist Checking https://www.blacklistmaster.com/check?t=<ip address> DKIM Testing http://dkimcore.org/c/keycheck IP/Domain Reputation and Scores http://www.senderbase.org/lookup/?search_string=<ip address or domain> https://www.senderscore.org/lookup.php?lookup=<ip address>&validLookup=true http://mxtoolbox.com/ Scan Website for Malware http://sitecheck.sucuri.net/
Below, you will find the services’ configuration and log file locations, which may be useful in a troubleshooting procedure. Services Control Panel Logs Error log: /var/log/sw-cp-server/error_log and /var/log/sw-cp-server/sw-engine.log Access log: /usr/local/psa/admin/logs/httpsd_access_log Panel log: /usr/local/psa/admin/logs/panel.log Services Stop: /etc/init.d/psa stop Start: /etc/init.d/psa start Restart: /etc/init.d/psa restart Configuration PHP config: /usr/local/psa/admin/conf/php.ini Panel config: /usr/local/psa/admin/conf/panel.ini Web server config: /etc/sw-cp-server/conf.d/plesk.conf … Read More “Parallels Plesk for Linux services logs and configuration files” »
Disable the mail service for the domain.tld subscription: Go to Subscriptions > domain.tld > Mail > Change Settings. Uncheck Activate mail service on domain and click OK. You can also disable the mail service on the subscription using the command-line utility mail: /usr/local/psa/bin/mail –off domain.tld To disable the mail service for every subscription on the … Read More “Plesk: Disable Mail Service for domain” »