Showing posts with label Software Development. Show all posts
Showing posts with label Software Development. Show all posts

Saturday, November 24, 2012

BugZilla Resources & Information

Linux Distribution:

Upgrading Virtual Bugzilla Server:

Required Modules for Linux (Ubuntu shown):

  • Required: apache2 mysql-server libappconfig-perl libdate-calc-perl libtemplate-perl libmime-perl build-essential libdatetime-timezone-perl libdatetime-perl libemail-send-perl libemail-mime-perl libemail-mime-modifier-perl libdbi-perl libdbd-mysql-perl libcgi-pm-perl
  • Optional: apache2-mpm-prefork libapache2-mod-perl2 libapache2-mod-perl2-dev libchart-perl libxml-perl libxml-twig-perl perlmagick libgd-graph-perl libtemplate-plugin-gd-perl libsoap-lite-perl libhtml-scrubber-perl libjson-rpc-perl libdaemon-generic-perl libtheschwartz-perl libtest-taint-perl libauthen-radius-perl libfile-slurp-perl libencode-detect-perl libmodule-build-perl
  • Even More Optional: libtemplate-perl-doc bzr

Bugzilla Configuration:

BugZilla Email Configuration:

Security:

SSH/SFTP:

IIS Related:

How-To:

Troubleshooting:

Saturday, April 5, 2008

Required file 'alink.dll with IAlink3' could not be found

After reinstalling Visual Studio and attempting to open and build a new project on my Vista system, I encountered the following error:

"Required file 'alink.dll with IAlink3' could not be found"

So that time may be saved in the future for the next who encounters this error, the following steps will solve this problem:

1. Explore the Visual Studio installation source and go to the
"\WCU\dotNetFramework\dotNetMSP\x86" directory;

2. Install the updates in this order: Windows6.0-KB110806-x86.msu, Windows6.0-KB929300-x86.msu, Windows6.0-kb930264-x86.msu (if the last item is not in the directory as some have noted, it can be downloaded here);

3. Reboot your system and build the affected solution.

It's the little things about software development that make coding a profession only for the patient...

Wednesday, November 21, 2007

Could not load file or assembly 'System.Data.DataSetExtensions, Version=2.0.0.0

I encountered this error today when compiling a project of mine, and luckily it was one of the more straightforward problems to correct.

All that was required was to change the "2.0.0.0" to "3.5.0.0" in the web.config file and all was well. It look as though Visual Studio 2008 doesn't automatically change a lot of the references during a project upgrade. If only most of the errors I came across were this easy to solve...