Template link error

Bonjour,
J'ai dans mon formulaire des références vers mes
fichiers css et mes fichiers javascript en respectant bien le
chemin virtuel à partir du dossier Templates, ce qui donne :
../chemin/fichier.css
Lorsque j'effectue une modification sur mon modèle, les
liens virtuels sont mis à jour mais pas correctement, il me
supprime tous chemin virtuel, ce qui donne :
/chemin/fichier.css
J'ai refais mon template complètement, le problème
persiste.
C'est d'autant plus suprenant qu'il a fonctionné.

J'ai réinstallé Dreamweaver, j'ai supprimer tous
les _notes de chaque répertoire.
Cela semble avoir résolu mon problème !

Similar Messages

  • The broken link error

    Hi,
    Please help me with this broken link error in Office Excel 2010. Thank you.
    The problem is: a broken link cannot be removed from the file. The link was used in data validation, which refers to a list of values. After the path was corrected, it still shows there’s a broken link. Here are the details:
    I have 4 files named “000TVA_Test – 3”, “000TVA_Test – 4”, “000TVA_Test – 5”, and “000TVA_Test – 6”. The posterior files were developed based on the previous files.
    In Test-3, sheet “Template “, cell “L4”, “O4”, “R4”… were built as dropdown list using data validation. The list source is in the “Library” worksheet. There’s no problem so far.
    Test-4 was firstly copied from Test-3. In this file I renamed the worksheet from “Library” to “Setting” and the link was broken from here. I can also fix the broken link in this file. (While I didn’t realize there was a broken link.)
    In Test-5 I fixed the path, but every time when opening the file, the broken link still shows.
    In Test-6 I’ve removed the data validations. The broken link is still there.
    I tried to find solutions online. I tried common methods, cannot find anything in the files is still using links. I also tried the “findlink.xla” add-in, but it only worked for Test-4, and couldn’t find the link in other files.
    Please help. Thank you!
    I uploaded files here: https://onedrive.live.com/redir?resid=1A97736E0ABBAA41!113&authkey=!AF5wAd9rwUPnYyE&ithint=folder%2cxlsm
    Thanks again!

    Hi,
    Based on my tested the files downloaded, I found that Test-5 & Test-6 included the "A defined name that refers to an external workbook", Test-4 had not. (Please click Formula Tab>Name Manage, you'll see them.)
    However, the Break Links command cannot break the following types of links:   
    A defined name that refers to an external workbook
    A ListBox control with an input range that refers to an external workbook.
    A DropDown control with an input range that refers to an external workbook.
    http://support2.microsoft.com/kb/291984/en-us (It also applies to Excel 2010)
    Thus, we'd better try the workaround: re-build the Test-5 & Test 6.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • TestStand CVI OI link errors

    I was given a .UIR file from a teamate (another company), but no implementation, so that our GUI could ultimately look and feel like theirs (since that's what the customer wants).  I'm using CVI 8.0 and I opened up the .UIR and ran the UI to Code Converter tool.  Since the tool forces you to enter the name of the .h and .c target files (associated with the panel), I ran the tool one panel at a time.  Ultimately, I had about eight .h and eight .c files.  When I do a 'create executable', I get 60 link errors.  The messages are all quite similar (but for different symbols) in that they say "Undefined symbol, '_SD_ExeEntryPoint1' referenced in SeqDisp.c".  I see where I use SD_ExeEntryPoint1 (no underscore in front), but I don't see where the _(underscore) version is coming from/being referenced.  Any clues here would be very appreciated.
    In general, though, is this a correct approach?  Can I begin with a UIR that has much of the TestStand full-featured OI functionality available in its different panels and generate code, then begin filling in each template that's produced?

    You can find a new style OI in:
    C:\Program Files\National Instruments\TestStand 3.<x>\OperatorInterfaces\NI\Full-Featured\CVI\
    I don't have an old TestStand installed to be sure, but the old style OI would probably be found in:
    C:\Program Files\National Instruments\TestStand <1.x or 2.x>\OperatorInterfaces\NI\Full-Featured\CVI\
    The old style example has a lot more code and that code is more complicated than the code in the new style example.
    The UIR you have is a CVI file, thus converting it to TestStand 3.5 doesn't apply.
    If you have to implement the whole application from scratch (instead of from the source code that goes with the UIR you have), you will probably be better off in the long run by starting the example from TestStand 3.5 and modifying it using the UIR you received as a user interface specification of sorts.
    Controls on the old UIR that did "TestStand" things like display the steps in a sequence are now ActiveX controls in the new example which you configure and connect to other controls. In the old example, the function of these controls was entirely implemented in the example source code and the result was complex code with less functionality.
    If there are controls in the UIR that were not part of the old example and do not directly implement "TestStand" functionality, you can probably just cut and paste them into the UIR from your 3.5 example and implement their callbacks according to their function.
    BTW. I'm not sure I completely understand your situation were you have been given the UIRs but not the source for application and tasked with reimplementing it.  Assuming the source code is absolutely not available and that you have to make significant modifications from the functionality the TestStand examples provide, then the new example is a better starting point. However, it won't look "exactly" the same. In many cases it will look better. Run the old and new examples to see the difference.

  • C++ newbie gets linking error

    Hi,
    I am writing my first C++ programs (been a SQL/DB programmer for last 10 years) on Sun Solaris. Here is my source code:
    #include <list>
    #include <string>
    #include <iostream.h>
    using namespace std; // You must use this to include STL!
    int main()
    // Create list instances
    list<int> list1; // Empty list
    size_t n = 10;
    double val = 3.14;
    list<double> list2(n, val); // Create n copies of val
    list<double> list3(list2); // Create a copy of list2
    cout << "Size of list1 " << list1.size() << endl;
    cout << "Size of list2 " << list2.size() << endl;
    cout << "Size of list3 " << list3.size() << endl;
    // We iterate over the elements of list 3 and print its elements
    // Create list iterator
    list<double>::const_iterator i;
    // Print every character in the list
    for (i = list2.begin(); i != list2.end(); ++i)
    cout << *i << ",";
    and getting the following linker error:
    /SUNWspro/9.0/exec/SUNWspro/bin/CC -o test test.cpp
    Undefined first referenced
    symbol in file
    std::bad_alloc::bad_alloc() test.o
    void*operator new(unsigned,void*) test.o
    ld: fatal: Symbol referencing errors. No output written to test
    I have heard of Solaris C++ compilers having problem with the use of templates..... is this the problem here or am I just missing some arguments/libraries?
    Thx in advance!

    In the interest of keeping code examples short and simple, textbook authors do things in their code examples that are not suitable for real-world applications. Apart from "using namespace std", you find global variables and functions with short names, and no attention paid to error detection or recovery. (They also use more explanatory comments in the code than a real-world program should have.)
    That's OK when you are illustrating particular language points. You want to highlight the point, and not have a lot of distractions. But in my view, not enough authors go on to explain good programming practice, and show realistic examples.
    For the case in point, the Standard Library declares thousands of names. They are in namespace std to help avoid collisions with user-defined names. Once you put "using namespace std" into your code, you import all of those names into the global namespace, creating opportunities not only for compiler complaints due to name collisions, but for subtle errors involving binding symbols to the standard library that you expected to refer to your own definitions.
    I never write "using namespace std" in real code. I sometimes use it when creating tiny test cases for bug reports. But as you saw in my earlier comments, the difference in the sample program between a dangerous programming practice and a much better programming practice was one line of code!

  • Linker error with WS6U2 in compat=4 mode

    We have just upgraded from WS6U1 to WS6U2 on
    Solaris 2.8. I am getting a linker error when
    linking against libraries built with the 4.2 C++
    compiler. Everything works fine with WS6U1 compiler.
    The linker error is related to __rtaccess.
    Here is the test case:
    // t.h
    class class42 {
    public:
    virtual int getId();
    // t42.cc
    #include "t.h"
    int
    class42::getId()
    return 33;
    Build the library for t42.cc using 4.2 version of C++
    compiler as follows:
    /opt/SUNWspro/bin/CC -c -I. t42.cc
    /opt/SUNWspro/bin/CC -xar -o libt42.a t42.o
    // t62.cc
    #include "t.h"
    class class6u2 : public class42
    main()
    class42 *nt1 = new class6u2;
    class6u2 d1 = (class6u2 )(nt1);
    Build the above with WS6U2 compiler as follows:
    /opt/SUNWspro/bin/CC -compat=4 -features=rtti -c -I.
    t62.cc
    /opt/SUNWspro/bin/CC -compat=4 -features=rtti -o t62
    -I. t62.o -L. -lt42
    In my real case, I have a library built with 4.2 C++
    compiler. I do not have the souce code for it and
    cannot compile it with rtti. Also, I cannot avoid
    using rtti when compiling my code with WS6U2.
    I am not sure why the WS6U2 tools are looking for
    dynamic cast information in my test case when I am
    not using dynamic_cast or typeid. As I said above,
    the test case works fine with the WS6U1 version of
    compiler.
    Comparision of symbol table information for t62.o
    generated with WS6U1 and WS6U2 shows the following
    difference:
    ts62.o compiled with WS6U1:
    ... NOTY |WEAK |0 |UNDEF |__0FK__rtaccessR6Hclass42
    ts62.o compiled with WS6U2:
    ... NOTY |GLOB |0 |UNDEF |__0FK__rtaccessR6Hclass42
    Any help is appreciated.
    Thank You.
    Chandra Kota

    When you compile with -instances=explicit, no template instances will be generated other than the ones you explicitly ask for.
    This code requires instantiation of some rw_slist members that are not in the librwtools library, and the -instances=explicit option prevents them from being created implicitly.
    First, you need to add an explicit instantiation directive for the missing rw_slist destructor. When you do that, you will find other functions, some from the C++ standard library, that need explicit instantiation.
    Using any of the non-default template compilation models usually requires considerable trial and error to generate all of the needed instances without duplicating any of them.
    For more discussion of the -instances=xxx options and their tradeoffs, please see the C++ User's Guide chapters on using templates.
    - Rose

  • Help !! a link error

    when I link my application to an lib. the following link error occurs:
    Undefined first referenced
    symbol in file
    __RTTI__1CpknKDT_TSymbol4nJRWCString___ /am/lib/sun4.solaris2.9/libDV.so
    How can I get the information about the symbols in a lib?
    I'm not sure where the symbol __RTTI__1CpknKDT_TSymbol4nJRWCString is defined?

    I see that this forum software deleted the stuff in angle brackets in my original answer. The missing RTTI symbol refers to const DT_TSymbol< RWCString >* That is, a pointer to template class DT_TSymbol instantiated on type RWCString.
    The missing symbol is a data object generated by the compiler. Since the data object is referenced in each shared library, it should be contained in each shared library.
    The RTTI data is missing, and there are at least two reasons why that might be so.
    1. The library was not built correctly; a necessary object file was omitted. That missing object file would have contained the RTTI data.
    2. The library was built with a compiler that neglected to emit the RTTI object (a compiler bug).
    Determining which is the case is beyond the scope of what we can do in this forum.
    A place to start is to have whoever built those libraries add the option "-z defs" to the CC command line that was used to create each shared library. They will see linker error messages about all the needed symbols that are missing. That's a starting point for tracking down why they are missing.
    In general, shared libraries should be built with "-z defs" so that the creator of the library finds out about missing symbols instead of inflicting the pain on clients of the library.

  • Linker error: error LNK2001: unresolved external symbol __imp_printf

    On a newly installed compiler, Visual Studio 2013, I get some linker error:
    Sample program (for test):
    #include <stdio.h>
    int main ()
    printf("Help");
    return 0;
    I get some linker errors:
    Error 2 error LNK2001: unresolved external symbol __imp_printf F:\ug_info\indices\Project1\Project1\Source.obj Project1
    Error 1 error LNK2001: unresolved external symbol __security_check_cookie F:\ug_info\indices\Project1\Project1\Source.obj Project1
    Error 3 error LNK2001: unresolved external symbol mainCRTStartup F:\ug_info\indices\Project1\Project1\LINK Project1
    I thinks there is a configuration issue..
    Any suggestions?

    Hi Camiel.Rys,
    Thanks for posting in MSDN forum.
    Error 3 error LNK2001: unresolved external symbol mainCRTStartup F:\ug_info\indices\Project1\Project1\LINK Project1
    I would guess that you may create a wrong project template. Could you try to create a new Win32 Console project following this document?
    Walkthrough: Creating a Win32 Console Program (C++)
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • STL linker error  - Very urgent

    Hi,
    I am getting a linking error while building a program, The program is using an object file
    that uses STL <queue> template.
    I am using the compiler SC 5.0 with SunOS 5.6 and I am using the STL that comes with Sun C++ 5.0
    I am getting the below mentioned error while using STL queue template.
    I am not able to identify the problem. If somebody could help me in this regard,
    I would appreciate it.
    In my program, MsgBuf is an instance of a class.
    I am trying to use queue like
    std::queue<MsgBuf *> tmpq
    I also need another clarification, is it possible to use,
    std::queue<MsgBuf> * tmpq = new std::queue<MsgBuf>;
    Undefined first referenced
    symbol in file
    __type_1 std::copy<std::deque<MsgBuf*,std::allocator<MsgBuf*> >::const_iterator,std::back_insert_iterator<std:
    :deque<MsgBuf*,std::allocator<MsgBuf*> > > >(__type_0,__type_0,__type_1) ../sunlib/libMqApi.a(MQ_GuardedQueue.o)
    std::deque<MsgBuf*,std::allocator<MsgBuf*> >::~deque() ../sunlib/libMqApi.a(MQ_GuardedQueue.o)
    unsigned std::deque<MsgBuf*,std::allocator<MsgBuf*> >::__buffer_size() ../sunlib/libMqApi.a(MQ_GuardedQueue.o)
    __type_1 std::copy<std::deque<MsgBuf*,std::allocator<MsgBuf*> ::const_iterator,std::insert_iterator<std::deque<MsgBuf*,std::allocator<MsgBuf*> > > >(__type_0,__type_0,__type_1) ../sunlib/libMqApi.a(MQ_GuardedQueue.o)
    __type_1 std::copy<std::deque<MsgBuf*,std::allocator<MsgBuf*> ::const_iterator,std::deque<MsgBuf*,std::allocator<MsgBuf*> >::iterator>(__type_0,__type_0,__type_1) ../sunlib/libMqApi.a(MQ_GuardedQueue.o)
    std::deque<MsgBuf*,std::allocator<MsgBuf*> >::iterator std::deque<MsgBuf*,std::allocator<MsgBuf*> >::erase(std
    ::deque<MsgBuf*,std::allocator<MsgBuf*> >::iterator,std::deque<MsgBuf*,std::allocator<MsgBuf*> >::iterator) ../sunlib/libMqApi.a(MQ_GuardedQueue.o)
    void std::deque<MsgBuf*,std::allocator<MsgBuf*> >::__allocate_at_end() ../sunlib/libMqApi.a(MQ_GuardedQueue.o)
    void std::deque<MsgBuf*,std::allocator<MsgBuf*> >::__deallocate_at_begin() ../sunlib/libMqApi.a(MQ_GuardedQueu
    e.o)
    ld: fatal: Symbol referencing errors.

    Maybe you forgot to use:
    import java.io.IOException;Post your code for us!!

  • Linking Error - ihsodbc sdo_on ctx_on

    Hi All,
    I was trying to install OAS 10g R2 (10.1.2.0.2) on linux-6 64-bit and I have installed all required packages that supports 32-bit as well. I am getting following linking error, any ones help is much appreciated.
    - Linking hsodbc agent
    rm -f /u01/oracle/product/10.1.2/oraInfra/rdbms/lib/hsodbc
    gcc -o /u01/oracle/product/10.1.2/oraInfra/rdbms/lib/hsodbc -L/u01/oracle/product/10.1.2/oraInfra/rdbms/lib/ -L/u01/oracle/product/10.1.2/oraInfra/lib/ -L/u01/oracle/product/10.1.2/oraInfra/lib/stubs/   /u01/oracle/product/10.1.2/oraInfra/hs/lib/hsodbc.o         /u01/oracle/product/10.1.2/oraInfra/rdbms/lib/defopt.o  /u01/oracle/product/10.1.2/oraInfra/rdbms/lib/homts.o          -L/u01/oracle/product/10.1.2/oraInfra/lib/ -lnavhoa  -lhsnav -lhsbase  -lagtsh -lpls10  -lplp10   -lclntsh  -lcore10 -lxml10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 /u01/oracle/product/10.1.2/oraInfra/lib/libgeneric10.a   `cat /u01/oracle/product/10.1.2/oraInfra/lib/sysliblist` -Wl,-rpath,/u01/oracle/product/10.1.2/oraInfra/lib -lm    `cat /u01/oracle/product/10.1.2/oraInfra/lib/sysliblist` -ldl -lm   -L/u01/oracle/product/10.1.2/oraInfra/lib -L/u01/oracle/product/10.1.2/oraInfra/lib/stubs/  -lvsn10
    /lib/libfreebl3.so: undefined reference to `__memcpy_chk@GLIBC_2.3.4'
    /lib/libfreebl3.so: undefined reference to `__snprintf_chk@GLIBC_2.3.4'
    /lib/libfreebl3.so: undefined reference to `__fread_chk@GLIBC_2.7'
    /lib/libfreebl3.so: undefined reference to `__ctype_b_loc@GLIBC_2.3'
    /lib/libfreebl3.so: undefined reference to `__memset_chk@GLIBC_2.3.4'
    /lib/libfreebl3.so: undefined reference to `__stack_chk_fail@GLIBC_2.4'
    /lib/libfreebl3.so: undefined reference to `__ctype_toupper_loc@GLIBC_2.3'
    /lib/libfreebl3.so: undefined reference to `__fprintf_chk@GLIBC_2.3.4'
    /lib/libfreebl3.so: undefined reference to `__ctype_tolower_loc@GLIBC_2.3'
    collect2: ld returned 1 exit status
    make: *** [/u01/oracle/product/10.1.2/oraInfra/rdbms/lib/hsodbc] Error 1
    End output from spawned process.
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'ihsodbc sdo_on ctx_on' of makefile '/u01/oracle/product/10.1.2/oraInfra/rdbms/lib/ins_rdbms.mk'. See '/u01/oracle/oraInventory/logs/installActions2014-07-20_10-31-02AM.log' for details.
    Exception Severity: 1
    Regards,

    Hi Nicholas & Prakash,
    Installation of 10.2 database is also stopped at same location dbca. Please suggest me any solution.
    INFO: Configuration assistant "Oracle Net Configuration Assistant" succeeded
    INFO: Command = /u01/oracle/product/10.2.0/db_1/bin/dbca  -progress_only  -createDatabase -templateName General_Purpose.dbc -gdbName infradb -sid apps  -sysPassword 053221345ba434ac  -systemPassword 053221345ba434ac  -sysmanPassword 0053221345ba434a  -dbsnmpPassword 053221345ba434ac  -emConfiguration NOEMAIL  -hostUserName oracle -hostUserPassword 053221345ba434acsd    -datafileJarLocation /u01/oracle/product/10.2.0/db_1/assistants/dbca/templates  -datafileDestination /u01/oracle/product/10.2.0/oradata/ -responseFile NO_VALUE   -characterset WE8ISO8859P1   -obfuscatedPasswords true  -sampleSchema false -oratabLocation /u01/oracle/product/10.2.0/db_1/install/oratab  -recoveryAreaDestination /u01/oracle/product/10.2.0/flash_recovery_area/
    INFO: --------------------------------------
    INFO: The "/u01/oracle/product/10.2.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    INFO: The "/u01/oracle/product/10.2.0/db_1/cfgtoollogs/configToolAllCommands" script contains all commands to be executed by the configuration assistants. This file may be used to run the configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    SEVERE: OUI-25029:One or more "Recommended" configuration assistants have not completed successfully. Not successfully running any "Recommended" assistant means your system will not be correctly configured.
    INFO: User Selected: Yes/OK
    WARNING: Do you really want to exit?
    INFO: User Selected: Yes/OK
    INFO: The OUICA command is launched from /u01/oracle/product/10.2.0/db_1/oui/bin/ouica.sh.
    *** Starting OUICA ***
    Oracle Home set to /u01/oracle/product/10.2.0/db_1
    Configuration directory is set to /u01/oracle/product/10.2.0/db_1/cfgtoollogs. All xml files under the directory will be processed
    Regards.

  • Linker Error during compiling ODBC WinCE C++_Sample Project

    I am devloping a ODBC application for PocketPC2003 using OLite 10g Release 10.3.0.2. before that i am understanding the sample application provided with Olite.
    I followed all the instructions provided in ReadMe.txt file available before using VC++ sample. After making all the settings and compiling i am getting following linker errors as mentioned below.
    Any solution for this problem at the earliest will be appreciated, i have tried link all the libraries provided with WinCE armv4.
    Linker Error Messages:
    Error     1     error LNK2019: unresolved external symbol SQLExecDirect referenced in function "public: virtual __cdecl CSQLResult::~CSQLResult(void)" (??1CSQLResult@@UAA@XZ)     dbaccess.obj     
    Error     2     error LNK2019: unresolved external symbol SQLFreeStmt referenced in function "public: virtual __cdecl CSQLResult::~CSQLResult(void)" (??1CSQLResult@@UAA@XZ)     dbaccess.obj     
    Error     3     error LNK2019: unresolved external symbol SQLGetData referenced in function "public: class CRowObj const * __cdecl CSQLResult::Fetch(int)" (?Fetch@CSQLResult@@QAAPBVCRowObj@@H@Z)     dbaccess.obj     
    Error     4     error LNK2019: unresolved external symbol SQLFetch referenced in function "public: class CRowObj const * __cdecl CSQLResult::Fetch(int)" (?Fetch@CSQLResult@@QAAPBVCRowObj@@H@Z)     dbaccess.obj     
    Error     5     error LNK2019: unresolved external symbol SQLFreeEnv referenced in function "public: void __cdecl COLiteDB::Disconnect(void)" (?Disconnect@COLiteDB@@QAAXXZ)     dbaccess.obj     
    Error     6     error LNK2019: unresolved external symbol SQLFreeConnect referenced in function "public: void __cdecl COLiteDB::Disconnect(void)" (?Disconnect@COLiteDB@@QAAXXZ)     dbaccess.obj     
    Error     7     error LNK2019: unresolved external symbol SQLDisconnect referenced in function "public: void __cdecl COLiteDB::Disconnect(void)" (?Disconnect@COLiteDB@@QAAXXZ)     dbaccess.obj     
    Error     8     error LNK2019: unresolved external symbol SQLConnect referenced in function "public: int __cdecl COLiteDB::Connect(void)" (?Connect@COLiteDB@@QAAHXZ)     dbaccess.obj     
    Error     9     error LNK2019: unresolved external symbol SQLAllocConnect referenced in function "public: int __cdecl COLiteDB::Connect(void)" (?Connect@COLiteDB@@QAAHXZ)     dbaccess.obj     
    Error     10     error LNK2019: unresolved external symbol SQLAllocEnv referenced in function "public: int __cdecl COLiteDB::Connect(void)" (?Connect@COLiteDB@@QAAHXZ)     dbaccess.obj     
    Error     11     error LNK2019: unresolved external symbol SQLError referenced in function "public: class CSQLResult * __cdecl COLiteDB::Execute(wchar_t const *)" (?Execute@COLiteDB@@QAAPAVCSQLResult@@PB_W@Z)     dbaccess.obj     
    Error     12     error LNK2019: unresolved external symbol SQLDescribeCol referenced in function "public: class CSQLResult * __cdecl COLiteDB::Execute(wchar_t const *)" (?Execute@COLiteDB@@QAAPAVCSQLResult@@PB_W@Z)     dbaccess.obj     
    Error     13     error LNK2019: unresolved external symbol SQLNumResultCols referenced in function "public: class CSQLResult * __cdecl COLiteDB::Execute(wchar_t const *)" (?Execute@COLiteDB@@QAAPAVCSQLResult@@PB_W@Z)     dbaccess.obj     
    Error     14     error LNK2019: unresolved external symbol SQLAllocStmt referenced in function "public: class CSQLResult * __cdecl COLiteDB::Execute(wchar_t const *)" (?Execute@COLiteDB@@QAAPAVCSQLResult@@PB_W@Z)     dbaccess.obj

    Hi,
    The OLITE forum (Database Mobile Server (inc. legacy Database Lite) would be a better place to post your issue. This forum deals with the ODBC driver that connects to a "normal" Oracle database.
    Hope it helps,
    Greg
    Edited by: gdarling on Nov 12, 2008 8:31 AM

  • I am getting an linker error LNK2001 : unresolved symbol _main while compiling Microsoft c code

    I am writng a simple application in C language for communicating with GPIB. when I compile the c file I am getting a linker error
    LIBC.lib(ctr0.obj): LNK2001 error: unresolved sysmbol _main
    I compile the application in the dos window using the command
    cl gpibApplication.c gpib-32.obj.
    Could anyone tell me how to remove this error

    Hello-
    It sounds like the main function is missing from the gpibApplication.c file. Be sure that the following function is somewhere in the code:
    int main (int argc, char *argv[])
    Also, note that this function is case sensitive, so be sure main is not capitalized.
    Randy Solomonson
    Application Engineer
    National Instruments

  • "Template import error: No VM configure file found" on brand new setup

    Previously, I posted Console does not launch OVM 3.1.1, Win7x32 Firefox15/IE8 - Empty .jnlp file which was about VM Console not launching. Since this is a new installation, and it seemed to be a unique problem, I scratched the whole installation and started again from scratch. Everything, including the NFS file server, was re-installed from scratch CD OS installation.
    The process is pretty straightforward once you're used to it, and in less than three hours I was ready again to import my first template (a template I had imported before). But now, I submit the the request, and almost immediately the process aborts. (You can see in the information below, that 1 second passes between the Import request (06:32:36) and the failure.)
    Thing is, it takes about three minutes, even locally on the web server, to get an index of that large file (tar tzf), and at completion, the vm config file is listed.
    Am I misreading the error? My web searches for enlightenment found only one good hit on this error, and in that case it appeared to be an "out of space" issue. In this case, though, I'm importing a 5GB tarfile into a 390GB, otherwise-empty file system, so I don't think that is the issue. The failure in ovs-agent.log is below. What other information may I provide to get to the bottom of this? (Thanks for any guidance/help, of course!)
    [2012-10-31 06:31:40 3341] DEBUG (monitor:36) Cluster state changed from [Heartbeating] to [DLM_Ready]
    [2012-10-31 06:31:40 3341] INFO (notification:67) Notification sent: {CLUSTER} {MONITOR} Cluster state changed from [Heartbeating] to [DLM_Ready]
    [2012-10-31 06:31:40 3338] INFO (notification:193) Sending notification: {CLUSTER} {MONITOR} Cluster state changed from [Heartbeating] to [DLM_Ready]
    [2012-10-31 06:31:48 4914] DEBUG (service:77) discover_cluster: ()
    [2012-10-31 06:31:48 4914] DEBUG (service:85) discover_cluster: call completed.
    [2012-10-31 06:32:03 4926] DEBUG (service:77) storage_plugin_mount: ('oracle.generic.NFSPlugin.GenericNFSPlugin', {'status': '', 'admin_user': None, 'admin_host': None, 'uuid': '0004fb00000900003cf41964f3476788', 'total_sz': 0, 'admin_passwd': '******', 'storage_desc': '', 'free_sz': 0, 'access_host': 'filesrv.ps.***.com', 'storage_type': 'FileSys', 'alloc_sz': 0, 'access_grps': [], 'used_sz': 0, 'name': '0004fb00000900003cf41964f3476788'}, {'status': '', 'uuid': 'fc3564eb-ce8b-489c-96bc-df6de2cc8a11', 'ss_uuid': '0004fb00000900003cf41964f3476788', 'size': '330279518208', 'free_sz': '330075340800', 'state': 2, 'access_grp_names': [], 'access_path': 'filesrv.ps.***.com:/mnt/ps_big/repo/repo', 'name': 'nfs:/mnt/ps_big/repo/repo'}, '/OVS/Repositories/0004fb0000030000659e0ce6f2ecfb55', None, True, [])
    [2012-10-31 06:32:03 4926] INFO (storageplugin:108) storage_plugin_mount(oracle.generic.NFSPlugin.GenericNFSPlugin)
    [2012-10-31 06:32:03 4926] DEBUG (NFSPlugin:353) cmd = ['mount', '-t', 'nfs', 'filesrv.ps.***.com:/mnt/ps_big/repo/repo', '/OVS/Repositories/0004fb0000030000659e0ce6f2ecfb55']
    [2012-10-31 06:32:03 4926] DEBUG (service:85) storage_plugin_mount: call completed.
    [2012-10-31 06:32:03 4931] DEBUG (service:77) add_repository: ('filesrv.ps.***.com:/mnt/ps_big/repo/repo', '0004fb0000030000659e0ce6f2ecfb55')
    [2012-10-31 06:32:03 4931] DEBUG (service:85) add_repository: call completed.
    [2012-10-31 06:32:36 4972] DEBUG (linux:847) async call function: import_template
    [2012-10-31 06:32:36 4975] DEBUG (service:77) import_template: ('0004fb0000030000659e0ce6f2ecfb55', '0004fb0000140000fdc18a572a244015', ['http://aspire/pstop/OVM_EL5U7_X86_64_TOOLS8_52_06_PVM.tgz'])
    [2012-10-31 06:32:37 4975] INFO (notification:74) async_proc_prog: notification {ASYNC_PROC} progress PID 4975 status {'OBJECT': 'template', 'TOTAL_OBJECT_COUNT': 1, 'CURRENT_OBJECT_COUNT': 1, 'TOTAL_BYTES': 0L, 'CURRENT_BYTES': 613L, 'OPERATION': 'download'}
    [2012-10-31 06:32:37 4975] INFO (notification:67) Notification sent: {ASYNC_PROC} progress PID 4975
    [2012-10-31 06:32:37 3338] INFO (notification:193) Sending notification: {ASYNC_PROC} progress PID 4975
    [2012-10-31 06:32:37 4975] ERROR (service:96) catch_error: Template import error: No VM configure file found.
    Traceback (most recent call last):
    File "/usr/lib64/python2.4/site-packages/agent/service.py", line 94, in wrapper
    return func(*args)
    File "/usr/lib64/python2.4/site-packages/agent/hypervisor/xenxm.py", line 1041, in import_template
    raise RuntimeError('Template import error: %s' % err)
    RuntimeError: Template import error: No VM configure file found.
    [2012-10-31 06:32:37 4975] DEBUG (linux:879) ovs_async_proc: pid 4975 status 1 output Template import error: No VM configure file found.
    [2012-10-31 06:32:37 4975] INFO (notification:67) Notification sent: {ASYNC_PROC} exit PID 4975
    [2012-10-31 06:32:37 3338] INFO (notification:193) Sending notification: {ASYNC_PROC} exit PID 4975
    [2012-10-31 06:32:39 4987] DEBUG (service:77) storage_plugin_listFileSystems: ('oracle.generic.NFSPlugin.GenericNFSPlugin', {'status': '', 'admin_user': None, 'admin_host': None, 'uuid': '0004fb00000900003cf41964f3476788', 'total_sz': 0, 'admin_passwd': '******', 'storage_desc': '', 'free_sz': 0, 'access_host': 'filesrv.ps.***.com', 'storage_type': 'FileSys', 'alloc_sz': 0, 'access_grps': [], 'used_sz': 0, 'name': '0004fb00000900003cf41964f3476788'}, True)
    [2012-10-31 06:32:39 4987] INFO (storageplugin:108) storage_plugin_listFileSystems(oracle.generic.NFSPlugin.GenericNFSPlugin)
    [2012-10-31 06:32:39 4987] DEBUG (NFSPlugin:142) ENTER: listFileSysytems()
    [2012-10-31 06:32:39 4987] DEBUG (NFSPlugin:257) EXIT : listFileSysytems()
    [2012-10-31 06:32:39 4987] DEBUG (service:85) storage_plugin_listFileSystems: call completed.
    [2012-10-31 06:32:39 5005] DEBUG (service:77) discover_pool_filesystem: ()
    [2012-10-31 06:32:39 5005] DEBUG (service:85) discover_pool_filesystem: call completed.

    How did you get the template to where you staged it?
    I'd say the template is corrupt or you only have a partial template.
    I did notice the call to the template is based on the short name of the host. Can you confirm the VM manager can access the http path via short name?

  • Link errors on HP Itanium and Oracle 9.0.1.0.1 Developers Release

    We have pulled down the Oracle Developers release for HP-UX 11.22 and were not able to compile the Oracle code
    because of a link error. We are getting the following errors in the make.log file:
    (Bundled) cc: error 1913: `16M' does not exist or cannot be read
    (Bundled) cc: error 1913: `L' does not exist or cannot be read
    (Bundled) cc: error 1913: `1M' does not exist or cannot be read
    (Bundled) cc: error 1913: `1M' does not exist or cannot be read
    *** Error exit code 1
    Stop.
    Has anyone run into this issue and how was it resolved?
    Thanks,
    Walter

    Alex,
    does a
    select xmlelement("SQLX", 'Hello ,World!') from dual; work?
    SQL> select xmlelement("SQLX", 'Hello World!') from dual;
    XMLELEMENT("SQLX",'HELLOWORLD!')
    <SQLX>Hello World!</SQLX>
    It works for me in 9.2
    SQL> select xmlelement("orderid", order_num) from orders;
    XMLELEMENT("ORDERID",ORDER_NUM)
    <orderid>1</orderid>
    <orderid>2</orderid>
    <orderid>3</orderid>
    <orderid>1</orderid>
    <orderid>2</orderid>
    <orderid>3</orderid>
    6 rows selected.
    SQL>

  • My external hard drive won't mount and shows a 'sibling link error'. I've seached the forums but need a very dumbed down set of tips for the computer illiterate- help?

    The forums have suggestions on this topic but I don't understand the lingo used.

    Remember card catalogs in libraries?   The computer has its own card catalog that tells it where all the files are.  That's known as the directory.
    Sibling link error indicates something is wrong with one of the cards, making the computer lost.  Now the computer will put forth a bunch of gobbledy gook to fix this error, but you can do it. 
    Since the issue is with the external hard disk, you must select it with Disk Utility's First Aid selected.   There you will repair the disk.   If it can't repair the disk, you will need to use a more powerful tool.  The question is, is your data backed up elsewhere, or is it not?  If it is not, the same symptoms of a bad directory can also implicate a dying hard drive.  You'll want a data recovery tool if you aren't backed up.  If you are backed up, and there is nothing that can't be replaced on that external hard drive, get Alsoft Disk Warrior.  This should fix most bad sibling link errors repair disk can't.  When it can't, you can give up on the external hard disk.
    P.S. Permissions has NOTHING to do with the directory.  Do not worry about issues with permissions or attempting to repair it at this stage.

  • "Not an executable or is a link" errors when starting Messaging Server

    "Not an executable or is a link" errors when starting Messaging Server
    <P>
    If Calendar Server 3.x has been installed to the same server root
    as Messaging server, it is possible that the command 'NscpMail start'
    to restart the server will return a string of errors:
    # /etc/NscpMail start
    19971207145610:Dispatch:Notification:Local Module
    (Account-Handler) is not a n executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Account-Manager) is not a n executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (AutoReply-Handler) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Configuration-Manager) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Error-Handler) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Mailbox-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Program-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (SMTP-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (SMTP-Router) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (UNIX-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (Finger-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (IMAP4-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (POP3-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (SMTP-Accept) is not an executable or is a link.
    Module not loaded.
    Startup Problem:
    Module Error-Handler is required for proper operation.
    Netscape Messaging Server Exiting!
    The Calendar server 3.x installation may have changed the permissions
    on [server-root]/bin directory from 755 to 750. Simply issue the
    command (as root) 'chmod 755 [server-root]/bin' and then start
    the server with the 'NscpMail start' command, and it should start
    without a problem.

    "Not an executable or is a link" errors when starting Messaging Server
    <P>
    If Calendar Server 3.x has been installed to the same server root
    as Messaging server, it is possible that the command 'NscpMail start'
    to restart the server will return a string of errors:
    # /etc/NscpMail start
    19971207145610:Dispatch:Notification:Local Module
    (Account-Handler) is not a n executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Account-Manager) is not a n executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (AutoReply-Handler) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Configuration-Manager) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Error-Handler) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Mailbox-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (Program-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (SMTP-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (SMTP-Router) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Local Module
    (UNIX-Deliver) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (Finger-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (IMAP4-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (POP3-Server) is not an executable or is a link.
    Module not loaded.
    19971207145610:Dispatch:Notification:Network Module
    (SMTP-Accept) is not an executable or is a link.
    Module not loaded.
    Startup Problem:
    Module Error-Handler is required for proper operation.
    Netscape Messaging Server Exiting!
    The Calendar server 3.x installation may have changed the permissions
    on [server-root]/bin directory from 755 to 750. Simply issue the
    command (as root) 'chmod 755 [server-root]/bin' and then start
    the server with the 'NscpMail start' command, and it should start
    without a problem.

Maybe you are looking for

  • New iPod touch, no longer able to add songs via iTunes

    Have a new iPod touch, less than a week old. 3.1.2 OS and 9.0.2 iTunes on an iMac. Was loading songs manually, walked away for a little while, left the iPod connected, now I cannot add songs. I've restored the iPod, still unable to drop songs onto it

  • HT4623 iPad 3 charging port

    My ipad three has the three inch pin not the lightning charger. On the apple website it clearly states that the ipad three is suppose to have the lightning adapter. Is my ipad defective or something?

  • ICal ignores time zone in published calendar

    I'm trying to make a an online calendar that is automatically generated using events from a database. All events are in the Dutch time zone, so I added a time zone component to the .ics file. When I try to subscribe to the calendar in iCal everything

  • QIP-7100 vs QIP-6200 No widget button?

    Hi Does the older receiver have a widget button on the remote? What is the difference between the 2 models?  I know the 7100 is the newer version, but had heard bad things about it previously. I am returning 1 cblbox.  Which should I keep, which shou

  • Problems uninstalling MAXDB. ( instance )

    I am trying to completely uninstall my MAXDB but I have hanging DB instance that is giving me a headache. The instance MAXDB1 doesn't exist anymore (or shouldn't) but if I try to uninstall is asks for MAXDB1 instance drop but I cannot do it since it