plesk

Ubuntu MagicSpam Plesk can’t install needs libmilter package

Getting some error like: magicspam-plesk depends on libmilter1.0.1; Trying to install MagicSpam on Unbuntu 12.04 and Plesk 11? apt-get install libmilter-dev   root@blue:/tmp# sudo dpkg -i magicspam-plesk-1.0.5-3-precise64-postfix10.amd64.deb (Reading database … 188972 files and directories currently installed.) Preparing to replace magicspam-plesk 1.0.5-3 (using magicspam-plesk-1.0.5-3-precise64-postfix10.amd64.deb) … Unpacking replacement magicspam-plesk … dpkg: dependency problems prevent configuration of magicspam-plesk:…

Read More...

Apache Force SSL https on directory

edit your .htaccess file: RewriteEngine OnRewriteCond %{SERVER_PORT} 80RewriteCond %{REQUEST_URI} DirectoryNameRewriteRule ^(.*)$ https://YourDomain.com/DirectoryName/$1 [R,L] this will force https on the directory “DirectoryName” replace DirectoryName with your directory and YourDomain.com with your domain.

Read More...

Plesk Small Business Panel 10.2.0 Upgrade Broke Plesk Control Panel :8443

After trying to upgrade Plesk Small Business Panel 10.2.0, I got some errors and was unable to load my plesk admin control panel on port 8443. Just a White Screen… I found this on parallels forum: location: /opt/psa/admin/bin autoinstaller –select-release-latest –upgrade-installed-components –ignore-key-errors when running, looked very similar to the bootstrapper.sh fix… and guess what? running…

Read More...

password protect directory in ubuntu plesk .htaccess .htpasswd

  so you want to password protect your apache directory so people can’t sneak a peek. you’ll need two files in your directory: .htaccess and .htpasswd .htaccess source AuthType Basic AuthName “restricted area” AuthUserFile /var/www/vhosts/YourDomain.com/httpdocs/.htpasswd require valid-user   AuthUserFile is the file path on your server to the .htpasswd file. on ubuntu + plesk 9…

Read More...