HostwareSupport-Linux Hosting technical support for cPanel, Plesk, Directadmin servers

Linux Hosting technical support for cPanel, Plesk, Directadmin and No control panel servers offers and listing
http://hostwaresupport.com/

Jan 19, 2010

Plesk for Windows Webmail Error: Webmail Cannot be Found

If you are getting an error that says “File cannot be found” or if you are receiving a 404 error when you try to go to webmail.mydomain.com, this is due to the fact that default mapping application extensions do not include php support.To solve this, do the following:

1. Go to “Start” – > “Administrative Tools” -> “Internet Information Services (IIS) Manager”
2. Expand the server (local computer)
3. Expand “Web Sites”
4. Right-click on “webmail(default)” and click “Properties”
5. Go to the “Home Directory” tab
6. Click on the “Configuration” button towards the bottom.
7. In the list box that appears, if the extensions php, php3, and phtml do not exist, you have found your problem.
8. Click “Add”
9. Type the location of the file php.exe in the “Executable” field. For example: C:\Program Files\SWsoft\Plesk\Php\php.exe
10. Type: .php in the “extension” field.
11. Leave everything else as default checked. Click “OK”.
12. Repeat this setup using the same executable and adding the extensions: .php3 and .phtml
13. Exit out of everything. Webmail should be up and running now.


Webmail is not working for my domain. http://webmail.domain.com shows domain default page from plesk.

It’s because webmail support is not enabled in the mail preference.

Go through “Domains–>domain.com–>Mail–>Preference” and enable webmail for the domain.

It should fix the issue.

Jan 6, 2010

Locked in cPHulk

If you are locked out of your server due to cPHulk, run the following script via WHM:

/scripts2/doautofixer?autofix=disable_cphulkd

Example: Type the following line into your browser's address bar:

https://server1.example.com:2087/scripts2/doautofixer?autofix=disable_cphulkd

You need to install the LWP perl module (libwww-perl) and then install csf

[root@server22 csf]# sh install.sh

Configuring for OS

Checking for perl modulesfailed
You need to install the LWP perl module (libwww-perl) and then install csf
[root@server22 csf]#

To fix the error, install libwww-perl

yum install perl-libwww-perl

Jan 4, 2010

Error from park wrapper: check..

Error from park wrapper: domain.name is already configured.

OR

Unable to find out which user owns the parked domain domain.name.
===================================================

#grep username /etc/trueuserdomains

If there is entry remove.

cd /var/cpanel/users/
grep -rl parked_domain .

If any files is listing it, remove from that file.

grep parked_domain /usr/local/apache/conf/httpd/conf

If listed remove it. Then add park domain from cpanel.

Jan 3, 2010

Find our plesk panel password through shell

# cat /etc/psa/.psa.shadow


User: jigglebilly
Functions: cat

Up
Down
Retrieve Plesk Admin Password
I'm sure almost everybody knows this by now. This command will pull the password for the admin login of any plesk machine.

Enable PPP module on VPS container

PPP module in a VPS/ContainerPosted by: admin : Category: VPS Management
How to enable PPP feature in a VPS/Container?

In order to enable PPP feature for a VPS/Container, the Hardware node should have the

ppp_async
ppp_deflate

modules loaded in the kernel. To load the modules on the hardware node, execute

# modprobe ppp_async
# modprobe ppp_deflate

lsmod will list the modules those are active.

# lsmod | grep ppp
ppp_deflate 39168 0
zlib_deflate 52760 1 ppp_deflate
ppp_async 45184 0
crc_ccitt 6337 1 ppp_async
ppp_generic 20165 6 ppp_deflate,ppp_async
slhc 30561 1 ppp_generic

You now need to enable PPP feature for the VPS:

# vzctl set VEID –features ppp:on –save

Now, set ppp within the VPS:

# vzctl set VEID –devices c:108:0:rw –save
# vzctl exec VEID mknod /dev/ppp c 108 0
# vzctl exec VEID chmod 600 /dev/ppp

Now, restart the VPS

# vzctl restart VEID

Login to the VPS:

# vzctl enter VEID

See if the PPP module works in the VPS:

# /usr/sbin/pppd

You should now receive a message asking for the password or some garbage characters. If you see something else, then something is wrong