The following messages appear a lot in the ULS logs of SharePoint:
11/24/2008 10:06:58.66 w3wp.exe (0x07F4) 0x1550 Windows SharePoint Services General 72kg High #20015: Cannot open "Proj.en-US.resx": no such file or folder.
11/24/2008 10:06:58.66 w3wp.exe (0x07F4) 0x1550 Windows SharePoint Services General 72kg High (#2: Cannot open "Proj.en-US.resx": no such file or folder.
[SOLUTION]
This is caused by the fact that the resource file is not present with a specific English tag in its name. To solve this issue do the following
- Open the directory C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\Resources
- The mentioned files are not in there, but the proj.resx is
- Open a command prompt and browse to the same directory
- Run the following commands:
copy avm.resx avm.en-US.resx
copy compproc.resx compproc.en-US.resx
copy ep.resx ep.en-US.resx
copy er.resx er.en-US.resx
copy hlpdsk.resx hlpdsk.en-US.resx
copy itteam.resx itteam.en-US.resx
copy proj.resx proj.en-US.resx
copy pws.resx pws.en-US.resx
copy rer.resx rer.en-US.resx
copy tsa.resx tsa.en-US.resx - This will copy the default resource files to the English version resource files and the messages will disappear.
2 comments:
Hi there, thanks for the post, one question, why would this suddenly happen?
Faheem
Thanks for the post! totally cleared up these errors.
Post a Comment