rhughes
rhughes

Reputation: 9583

Release website not recognising reference

My local website works fine.

I have uploaded the website to the server. All of the DLLs are in the bin directory, but I still get the missing reference error as you can see in the following image:

Error

The 'missing' reference is not directly used by the website, but rather is required by a library that the website uses.

My configurations are:

Server:

Local:

Upvotes: 0

Views: 32

Answers (1)

rhughes
rhughes

Reputation: 9583

CodeCaster gave the hint above. The website was set to run as x64, but was trying to load a x86 binary.

To fix this, I:

  • Highlighted the website's application pool
  • Clicked 'Advanced Settings'
  • Set 'Enable 32-bit Applications' to true

enter image description here

Upvotes: 1

Related Questions