The Blog

Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel

Posted on

http://blogs.msdn.com/b/astebner/archive/2005/09/13/465401.aspx

http://www.experimentalspace.com/index.php/2008/04/error-when-trying-to-install-full-visual-studio-you-must-uninstall-all-the-pre-release-products-in-a-specific-order-before-you-can-continue-with-setup/

I tried to install a new version of windows services that packed into 1 setup.msi and encounter the above mentioned error. To resolve it I tried google read lots of but then find the following article

Read More

Posted in Uncategorized Leave a comment

Postfix Requires TLS‎ in PLESK 10.x

Posted on

Edit /etc/postfix/master.cf file

Original Value is like that:

submission inet n – – – – smtpd -o smtpd_enforce_tls=yes -o smtpd_tls_security_level=encyrpt-o smtpd_sasl_auth_enable=yes -o smtpd_client_restrictions=permit_sasl_authenticate d,reject -o smtpd_sender_restrictions= -o smtpd_proxy_filter=127.$

Change it as like as this one

submission inet n – – – – smtpd -o smtpd_enforce_tls=no -o smtpd_tls_security_level=may -o smtpd_sasl_auth_enable=yes -o smtpd_client_restrictions=permit_sasl_authenticate d,reject -o smtpd_sender_restrictions= -o smtpd_proxy_filter=127.$

Then start postfix, that removes STARTTLS requirement at postfix submission service.

By the way, the command to make postfix accept the changed settings is:

postfix reload

Posted in PLESK Leave a comment

Executing SQL directly in Symfony2 Doctrine

Posted on

Ok, so I’m moving project from non framework PHP to Symfony2, and it goes very nice, except of Doctrine, I’m sure it’s me. I’ve been using MySQL for last 8 years and DQL vs SQL to me feels like i.e. taking snowboard for the first time, after skiing for 30 years. What I do after 30 min. of trying. I’m going back to rental place and I switch to skis. Below one can find skis.
Read More

Posted in Frameworks, PHP, Symfony3 29 Comments
« Previous PageNext Page »