FireFox images not loading in local folders (firebug error-Failed to load given URL)

I am having difficulty when developing websites in local folders (Windows7 computer). The webpages I make are showing images in IE9 & Chrome but not FireFox (nor Safari nor Opera).
In FireFox I get Firebug "Failed to load given URL" prompt.
I am using html5 & external linked css stylesheet & the html/html5 & css code validates.
I have tried using rel path ie images/image.gif & absolute path references ie C:/RPD_Programming/RPD WEB/amwcsnew/index.html
and have tried using % to eliminate whitespace in references but I cannot get FireFox to display images!!
This has been a problem for me for around 2 weeks now & is very frustrating. Some website code/templates I have downloaded from the internet display the websites properly (ie load images fine) when I open them locally in FireFox. Why does my code not allow the images to load in FireFox (paths/permissions/other issue??). How can I fix this?
Here is example css & html5 not displaying images from local directory in FireFox (fine in IE9 & Chrome):
style.css
/* CSS Document */
/*Basic Reset*/
margin:0;
padding:0;
html{
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
body{
width:1200px;
margin:0 auto;
header{
height:450px;
background:url("C:/RPD_Programming/RPD WEB/amwcsnew/images/header.gif");
background-repeat:no-repeat;
#mid{height:750px;
background:url('C:/RPD_Programming/RPD_WEB/amwcsnew/images/mid.gif')no-repeat;
footer{height:286px;
background:url('C:/RPD_Programming/RPD WEB/amwcsnew/images/footer.gif')no-repeat;
index.html
<!doctype html><!-- simplified doctype works for all previous versions of HTML as well -->
<!--html5 template from www.impressivewebs.com_modified by RPD-->
<!-- Paul Irish's technique for targeting IE, modified to only target IE6, applied to the html element instead of body -->
<!--[if lt IE 7 ]><html lang="en" class="no-js ie6"><![endif]-->
<!--[if (gt IE 6)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
<head>
<!-- simplified character encoding -->
<meta charset="utf-8">
<title>amwcs-new</title>
<meta name="description" content="amwcs">
<meta name="author" content="rpd">
<!-- Delete these two icon references once you've placed them in the root directory with these file names -->
<!-- favicon 16x16 -->
<link rel="shortcut icon" href="/favicon.ico">
<!-- apple touch icon 57x57 -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- Main style sheet. Change version number in query string to force styles refresh -->
<!-- Link element no longer needs type attribute -->
<!-- <link rel="stylesheet" type="text/css" media="all" href="css/style.css" />-->
<link rel="stylesheet" href="css/style.css?v=2">
<!-- Modernizr for feature detection of CSS3 and HTML5; must be placed in the "head" -->
<!-- Script tag no longer needs type attribute -->
<script src="js/modernizr-1.6.min.js"></script>
<!-- Remove the script reference below if you're using Modernizr -->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<!-- If possible, use the body as the container -->
<!-- The "home" class is an example of a dynamic class created on the server for page-specific targeting
<body class="home">-->
<body>
<!-- ******************************************************************** -->
<!-- The content below is for demonstration of some common HTML5 elements -->
<!-- More than likely you'll rip out everything except header/section/footer and start fresh -->
<!-- First header has an ID so you can give it individual styles, and target stuff inside it
<header id="hd1"> No way Hosay-not by default! Default is <header> tag (RPD edit) -->
<header>
<!-- "hgroup" is used to make two headings into one, to prevent a new document node from forming -->
<hgroup>
<h1>amwcs</h1>
<h2>tagline</h2>
</hgroup>
<!-- Main nav, styled by targeting "#hd1 nav"; you can have more than one nav element per page -->
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header><!--End header & or #hd1 header div id if used-->
<!-- This is the main "div" that wraps the content generically; don't use "section" for this -->
<div id="mid">
<!-- The first of two "section" elements for demo purposes; optional class added for styling (hs1 = "home section 1") -->
<section class="hs1">
<!-- Each section should begin with a new h1 (not h2), and optionally a header -->
<!-- You can have more than one header/footer pair on a page
<header>
<h1>This is a Page Sub Title</h1>
</header> -->
<p>Some content...</p>
<!-- The h2 below is a sub heading relative to the h1 in this section, not for the whole document -->
<h2>Demonstrating EM and STRONG</h2>
<!-- "strong" is used for SEO and contextual hierarchy -->
<p><strong>This text will have more importance (SEO-wise and contextually)</strong></p>
<!-- "b" is used for stylistic offset of text that's NOT important contextually -->
<p><b>This text has visual importance but has no contextual or SEO importance</b></p>
<!-- "em" is used for colloquial-style emphasis -->
<p>This is a <em>very</em> colloquial expression.</p>
<!-- There can be multiple footers on each page -->
<!-- Secondary headers and footers don't necesarily need ids; they can be targeted via context (i.e. ".hs1 footer")
<footer>
<!-- incite a riot: http://24ways.org/2009/incite-a-riot
<p>Author: <cite>Louis Lazaris</cite></p>
</footer> -->
</section><!-- .hs1 -->
<!-- This is another section; doesn't have header/footer because it's not required -->
<section class="hs2">
<h1>This is another section</h1>
<p>This is some dummy content</p>
</section><!-- .hs2 -->
</div><!-- #mid -->
<!-- The "aside" element could be a sidebar (outside an article or section) -->
<!-- Or it could reference other tangentially-related content within an article or section
<aside id="sidebar">
<p>Sidebar content</p>
</aside>-->
<!-- The main footer has an ID for targeting, similar to the main header -->
<footer >
<p>copyright &copy; year</p>
</footer>
<!-- Remote jQuery with local fallback; taken from HTML5 Boilerplate http://html5boilerplate.com -->
<!-- jQuery version might not be the latest; check jquery.com -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="js/jquery-1.4.4.min.js"%3E%3C/script%3E'))</script>
<!-- Below is your script file, which has a basic JavaScript design pattern that you can optionally use -->
<!-- Keep this and plugin scripts at the bottom for faster page load; combining and minifying scripts is recommended -->
<script src="js/general.js"></script>
<!-- asynchronous analytics code by Mathias Bynens; change UA-XXXXX-X to your own code; http://mathiasbynens.be/notes/async-analytics-snippet -->
<!-- this can also be placed in the <head> if you want page views to be tracked quicker -->
<script>
var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
(function(d, t) {
var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.async = true;
g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
s.parentNode.insertBefore(g, s);
})(document, 'script');
</script>
</body>
</html>
I am most grateful for help & look forward to replies & fixing this-thanks
NB
Is there a FireFox guide/manual in pdf format available anywhere? I have not found one yet & a FireFox reference might be useful!

You need to use file:// as the protocol instead of C:/. The latter may never work (C:\ might).
Where is the main HTML located ?
Easiest if to store the images in a sub folder of the location because you can't go back via ../ beyond that root location for security reasons.
See:
*http://kb.mozillazine.org/Links_to_local_pages_do_not_work

Similar Messages

  • When trying to upload a document or attach a document in an email Firefox gives me an error "Failed to load CTDFMRES.dll" and stops responding, I have no issues in any other browsers. And I am using Firefox 4, Fixes???

    When trying to upload a document or attach a document in an email Firefox gives me an error "Failed to load CTDFMRES.dll" and stops responding, I have no issues in any other browsers. And I am using Firefox 4, Fixes???

    You don't have to disable any addons or extentions!!!You guys are not going to believe this I figured out the problem it's really dumb...ok here goes the attachment uploader loads seperate so I got to thinking it's a popup so I went to options content and under block pop ups there is an option exceptions click on that and in the box type firefox.com and hit allow pow its fixed!!!!! :-)

  • Firefox does not open, but instead gives the error message, "Failed to read the configuration file." It has worked in the past, but not now.

    Firefox does not open, but instead gives the error message, "Failed to read the configuration file." It has worked in the past, but not now.
    I REINSTALL 10 TIMES SO DON'T TELL ME THAT!!!
    I'm piss because i need firefox working again so i can finish reseaching my speech in 5 days.

    Which files do you have in the defaults\pref folder in the Firefox program folder?
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    See also "Other solutions":
    *http://kb.mozillazine.org/Preferences_not_saved
    Do a clean reinstall and delete the Firefox program folder before (re)installing a fresh copy of the current Firefox release.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 22.0: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you lose personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *(32 bit Windows) "C:\Program Files\Mozilla Firefox\"
    *(64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\"
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other personal data are stored in the Firefox profile folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Error, "Failed to load the folio"

    So I joined the Creative cloud. Comming from CS5 I must say I really like CS6.
    Today I say this youtube video from Terry White in which he explains how to create an app in Indesign. I had installed the latest DPS and Adobe Air from the Adobe download site and it installed fine.
    I wanted to try this so I followed him with creating an Folio overlay and tried to preview this with the adobe content viewer on the desktop (macPro OS 10.8.2) and came with the following error ; Error, "Failed to load the folio".
    No matter what I try, the error keeps on comming. I tried uninstall the old CS5. Uninstalling Indesign CS6, adobe air. Then rebooted the mac and installed it all over again (except CS5).
    The troubleshooting page says this;
    Error, "Failed to load the folio"
    If you receive this error, it could be due to use of platform invalid characters in the magazine title. For example, the following characters used in the magazine title could cause this error, \ / : * ? " < > |
    Rename your magazine title so that none of these characters are used. It's sometimes necessary to test by eliminating any characters that aren't alphanumeric. If changing the magazine name fixes the problem, update the folio in the Folio Builder panel to update the content on the server. Adobe hopes to have these issues fixed in later releases of the product.
    If special characters are not the cause of this error, then some other content or attribute could be the cause. Use comparison testing and binary isolation to test sections of your content individually to see if you can isolate the offending element.
    But my title is just test.indd.
    Even when there is just one image on the page I get the same error when trying to preview.
    I also tried to create a folio with the folio builder. The folio gets created but as soon as i try to import an article it says he is done, but the symbol in front of the article is still spinning as if it is not uploading it to the cloud.
    But this also happens when I try to do it offline.
    I have ran out of solutions to try. Can someone shed some light on this? Thanks.

    I get the same problem. The only thing that worked for me was to go to another computer and try it there... And then it works. Not great when you want to teach a class full of students how to do something and only half the class works.

  • Radio Error - Failed to load

    New to the spotif service.  Enjoying my 3 month premium trial!  However, I am unable to use the "Radio" function on my Mac.  Upon clicking on the "Radio" link in the left side navigation, I receive Error: Failed to load   Any ideas on how to resolve the situation?  

    Having the same problem, happens in the app in Windows 8.1 and Windows 10. Also happens in the Android app. And in the web player in Firefox and Chrome. Have had both the Failed to load error and just a neverending "loading circle". The Android app only have the loading circle. Have also tried to uninstall, and deleting %userprofile%\AppData\Local\Spotify as suggested in other threads. No luck. Edit: Now I have also tried "Sign out everywhere", still get the same error.

  • Error: "failed to load book because the requested resource is missing"

    I book a book via the iPad. The book appeared in my library no problem with the "new" tag and stuff, but when I tap it to read I get an error "failed to load book because the requested resource is missing." Any ideas? I'm on the road, so I haven't synced or backed up or anything..
    I've also verified that I have a good connection, etc. I'm able to hit the "store" button and browse the store no prob, as well as web, etc.
    Any thoughts?

    I believe I may have the answer to these many concerns. 
    When a book is over 20 or so megs, iBook will sometimes make an attempt to download on the iPad (when it should not). This causes problems. Perhaps the one you are experiencing. Therefore you have to wait until you are on a wifi connection before purchasing dictionary-like books. But if you've already made the mistake of downloading, theres no guarantee wifi will correct this. 
    What worked for me (like others have already mentioned) is that if you have an iphone or touch you can download it from there, sync with your computer and sync your iPad later. The book(s) will transfer just fine as long as you have this enabled on your devices.
    Initially this didn't work for me because in my frustration with a prior issue I took the liberty to create another iTunes account. Therefore iPad purchases were not visible on my phone. So be sure to have the same accounts activated on your devices and iTunes. 
    Yet even further diagnostics may need to be explored as I'm still prompted to provide my password every time i open iBooks (as if the download is still pending). Kinda afraid to revert to factory settings over a small issue. In the coming update Apple should fix these problems altogether. Hope this helps!

  • Acrobat fatal error: failed to load core dll

    Hi,
    I have a problem with acrobat reader on my laptop.
    My OS is Vista Home Premium.
    I had Master collection CS4 installed.
    When starting up acrobat reader; i got following error:
    failed to load core dll.
    I went to the log and this is the explenatoin written in there: (i'm dutch speaking)
    Kan activeringscontext voor 'C:\Program Files\Adobe\Reader  9.0\Reader\AcroRd32.dll' niet maken. Fout in manifest of beleidsbestand  '' op regel . Een onderdeelversie die nodig is voor de toepassing  conflicteert met een andere onderdeelversie die reeds actief is.  Conflicterende onderdelen zijn: Onderdeel 1:  C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.42_none_db5f52fb98cb24  ad.manifest.  Onderdeel 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb  8f8.manifest.
    Kan activeringscontext voor 'C:\Windows\system32\BHOManager.dll' niet  maken. Fout in manifest of beleidsbestand '' op regel . Een  onderdeelversie die nodig is voor de toepassing conflicteert met een  andere onderdeelversie die reeds actief is. Conflicterende onderdelen  zijn: Onderdeel 1: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.42_none_db5f52fb98cb24  ad.manifest.  Onderdeel 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt   _1fc8b3b9a1e18e3b_8.0.50727.762_none_10b2f55f9bffb  8f8.manifest.
    I simultaneously had a problem with Dreamweaver.
    I think all this is caused by an Side By Side configuration issue.
    I've tried to do following steps:
    -redistibrutable 2008 c++ package geinstall
    -system recoverage tool
    -reinstall cs4 master collection
    -uninstall master collection, clean up, install reeware acrobat reader
    -uninstall acrobat reader, ccleaner register issues resolver , also older than 24 uur , reboot,  install acrobat reader freeware
    -revo uninstall tool to remove acrobat
    none of the above actions were successful.
    What could u suggest or give as a solution.
    Atm i'm using an altarnative pdf-reader.
    But as i bought the master collection,
    i'd rather have my adobe acrobat reader pro and dreamweaver working.
    Thanks in advance,
    With friendly regards
    Anton

    Hi Anton
    I am sorry, I do not have an answer just a similar problem.
    I am no expert, but all these manifest files are to ensure that different developers can ensure that the appropriate versions of common libraries are used by particular versions of their software.
    Deatils are below. The original problem was a corrupted manifest file, probably due to a disk error. This resulted in several programs failing to run. In particular I was unable to access backup on my Windows Home Server. From the logs I was able to identify the manifest file in error and located a copy of a file with the same name on another of my computers. Using notepad I then changed the file causing the problem to match the file on the other computer.
    This appeared to resolve all my problems.
    When the Acrobat Reader updated itself, however, the"failed to load core DLL" message appeared. Simply uninstalling all adobe programs and re-installing makes no difference.
    If you have the solution please post.
    If not, I will continue to research this problem.
    Very best wishes
    Graham
    Details from error log and manifest files:
    Acrobat failed to load its core DLL
    Log Name:      Application
    Source:        SideBySide
    Date:          29/10/2010 23:30:07
    Event ID:      80
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      9GHASUSP5QSEx64
    Description:
    Activation context generation failed for "C:\Program Files (x86)\Adobe\Reader 9.0\Reader\AcroRd32.dll".
    Error in manifest or policy file "" on line .
    A component version required by the application conflicts with another component version already active.
    Conflicting components are:.
    Component 1: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.4927_none_d 08a205e442db5b5.manifest.
    Component 2: C:\Windows\WinSxS\manifests\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_none_10 b2f55f9bffb8f8.manifest.
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
        <noInheritable></noInheritable>
        <assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.4927" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
        <file name="msvcr80.dll" hash="b2cd2205044f7cfd822da03b5f8d329ac5f4fcde" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>niXcYiF5k0Z3fQ7PBFMJuaYHWTU=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcp80.dll" hash="984100dac2591da1a03c5146fecc47eb5deabec7" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>aW9cDm76mbaI14MUAAx8P0auVdE=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcm80.dll" hash="34d9d81de781f7566e20e2bd33e410bc80837703" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>pyazDrJIgYvW/Y3vCJt/9hpimHA=</dsig:DigestValue></a smv2:hash></file>
    </assembly>
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
        <noInheritable></noInheritable>
        <assemblyIdentity type="win32" name="Microsoft.VC80.CRT" version="8.0.50727.762" processorArchitecture="x86" publicKeyToken="1fc8b3b9a1e18e3b"></assemblyIdentity>
        <file name="msvcr80.dll" hash="10f4cb2831f1e9288a73387a8734a8b604e5beaa" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>n9On8FItNsK/DmT8UQxu6jYDtWQ=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcp80.dll" hash="b2082dfd3009365c5b287448dcb3b4e2158a6d26" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>0KJ/VTwP4OUHx98HlIW2AdW1kuY=</dsig:DigestValue></a smv2:hash></file>
        <file name="msvcm80.dll" hash="542490d0fcf8615c46d0ca487033ccaeb3941f0b" hashalg="SHA1"><asmv2:hash xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#"><dsig:Transforms><dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity"></dsig:Transform></dsig:Tra nsforms><dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"></dsig:DigestMethod><dsig:DigestValue>YJuB+9Os2oxW4mY+2oC/r8lICZE=</dsig:DigestValue></a smv2:hash></file>
    </assembly>

  • Log4j:ERROR Failed to load driver

    I want to use log4j to log information,my jdk version is 1.5.0_06,and my oracle version is 9.2.0.1.0,my web.xml and servlet is follows:
    web.xml
    <servlet>          
    <display-name>LogServlet</display-name>
    <servlet-name>LogServlet</servlet-name>
    <servlet-class>
    test.a
    </servlet-class>
    <init-param>
    <param-name>log4j-config-file</param-name>
    <param-value>
    /WEB-INF/log4j.properties
    </param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    /*a.java*/
    package test;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.log4j.*;
    public class a extends HttpServlet{
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ }
    public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ }
    public void init() throws ServletException{
    String prefix = getServletContext().getRealPath("/");
    String file = getServletConfig().getInitParameter("log4j-config-file");
    if (file != null) {
    PropertyConfigurator.configure(prefix + file);
    /*log4j.properties*/
    log4j.rootLogger=DEBUG,DATABASE
    log4j.addivity.org.apache=true
    log4j.appender.DATABASE.Threshold=INFO
    log4j.appender.DATABASE=org.apache.log4j.jdbc.JDBCAppender
    log4j.appender.DATABASE.URL=jdbc:oracle:thin:@192.1.1.2:1521:Ora
    log4j.appender.DATABASE.driver=oracle.jdbc.driver.OracleDriver
    log4j.appender.DATABASE.user=scott
    log4j.appender.DATABASE.password=tiger
    log4j.appender.DATABASE.sql=INSERT INTO test VALUES('%m')
    log4j.appender.DATABASE.layout=org.apache.log4j.PatternLayout
    When I start Tomcat,it raise following error:
    log4j:ERROR Failed to load driver
    java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
    at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:164)
    at org.apache.log4j.jdbc.JDBCAppender.setDriver(JDBCAppender.java:351)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.log4j.config.PropertySetter.setProperty(PropertySetter.java:205)
    at org.apache.log4j.config.PropertySetter.setProperty(PropertySetter.java:164)
    at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:129)
    at org.apache.log4j.config.PropertySetter.setProperties(PropertySetter.java:96)
    at org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:654)
    at org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:612)
    at org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:509)
    at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:415)
    at org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:316)
    at org.apache.log4j.PropertyConfigurator.configure(PropertyConfigurator.java:324)
    at test.a.init(a.java:20)
    at javax.servlet.GenericServlet.init(GenericServlet.java:211)
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
    at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:932)
    at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:3915)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4176)
    at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
    at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
    at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
    at org.apache.catalina.startup.HostConfig.deployDirectory(HostConfig.java:910)
    at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:873)
    at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:474)
    at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1118)
    at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1020)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1012)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
    at org.apache.catalina.core.StandardService.start(StandardService.java:450)
    at org.apache.catalina.core.StandardServer.start(StandardServer.java:700)
    at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:275)
    at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    I have put all jar file of the directory C:\oracle\ora92\jdbc\lib,such as classes12.jar,classes12_g.jar,classes12dms.jar,classes12dms_g.jar,nls_charset11.jar,nls_charset12.jar,ocrs12.jar,ojdbc14.jar,ojdbc14_g.jar into the direcory tomcat5\webapps\ROOT\WEB-INF\lib
    But Tomcat still raise above error? Why? I am puzzled with it for a long time! Anybody meet with above question? Any idea will be appreciated!

    Well, classes12.zip is a fairly old driver, especially for JDK 1.5, and even for Oracle 9. So, I would first suggest visiting Oracle's JDBC driver download sie.
    If that fails, please post the code you are using to connect to your database (please do not post the real domain or your user name or password). :^)
    - Saish

  • Depmod error: failed to load symbols from ...

    Hello,
    I installed today arch and the installation went well except nvidia-340xx install gave me this error messsage; now, X wont start.
    depmod ERROR: failed to load symbols from /lib/modules/3.16.4-1-ARCH/kernel/drivers/usb/wusbcore/wusbcore.ko.gz invalide argument
    Any idea?

    Scimmia wrote:failed to load symbols doesn't sound good. It may need a reinstall of the kernel if something got corrupted on disk.
    This is exactly what i have done and the error message went away.
    But at boot still hangs.
    This is the Xorg.1.log file:
    [ 46.713]
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 46.713] X Protocol Version 11, Revision 0
    [ 46.714] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 46.714] Current Operating System: Linux myhost 3.16.4-1-ARCH #1 SMP PREEMPT Mon Oct 6 08:22:27 CEST 2014 x86_64
    [ 46.714] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=33a28745-d878-4b98-a9ab-dee48b53a9b2 rw quiet
    [ 46.714] Build Date: 21 September 2014 10:53:13AM
    [ 46.714]
    [ 46.714] Current version of pixman: 0.32.6
    [ 46.715] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 46.715] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 46.716] (==) Log file: "/var/log/Xorg.1.log", Time: Thu Oct 16 15:26:17 2014
    [ 46.717] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 46.717] (==) No Layout section. Using the first Screen section.
    [ 46.717] (==) No screen section available. Using defaults.
    [ 46.717] (**) |-->Screen "Default Screen Section" (0)
    [ 46.717] (**) | |-->Monitor "<default monitor>"
    [ 46.717] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 46.717] (==) Automatically adding devices
    [ 46.717] (==) Automatically enabling devices
    [ 46.717] (==) Automatically adding GPU devices
    [ 46.717] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 46.717] Entry deleted from font path.
    [ 46.718] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 46.718] Entry deleted from font path.
    [ 46.718] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 46.718] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 46.718] Entry deleted from font path.
    [ 46.718] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 46.718] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 46.718] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 46.718] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 46.718] (II) Loader magic: 0x818d80
    [ 46.718] (II) Module ABI versions:
    [ 46.718] X.Org ANSI C Emulation: 0.4
    [ 46.718] X.Org Video Driver: 18.0
    [ 46.718] X.Org XInput driver : 21.0
    [ 46.718] X.Org Server Extension : 8.0
    [ 46.725] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2
    [ 46.725] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 46.726] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 1
    [ 46.726] (EE) Error systemd-logind returned paused fd for drm node
    [ 46.726] (II) systemd-logind: releasing fd for 226:0
    [ 46.729] (--) PCI:*(0:1:0:0) 10de:0404:0000:0000 rev 161, Mem @ 0xfa000000/16777216, 0xd0000000/268435456, 0xf8000000/33554432, I/O @ 0x0000df00/128, BIOS @ 0x????????/131072
    [ 46.729] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 46.729] (II) LoadModule: "glx"
    [ 46.730] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 46.775] (II) Module glx: vendor="NVIDIA Corporation"
    [ 46.775] compiled for 4.0.2, module version = 1.0.0
    [ 46.775] Module class: X.Org Server Extension
    [ 46.775] (II) NVIDIA GLX Module 340.46 Wed Sep 24 13:54:14 PDT 2014
    [ 46.775] (==) Matched nouveau as autoconfigured driver 0
    [ 46.775] (==) Matched nvidia as autoconfigured driver 1
    [ 46.775] (==) Matched nv as autoconfigured driver 2
    [ 46.775] (==) Matched modesetting as autoconfigured driver 3
    [ 46.775] (==) Matched fbdev as autoconfigured driver 4
    [ 46.775] (==) Matched vesa as autoconfigured driver 5
    [ 46.775] (==) Assigned the driver to the xf86ConfigLayout
    [ 46.775] (II) LoadModule: "nouveau"
    [ 46.775] (WW) Warning, couldn't open module nouveau
    [ 46.775] (II) UnloadModule: "nouveau"
    [ 46.775] (II) Unloading nouveau
    [ 46.775] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 46.775] (II) LoadModule: "nvidia"
    [ 46.775] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 46.776] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 46.776] compiled for 4.0.2, module version = 1.0.0
    [ 46.776] Module class: X.Org Video Driver
    [ 46.776] (II) LoadModule: "nv"
    [ 46.777] (WW) Warning, couldn't open module nv
    [ 46.777] (II) UnloadModule: "nv"
    [ 46.777] (II) Unloading nv
    [ 46.777] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "modesetting"
    [ 46.777] (WW) Warning, couldn't open module modesetting
    [ 46.777] (II) UnloadModule: "modesetting"
    [ 46.777] (II) Unloading modesetting
    [ 46.777] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "fbdev"
    [ 46.777] (WW) Warning, couldn't open module fbdev
    [ 46.777] (II) UnloadModule: "fbdev"
    [ 46.777] (II) Unloading fbdev
    [ 46.777] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 46.777] (II) LoadModule: "vesa"
    [ 46.777] (WW) Warning, couldn't open module vesa
    [ 46.778] (II) UnloadModule: "vesa"
    [ 46.778] (II) Unloading vesa
    [ 46.778] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 46.778] (II) NVIDIA dlloader X Driver 340.46 Wed Sep 24 13:34:03 PDT 2014
    [ 46.778] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 46.778] (++) using VT number 2
    [ 46.778] (--) controlling tty is VT number 2, auto-enabling KeepTty
    [ 46.778] (II) Loading sub module "fb"
    [ 46.778] (II) LoadModule: "fb"
    [ 46.778] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 46.778] (II) Module fb: vendor="X.Org Foundation"
    [ 46.778] compiled for 1.16.1, module version = 1.0.0
    [ 46.778] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 46.778] (WW) Unresolved symbol: fbGetGCPrivateKey
    [ 46.778] (II) Loading sub module "wfb"
    [ 46.778] (II) LoadModule: "wfb"
    [ 46.778] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 46.779] (II) Module wfb: vendor="X.Org Foundation"
    [ 46.779] compiled for 1.16.1, module version = 1.0.0
    [ 46.779] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 46.779] (II) Loading sub module "ramdac"
    [ 46.779] (II) LoadModule: "ramdac"
    [ 46.779] (II) Module "ramdac" already built-in
    [ 46.779] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 46.779] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 46.779] (==) NVIDIA(0): RGB weight 888
    [ 46.779] (==) NVIDIA(0): Default visual is TrueColor
    [ 46.779] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 46.780] (**) NVIDIA(0): Enabling 2D acceleration
    [ 46.904] (II) NVIDIA(0): Display (Acer AL2016W (DFP-0)) does not support NVIDIA 3D
    [ 46.904] (II) NVIDIA(0): Vision stereo.
    [ 46.904] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20130102)
    [ 46.906] (II) NVIDIA(0): NVIDIA GPU GeForce 8400 GS (G84) at PCI:1:0:0 (GPU-0)
    [ 46.906] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 46.906] (--) NVIDIA(0): VideoBIOS: 60.84.68.00.00
    [ 46.906] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 46.909] (--) NVIDIA(0): Valid display device(s) on GeForce 8400 GS at PCI:1:0:0
    [ 46.909] (--) NVIDIA(0): CRT-0
    [ 46.909] (--) NVIDIA(0): CRT-1
    [ 46.909] (--) NVIDIA(0): TV-0
    [ 46.909] (--) NVIDIA(0): Acer AL2016W (DFP-0) (boot, connected)
    [ 46.909] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(GPU-0): CRT-1: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(GPU-0): TV-0: 400.0 MHz maximum pixel clock
    [ 46.909] (--) NVIDIA(0): Acer AL2016W (DFP-0): Internal TMDS
    [ 46.909] (--) NVIDIA(GPU-0): Acer AL2016W (DFP-0): 330.0 MHz maximum pixel clock
    [ 46.909] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 46.909] (**) NVIDIA(0): device Acer AL2016W (DFP-0) (Using EDID frequencies has
    [ 46.909] (**) NVIDIA(0): been enabled on all display devices.)
    [ 46.914] (==) NVIDIA(0):
    [ 46.914] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 46.914] (==) NVIDIA(0): will be used as the requested mode.
    [ 46.914] (==) NVIDIA(0):
    [ 46.914] (II) NVIDIA(0): Validated MetaModes:
    [ 46.914] (II) NVIDIA(0): "DFP-0:nvidia-auto-select"
    [ 46.914] (II) NVIDIA(0): Virtual screen size determined to be 1680 x 1050
    [ 46.951] (--) NVIDIA(0): DPI set to (99, 98); computed from "UseEdidDpi" X config
    [ 46.951] (--) NVIDIA(0): option
    [ 46.951] (--) Depth 24 pixmap format is 32 bpp
    [ 46.951] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 46.955] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 46.955] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 46.955] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 46.955] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 46.955] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 46.955] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 46.955] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 46.955] (II) NVIDIA(0): Config Options in the README.
    [ 46.958] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
    [ 47.037] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 47.037] (==) NVIDIA(0): Backing store enabled
    [ 47.037] (==) NVIDIA(0): Silken mouse enabled
    [ 47.038] (==) NVIDIA(0): DPMS enabled
    [ 47.038] (II) Loading sub module "dri2"
    [ 47.038] (II) LoadModule: "dri2"
    [ 47.038] (II) Module "dri2" already built-in
    [ 47.038] (II) NVIDIA(0): [DRI2] Setup complete
    [ 47.038] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 47.038] (--) RandR disabled
    [ 47.045] (II) Initializing extension GLX
    [ 47.102] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 47.102] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 47.102] (II) LoadModule: "evdev"
    [ 47.102] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 47.102] (II) Module evdev: vendor="X.Org Foundation"
    [ 47.102] compiled for 1.16.0, module version = 2.9.0
    [ 47.102] Module class: X.Org XInput Driver
    [ 47.102] ABI class: X.Org XInput driver, version 21.0
    [ 47.103] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 28 paused 0
    [ 47.103] (II) Using input driver 'evdev' for 'Power Button'
    [ 47.103] (**) Power Button: always reports core events
    [ 47.103] (**) evdev: Power Button: Device: "/dev/input/event3"
    [ 47.103] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 47.103] (--) evdev: Power Button: Found keys
    [ 47.103] (II) evdev: Power Button: Configuring as keyboard
    [ 47.103] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 47.103] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 47.103] (**) Option "xkb_rules" "evdev"
    [ 47.103] (**) Option "xkb_model" "pc104"
    [ 47.103] (**) Option "xkb_layout" "us"
    [ 47.141] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 47.141] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 47.142] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 29 paused 0
    [ 47.142] (II) Using input driver 'evdev' for 'Power Button'
    [ 47.142] (**) Power Button: always reports core events
    [ 47.142] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 47.142] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 47.142] (--) evdev: Power Button: Found keys
    [ 47.142] (II) evdev: Power Button: Configuring as keyboard
    [ 47.142] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event2"
    [ 47.142] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 47.142] (**) Option "xkb_rules" "evdev"
    [ 47.142] (**) Option "xkb_model" "pc104"
    [ 47.142] (**) Option "xkb_layout" "us"
    [ 47.142] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 47.142] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 47.143] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 30 paused 1
    [ 47.143] (EE) Error systemd-logind returned paused fd for drm node
    [ 47.143] (II) systemd-logind: releasing fd for 226:0
    [ 47.144] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/event1)
    [ 47.144] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Applying InputClass "evdev pointer catchall"
    [ 47.144] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 31 paused 0
    [ 47.144] (II) Using input driver 'evdev' for 'Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)'
    [ 47.144] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): always reports core events
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Device: "/dev/input/event1"
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Vendor 0x45e Product 0x40
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found 3 mouse buttons
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found scroll wheel(s)
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found relative axes
    [ 47.144] (--) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Found x and y relative axes
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Configuring as mouse
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Adding scrollwheel support
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): YAxisMapping: buttons 4 and 5
    [ 47.144] (**) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 47.144] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb1/1-2/1-2:1.0/0003:045E:0040.0001/input/input1/event1"
    [ 47.144] (II) XINPUT: Adding extended input device "Microsoft Microsoft 3-Button Mouse with IntelliEye(TM)" (type: MOUSE, id 8)
    [ 47.144] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): initialized for relative axes.
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) keeping acceleration scheme 1
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration profile 0
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration factor: 2.000
    [ 47.145] (**) Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): (accel) acceleration threshold: 4
    [ 47.145] (II) config/udev: Adding input device Microsoft Microsoft 3-Button Mouse with IntelliEye(TM) (/dev/input/mouse0)
    [ 47.145] (II) No input driver specified, ignoring this device.
    [ 47.145] (II) This device may have been added with another device file.
    [ 47.145] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event5)
    [ 47.145] (II) No input driver specified, ignoring this device.
    [ 47.145] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event6)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event7)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.146] (II) config/udev: Adding input device HDA ATI SB Line Out (/dev/input/event8)
    [ 47.146] (II) No input driver specified, ignoring this device.
    [ 47.146] (II) This device may have been added with another device file.
    [ 47.147] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event9)
    [ 47.147] (II) No input driver specified, ignoring this device.
    [ 47.147] (II) This device may have been added with another device file.
    [ 47.147] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 47.147] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 47.147] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 32 paused 0
    [ 47.147] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 47.147] (**) AT Translated Set 2 keyboard: always reports core events
    [ 47.148] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 47.148] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 47.148] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 47.148] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 47.148] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 47.148] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 47.148] (**) Option "xkb_rules" "evdev"
    [ 47.148] (**) Option "xkb_model" "pc104"
    [ 47.148] (**) Option "xkb_layout" "us"
    [ 47.148] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 47.148] (II) No input driver specified, ignoring this device.
    [ 47.148] (II) This device may have been added with another device file.
    [ 79.735] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 79.735] (II) UnloadModule: "evdev"
    [ 79.735] (II) systemd-logind: releasing fd for 13:64
    [ 79.763] (II) evdev: Microsoft Microsoft 3-Button Mouse with IntelliEye(TM): Close
    [ 79.763] (II) UnloadModule: "evdev"
    [ 79.763] (II) systemd-logind: releasing fd for 13:65
    [ 79.826] (II) evdev: Power Button: Close
    [ 79.826] (II) UnloadModule: "evdev"
    [ 79.826] (II) systemd-logind: releasing fd for 13:66
    [ 79.853] (II) evdev: Power Button: Close
    [ 79.853] (II) UnloadModule: "evdev"
    [ 79.853] (II) systemd-logind: releasing fd for 13:67
    [ 80.240] (II) NVIDIA(GPU-0): Deleting GPU-0
    [ 80.242] (EE) Server terminated successfully (0). Closing log file.

  • LibGL error: failed to load driver: swrast

    I'm trying to launch Dungeon Defenders but this happens:
    $ ./DungeonDefenders --LIBGL_DEBUG=verbose
    Dungeon Defenders: Installed in '/home/casa/Giochi/DungeonDefenders'.
    libGL error: failed to load driver: swrast
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.
    X Error of failed request: GLXUnsupportedPrivateRequest
    Major opcode of failed request: 153 (GLX)
    Minor opcode of failed request: 16 (X_GLXVendorPrivate)
    Serial number of failed request: 239
    Current serial number in output stream: 242
    It's the same for other gamese (Aquaria, Amnesia: The Dark Descent, Penumbra: Overture, ...).
    Can't find much with Google and can't understand what this "swrast" is.
    I'm NOT using a double VGA system (like any modern iCore + nVIDIA + Optimus) but an old system with Core 2 Duo + GTX260.
    Als I don't understand how to do this:
    Try again with LIBGL_DEBUG=verbose for more details
    Last edited by buntolo (2012-12-22 21:37:59)

    buntolo wrote:
    I'm trying to launch Dungeon Defenders but this happens:
    $ ./DungeonDefenders --LIBGL_DEBUG=verbose
    Dungeon Defenders: Installed in '/home/casa/Giochi/DungeonDefenders'.
    libGL error: failed to load driver: swrast
    libGL error: Try again with LIBGL_DEBUG=verbose for more details.
    X Error of failed request: GLXUnsupportedPrivateRequest
    Major opcode of failed request: 153 (GLX)
    Minor opcode of failed request: 16 (X_GLXVendorPrivate)
    Serial number of failed request: 239
    Current serial number in output stream: 242
    It's the same for other gamese (Aquaria, Amnesia: The Dark Descent, Penumbra: Overture, ...).
    Can't find much with Google and can't understand what this "swrast" is.
    I'm NOT using a double VGA system (like any modern iCore + nVIDIA + Optimus) but an old system with Core 2 Duo + GTX260.
    Als I don't understand how to do this:
    Try again with LIBGL_DEBUG=verbose for more details
    use it like this :
    LIBGL_DEBUG=verbose ./DungeonDefenders
    swrast is a software driver that is used as a fallback if there's no accelerated video available.
    please post the output of glxinfo .

  • Error:  Failed to load database information.

    Post Author: ph03nix
    CA Forum: Data Connectivity and SQL
    I have recently had my computer reimaged, with everything reinstalled.  I have some CR reports that I was in the process of developing prior to the reimage.  These were working previously, but are now all giving the following error:
    Failed to load database information.
    Details: The database connector "crdb_oracle.dll" could not be loaded.
    I've done a search on my PC, and there are 3 copies/versions of this file, located in the following directories:
    \Business Objects\bin\Crystal Decisions\2.0\bin~\Crystal Desicions\2.5\bin
    I am new to CR, trying to figure it out as I go along.  I am currently the only person using CR. (OS is XP - I do not have admin privileges on my PC). Any ideas/suggestions on how to correct this? 
    Thanks!

    Its working. I gave crdb_jdbc.dll name in the connection info

  • Error - failed to load 'sap/m/columns.js'

    Hi,
    I'm getting the following error as soon as I add <columns> tag inside a <Table> tag. Error:
    Uncaught Error: failed to load 'sap/m/columns.js' from resources/sap/m/columns.js: 404 - Not Found
    Here is main.view.xml:
    <mvc:View
      controllerName="com.ttf.orgoto.view.main"
      xmlns:l="sap.ui.layout"
      xmlns:mvc="sap.ui.cores.mvc"
      xmlns:html="http://www.w3.org/1999/xhtml"
      xmlns="sap.m">
      <Page title="Organizasyon Otomasyonu">
      <content>
      <IconTabBar>
      <items>
      <IconTabFilter
                            icon="sap-icon://retail-store"
                            text="Mekan Seçimi">
      <Table id="placeTbl" >
      <headerToolbar>
      <Toolbar>
      <Label text="Mekan Seçimi"></Label>
      </Toolbar>
      <columns>
      </columns>
      </headerToolbar>
      </Table>
      </IconTabFilter>
      <IconTabFilter
                            icon="sap-icon://meal"
                            text="Sipariş Seçimi">
      <Text text="Info content goes here ..." />
      </IconTabFilter>
      </items>
      </IconTabBar>
      </content>
      </Page>
    </mvc:View>
    Here is index.html:
    <!DOCTYPE HTML>
    <html>
      <head>
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <script src="resources/sap-ui-core.js"
      id="sap-ui-bootstrap"
      data-sap-ui-libs="sap.m,sap.ui.table"
      data-sap-ui-xx-bindingSyntax="complex"
      data-sap-ui-resourceroots='{"com.ttf.orgoto": "./"}'
      data-sap-ui-theme="sap_bluecrystal">
      </script>
      <!-- only load the mobile lib "sap.m" and the "sap_bluecrystal" theme -->
      <script>
      sap.ui.localResources("view");
      var app = new sap.m.App({initialPage:"idmain"});
      var page = sap.ui.view({id:"idmain", viewName:"com.ttf.orgoto.view.main", type:sap.ui.core.mvc.ViewType.XML});
      app.addPage(page);
      app.placeAt("content");
      </script>
      </head>
      <body class="sapUiBody" role="application">
      <div id="content"></div>
      </body>
    </html>

    You're adding the <columns> aggregation within the <headerToolbar>. It can be added after </headerToolbar>.
    https://sapui5.hana.ondemand.com/sdk/explored.html#/sample/sap.m.sample.Table/code
    - Sakthivel

  • Error: Failed to load Main-Class manifest attribute from HelloWorld.jar

    Hi,
    I got a file call HelloWorld.java and a file call mainClass which contain one line ==>
    Main-Class: HelloWorld
    Then I run the command:
    jar cmf mainClass HelloWorld.jar HelloWorld.class
    java -jar HelloWorld.jarAnd I got the following error:
    =======================================
    Failed to load Main-Class manifest attribute from
    HelloWorld.jar
    =======================================
    Why is that? I follow the instruction from the sun website, but still not working... can anybody help??
    Thanks

    For whatever reason the last line of the Manifest file is always ignored. So if your Main-Class is the first AND last line it is being ignored. Solution, make sure you have at least one or more blank lines after the Main-Class line.

  • AR can't be added-Error "Failed to load from XML resource"

    Hi Everyone,
    I need help with this error. When entering an item and then tabbing in an AR document, this code appears.
    "Failed to load from XML resouce".
    Thanks,\
    Debbie

    Hello experts,
    I am facing this issue in SBO 9.0 PL 08.
    Using SBOdemoUS, clic 'Duplicate' an existing Sales Order, then select a Business Partner, and hit 'yes' to the question in order to refresh rows with new BP info. You will get red bar error 'Failed to load from XML resource - (UI_API 7004) [Message 66000-6]'  and it wipes out all the copied rows info.  Does not happen with BPs that don't have default Ship To info.
    Your advise please.
    Thanks

  • OBIEE 11g BI Publisher; New Data Set Creation Error "Failed to load SQL"

    Hi,
    I'm trying to create a new SQL data set (from a client machine). I use "query builder" to build the data set. But when I click "OK", it fires the error "Failed to load SQL".
    But strangely, if connect to the OBIEE server's desktop and create the data set it works without any issues. I wonder this would be a firewall issue. If so what are the ports I should open.
    It's a enterprise installation. And we have already open 9703, 9704, and 9706.
    Has anyone came across such a situation?

    Talles,
    First of all you might have more chance of getting a response over in the BIP forum. Other than that all I can think of is: is your MS SQL Server running with mixed mode auth?

Maybe you are looking for

  • Unable to install package created by CC Packager

    I created a package this morning with the latest/ updated version of Creative Cloud Packager. And am trying to install it on a machine with CS6 recently uninstalled. The machine is a Win 7 x64, under an AD admin account. The installation stops halfwa

  • Updates failed on Adobe Creative Suite 5 Web Premium

    Hello, I have a problem. My hard disk crashed so I had to replace it and reinstall my Adobe Creative Suite 5 Web Premium. The installation was fine, I used of course the Serial Number on the box, but when I tried to launch the update I got the messag

  • Sat P10-722: How to switch to TV - S-Video

    can anyone please answer me this quick question? i have a satellite p10-722 with an s-video out, if i were to connect a normal s-video cable to this then to my tv would i be able to view my laptop on my t.v? thank you for any answers

  • HT1695 hi

    I have recently encountered a problem with the wi-fi on my iPhone 5. Whenever I connect to a router with a password, even if the password is typed correctly, it responds that I am unable to connect. As of now I am only able to connect to wi-fi's that

  • Which external Microphone do you recommend for PowerBook for website audio?

    Aloha-Steve here, 1st time forum user ever. Our company produces "Kiana's Flex Appeal" fitness show on ESPN reaching 80 million homes. We just bought a few Power Books and need to now "which external mic should we buy to record voice onto our new web