Changes between Initial Version and Version 1 of FAQ_general_tips


Ignore:
Timestamp:
11/27/14 18:18:27 (10 years ago)
Author:
phudelai
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FAQ_general_tips

    v1 v1  
     1[[PageOutline(1-2,Contents,inline)]]
     2
     3= FAQ -- common run-time errors =
     4
     5
     6
     7== Plugin loader failure 1 ==
     8=== Error message ===
     9{{{
     10#!div style="color: red"
     11000038 [2014-02-28 15:50:58.750509] <error> cannot load plugin '!PluginName.dll'. Plugin loader returned
     12error: The shared library was not found.
     13}}}
     14
     15=== Solution ===
     16
     17See [http://qt-project.org/doc/qt-5/deployment-plugins.html] for more information about development of Qt plugins.
     18You can set QT_DEBUG_PLUGINS environment variable to a non-zero value to see more information from plugin loader.
     19
     201. Check if filename '!PluginName.dll' is correct in your XML file.
     21X. Check if the correct version (release/debug) is used, see plugins ''postfix'' attribute in the XML.
     22X. Check if this file exists in the same directory as the executable.