Uncategorized

Plesk SOAP Failed , mail server issue SM4 and SM5

Posted by on March 9, 2008 at 6:24 pm

Unable to delete DSMail service for domain: Unable to remove domain mail: mailmng failed: SOAP failed. Failed in sending message ———————- Debug Info ——————————- 0: C:\Program Files\SWsoft\Plesk\admin\plib\common_func.php3:153  psaerror(string ‘Unable to delete DSMail service for domain: Unable to remove domain mail: mailmng failed: SOAP failed. Failed in sending message’) ————————————————– check the component under server and [...]

Plesk httpd.include files for httpd.conf

Posted by on February 24, 2008 at 11:17 pm

Customizable httpd.include per domain In Plesk each domain has virtual hosts configuration stored in a separate file: /home/httpd/vhosts/<domain-name>/conf/httpd.include This file is overwritten each time the virtual host configuration is changed, thus any manual alterations made to the file are discarded. To use custom directives or redefine those inserted by Plesk, you need to create the [...]

sql server 2000 change ownership of tables

Posted by on February 24, 2008 at 7:47 pm

DECLARE @old sysname, @new sysname, @sql varchar(1000) SELECT @old = ‘OLDUSERNAME’ , @new = ‘dbo’ , @sql = ‘ IF EXISTS (SELECT NULL FROM INFORMATION_SCHEMA.TABLES WHERE QUOTENAME(TABLE_SCHEMA)+”.”+QUOTENAME(TABLE_NAME) = ”?” AND TABLE_SCHEMA = ”’ + @old + ”’ ) EXECUTE sp_changeobjectowner ”?”, ”’ + @new + ”” EXECUTE sp_MSforeachtable @sql ====================================== changing stored procs ======================== SELECT [...]

Using Curl to access remote content

Posted by on February 20, 2008 at 8:43 pm

Description cURL is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, FILE and LDAP. cURL supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos…), file transfer resume, proxy tunneling and [...]

Smartermail timeout when executing large imports

Posted by on February 17, 2008 at 9:48 pm

You will need to edit the web.config file to a longer execution timeout other then 240. the file is in the mr5 folder. <httpRuntime maxRequestLength=”10240″ /> that you can change to <httpRuntime maxRequestLength=”10240″ executionTimeout=”240″ />