active questions tagged file-not-found - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T21:03:44Z http://stackoverflow.com/feeds/tag/file-not-found http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1684061/delphi-2010-package-problem-file-not-found-error 1 Delphi 2010 - package problem, File not found error Vegar 2009-11-05T22:22:40Z 2009-11-05T23:08:56Z <p>I have a problem with a application with plugins. Originally, everything was compiled into a single exe, but now, I want to take out some of the code into a bpl on its own. The code that is shared by both the exe and the new bpl is put into a third bpl. </p> <p>application.exe is compiled with package api.bpl api.bpl contains only one file, api.pas plugin.bpl requires api.bpl.</p> <p>I have the following structure on disk:</p> <p>.\ - final output for exe and bpls<br> .\src - sourcefiles for application.exe and api.bpl, including shared api.pas<br> .\dcu - dcu output for all projects<br> .\plugin - plugin source</p> <p>I can compile application.exe without a problem.<br> I can compile api.bpl without a problem.<br> But when I try to compile plugin.bpl, it tries to build api.bpl first, an then it complains that it can't find api.pas.</p> <p>Why is that?</p> http://stackoverflow.com/questions/1323702/visual-c-error-when-changing-anchor-for-multiple-controls 0 Visual C# error when changing anchor for multiple controls Nona Urbiz 2009-08-24T17:30:28Z 2009-10-13T21:47:32Z <p>Visual C# 2008 is giving an error when I attempt to change the anchor for multiple controls simultaneously. This error does not occur when done individually. </p> <blockquote> <p>Property value is not valid.</p> <p>Could not find file 'C:\Users\user\Documents\Visual Studio 2008\Projects\test\test\Resources\WelcomeBorder.png'.</p> </blockquote> <p>The image was previously used as a background image for a panel (not one of the elements selected, though they're in it), but all references to the image have been deleted. A search through the entire solution for the string "WelcomeBorder" returned no finds. The solution has been repeatedly rebuilt since.</p> <p>The file has been deleted.</p> http://stackoverflow.com/questions/1412652/how-to-have-a-specific-404-for-a-folder-using-asp-net 1 How to have a specific 404 for a folder using ASP.NET ? marcgg 2009-09-11T18:46:49Z 2009-09-11T19:13:52Z <p>This is a bit tricky and I'd be glad if you guys could give me some pointers on this one. <br />Here is what I want to do:</p> <ul> <li><p>A user tries to access myapp.com/data/123456.mp3</p></li> <li><p>test.mp3 doesn't exist</p></li> <li><p>The system sends the user to myapp.com/data/error.apsx?file=123456.mp3</p></li> </ul> <p>I need this in order to handle the way a large system is supposed to serve mp3 files.</p> <p>If a user tries to access myapp.com/otherFolder/notHere.whatever, the system returns the standard 404 error normally.</p> <p>I know there are ways to specify that in IIS, but I'd love it if there was something I could do programmatically or just withing my .net project.</p> <p>edit:</p> <p>I've created a web.config file in myapp.com/data/</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;configuration&gt; &lt;system.web&gt; &lt;customErrors mode="RemoteOnly" defaultRedirect="/data/mp3/full/serveMp3.aspx"/&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>This doesn't seem to be working. </p> http://stackoverflow.com/questions/1337455/flex-remoteobject-source-not-found 0 Flex RemoteObject Source not found Chris Klepeis 2009-08-26T20:59:17Z 2009-08-27T22:06:49Z <p>Our flex project, which works fine in its current environment with coldfusion 7 single server. </p> <p>We moved this project to Coldfusion 8 multi server, and updated the remoteobject paths relative to the web root.</p> <p>The error we now receive is </p> <p>faultCode:Server.Processing faultString:'Unable to invoke CFC - Could not find the ColdFusion Component or Interface myProject.cf.main.' faultDetail:'For details, turn on Robust Exception Information in the ColdFusion Administrator'</p> <p>The path to the cfc's from the webroot is is myProject/cf/main.cfc ... any ideas?</p> http://stackoverflow.com/questions/581908/silverlight-webpart-in-sharepoint 1 Silverlight WebPart in SharePoint niklassaers-vc 2009-02-24T14:20:51Z 2009-08-13T08:52:31Z <p>Hi, I'm making a WebPart for SharePoint that will instantiate a Silverlight UserControl and feed it some data. My problem is that when I have created my sample-WebPart and just instantiate a Silverlight control, the webpart, when added to a page or displayed in the webpart gallery, instead of rendering blank, renders an error page saying "File Not Found". No clue in the logfiles to what file was not found or why this error is thrown. Here is my code:</p> <pre><code>using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.SilverlightControls; namespace TestSLWP { public class CustomWebPart1 : WebPart { protected override void CreateChildControls() { Label lblHello = new Label(); lblHello.Text = "Hello"; Controls.Add(lblHello); Silverlight sl = new Silverlight(); } } } </code></pre> <p>I've added references to System.Web.Extensions and System.Web.Silverlight to the project. They are in the GAC, and the webpart is written and compiled on the same computer that SharePoint resides. If I change the CreateChildControls() to be:</p> <pre><code>protected override void CreateChildControls() { Silverlight sl = new Silverlight(); sl.ID = "CustomWebPart1SL"; sl.Source = "/Silverlight/CustomWebPart.xap"; this.Controls.Add(sl); } </code></pre> <p>I get the same error. Also if I remove the first slash in sl.Source I get the same error, even though the file is present in a virtual directory in the same application pool as SharePoint. I therefore, and because the error comes with just instantiating the Silverlight object, believe that the file that cannot be found is not my XAP. </p> <p>What file can't SharePoint find and what can I do about it?</p> <p>Here's the error message:</p> <p><img src="http://www.freeimagehosting.net/uploads/2dca8dbdfb.png" width="630"></p> http://stackoverflow.com/questions/1138177/wss-3-0-on-windows-2003-server-with-forms-based-authentication-file-not-found-e 1 WSS 3.0 on Windows 2003 Server with Forms-Based Authentication 'File not Found' Error Rajendrakumar Varsani BSc Hons 2009-07-16T14:50:48Z 2009-07-16T14:50:48Z <p>Hi,</p> <p>We have WSS 3.0 running on Windows 2003 Server with Forms-Based Authentication. It has been running for months but now if I now try selecting ‘Register’ or ‘Forgot password’ I now get a ‘File not found’ error (looking for https: //www.....uk/_layouts/useradmin/register.aspx and https: //www.....org.uk/_layouts/useradmin/retrieve-password.aspx respectively) </p> <p>I believe that it is related to the .NET 3.5 Family service pack as I’ve been able to ‘break’ an old image of the server before it was patched. Patching it with the .NET 3.5 service pack gets the 'File not found' result that we're now experiencing so it is a reproducable error.</p> <p>I HAVE tried rolling back the service pack for .NET on our test server but it does not resolve the problem. Taking off too many service packs related to .NET breaks the website completely and putting them back on again does not recover it either.</p> <p>I have tired turning on debugging and I get messages like "File not found. at System.Reflection.Assembly._nLoad(AssemblyName, String codebase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark&amp; stackMark, Boolean thrownOnFileNotFound, Boolean forIntrospection) etc etc .. but am none the wiser</p> <p>Any help GREATlY appreciated :o) Someone else must have experienced the same thing. Mustn't they?</p> http://stackoverflow.com/questions/618813/include-all-files-when-debugging-in-visual-studio 0 Include all files when debugging in Visual Studio? Adam Asham 2009-03-06T13:15:10Z 2009-03-06T13:21:12Z <p>How do I setup Visual Studio 2008 to include all files in the project root when debugging?</p> <p>I have a few files in the project root folder which are not copied to the bin/debug folder so when I am about to debug the application I have to <strong>manually</strong> copy the files. I'm looking for a way to make VS <strong>automatically</strong> include these files in the debug build process. Any hints?</p> <p>Thank you. /Adam</p> http://stackoverflow.com/questions/480764/linux-error-while-loading-shared-libraries-cannot-open-shared-object-file-no-su 0 Linux error while loading shared libraries: cannot open shared object file: No such file or directory zarawesome 2009-01-26T18:07:57Z 2009-01-27T06:01:39Z <p>Program is part of the Xenomai test suite, cross-compiled from Linux PC into Linux+Xenomai ARM toolchain.</p> <pre><code># echo $LD_LIBRARY_PATH /lib # ls /lib ld-2.3.3.so libdl-2.3.3.so libpthread-0.10.so ld-linux.so.2 libdl.so.2 libpthread.so.0 libc-2.3.3.so libgcc_s.so libpthread_rt.so libc.so.6 libgcc_s.so.1 libstdc++.so.6 libcrypt-2.3.3.so libm-2.3.3.so libstdc++.so.6.0.9 libcrypt.so.1 libm.so.6 # ./clocktest ./clocktest: error while loading shared libraries: libpthread_rt.so.1: cannot open shared object file: No such file or directory </code></pre> <p><strong>Edit:</strong> OK I didn't notice the .1 at the end was part of the filename. What does that mean anyway?</p> http://stackoverflow.com/questions/332269/no-such-file-or-directory-but-the-directory-is-in-the-path 0 no such file or directory but the directory is in the path Eduardo 2008-12-01T21:20:06Z 2008-12-01T21:22:43Z <p>Hello I am compiling a program with make but I get the error of No such file or directory but the file is in a directory of the path.</p> <p>I have this #include "genetic.h", that file is in a directory called /home/myuser/toolbox/lib/genalg and in the PATH I have ...:/home/myuser/toolbox/lib/genalg, so I do not why make cannot find the library. Any ideas?. Thanks</p> http://stackoverflow.com/questions/215981/what-are-the-most-helpful-features-of-effective-404-file-not-found-error-pages 6 What are the most helpful features of effective 404 File Not Found error pages? Joe Lencioni 2008-10-19T03:59:00Z 2008-11-20T12:53:37Z <p>When a user comes across your site's 404 File Not Found error page, it is most likely not what they were looking for. Here, you have the opportunity to turn a dead end into a resource that can help your visitor find whatever they were looking for.</p> <p>If you were going to create the perfect 404 File Not Found error page, what would it do? What are the most helpful features of effective 404 File Not Found error pages? Are there any strong examples out there?</p>