Archive for the ‘Plesk’ Category



Windows 2003 plesk 8.4 – IP address conflict

Wednesday, August 6th, 2008

While working on a windows 2003 server which has a plesk 8.4 control panel, I got the following error:

Unable to add ip xx.xx.xx.xx with mask 255.255.255.0 to interface PublicNetwork, WMI error code 42
Execute file name: C:\Program Files\SWsoft\Plesk\admin\bin\ifmng.exe

This means that there is an IP conflict, to get this fixed – you have to contact your dedicated server provider and ask them to remove the IP address or to provide a new IP address.

This article is released by SupportFacility.Com — the leaders in providing outsourced technical support, live chat support & help desk support for web hosts. Interested ? Opt for a trial now.


Plesk: Enable allow_url_fopen for a domain

Thursday, July 3rd, 2008

Assuming that you have a plesk dedicated server and a domain hosted on it, and you need allow_url_fopen to be “ON” (enabled). Just follow the below steps to get this done.

Create a vhost.conf file under /home/httpd/vhost/domain.com/conf and add the following code.


<Directory /home/httpd/vhost/domain.com/httpdocs/>
php_admin_value allow_url_fopen On
</Directory>

Once done, you will have reconfigure plesk and the command to do so is:

root# /usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name=domain.com

Now, restart apache on the server.

That’s it!

This article is released by SupportFacility.Com — the leaders in providing outsourced technical support, live chat support & help desk support for web hosts. Interested ? Opt for a trial now.


Disable safe mode for subdomain on plesk

Wednesday, June 25th, 2008

If you need to disable safe more for subdomain on a plesk server, follow this:

Edit the file:

/var/www/vhosts/domain.com/subdomains/<subdomain-name>/conf/vhost.conf

Add the below code in this vhost.conf :

<Directory /var/www/vhosts/domain.com/subdomains/<subdomain-name>/httpdocs>
php_admin_flag safe_mode off
</Directory>

The, reconfigure plesk by the command:

# /usr/local/psa/admin/sbin/websrvmng –reconfigure-vhost –vhost-name=domain.com

Now restart Apache with the command:

# /etc/rc.d/init.d/httpd restart

That’s it!

This article is released by SupportFacility.Com — the leaders in providing outsourced technical support, live chat support & help desk support for web hosts. Interested ? Opt for a trial now.


Upgrade from plesk 8.3 to 8.4 on windows 2003 server

Friday, June 20th, 2008

You have a windows server with plesk 8.3 and are looking to upgrade it to plesk 8.4 , to do this first download the installer from here on your server.

Then install it and follow the steps, this may take time depending on number of domains present on the server. Once finished you are requested to reboot the server and then try access plesk with port 8443 and you will see that you have plesk 8.4 login screen.

This worked perfectly for us, try at your own risk :)

This article is released by SupportFacility.Com — the leaders in providing outsourced technical support, live chat support & help desk support for web hosts. Interested ? Opt for a trial now.


Apache error on a plesk server

Saturday, May 24th, 2008

On a plesk server got the below apache error in the error logs:

Address already in use: make_sock: could not bind to address [::]:443 no listening sockets available, shutting down

First we will find which process is using the port, the command is:

root@server# /usr/sbin/lsof -i | grep http

Once you get the PID of the process kill that PID and restart apache server.

This article is released by SupportFacility.Com — the leaders in providing outsourced technical support, live chat support & help desk support for web hosts. Interested ? Opt for a trial now


Change open_basedir for a domain on a linux plesk server

Monday, April 21st, 2008

In plesk if you need to set open_basedir to none, for this do the following:

nano /var/www/vhosts/yourdomain.com/conf/vhost.conf

add the following code in vhost.conf

<Directory /var/www/vhosts/yourdomain.com/httpdocs>
php_admin_flag engine on

php_admin_value open_basedir none
</Directory>

Now, you will have to reconfigure plesk for this domain – by the following command:

/usr/local/psa/admin/sbin/websrvmng -u —vhost-name=yourdomain.com

Then restart apache. That’s it!

This article is released by SupportFacility.Com — the leaders in providing outsourced technical support, live chat support & help desk support for web hosts. Interested ? Opt for a trial now.