Quoting Wilfried Hafner <[EMAIL PROTECTED]>:

An HTTP 304 status code means the file has not been modified since you  
last requested it, so if your browser does caching, it should just  
re-use the cached file instead of downloading it again.

http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.5

> Pau Garcia i Quiles schrieb:
>> Quoting Wilfried Hafner <[EMAIL PROTECTED]>:
>>
>> Download it from http://extjs.com. Version 2.0 works fine and 2.1 too, IIRC.
>>
>> As this is a recurrent question, maybe Wt should inspect the logs and
>> if Ext .js, .css, etc files are missing, tell the developer: "Wt has
>> noticed you are using Wt::Ext widgets but some Ext files are missing.
>> Either they are installed in the wrong location or you have not
>> installed them at all. You can download ExtJS 2.0 from
>> http://extjs.com.";. Or alike.
>>
>>
> Hi, I installed the framework now, like in the description I copied the
> required files to the specified directory.
> so now there is no errormessage anymore and to me it seems to work, but
> i think there are still some errors:
>
> 127.0.0.1 - - [2008-Oct-18 10:03:36.921875] "GET
> /ext/resources/css/ext-all.css HTTP/1.1" 304 0127.0.0.1 - - [2008-Oct-18
> 10:03:36.921875] "GET /ext/ext-base.js HTTP/1.1" 304 0127.0.0.1 - -
> [2008-Oct-18 10:03:36.921875]
> GET /charts.css HTTP/1.1" 304 0
>
>
> 127.0.0.1 - - [2008-Oct-18 10:03:36.953125] "GET /ext/ext-all.js
> HTTP/1.1" 304 0
> 127.0.0.1 - - [2008-Oct-18 10:03:37.062500] "GET /resources/collapse.gif
> HTTP/1.1" 304 0127.0.0.1 - - [2008-Oct-18 10:03:37.062500] "GET
> /resources/expand.gif HTTP/1.1" 304 0
>
> 127.0.0.1 - - [2008-Oct-18 10:03:37.140625] "GET
> /ext/resources/images/default/s.gif HTTP/1.1" 304 0127.0.0.1 - -
> [2008-Oct-18 10:03:37.156250] "GET
> /ext/resources/images/default/grid/grid3-hrow.gif HTTP/1.1" 304 0
>
> 127.0.0.1 - - [2008-Oct-18 10:03:37.296875] "POST
> /charts?wtd=3lKHXJSgFgDZn8OQ&rand=71328 HTTP/1.1" 200 334
>
>
> I'm sure that all of the files exists and that they are in right
> location... Are this errors? what das 304 mean?
>
>>> I got the debug mode now working... I installed boost for vc2008 express
>>> and compiled wt with it, so this problem is solved...
>>>
>>> now could you please help me with the ext javascript functions?
>>>
>>> 127.0.0.1 - - [2008-Oct-17 23:26:20.953125] "GET
>>> /charts?wtd=h3UuKNwtF9aMXwpd&js=yes&ajax=yes&request=script&rand=632047
>>> HTTP/1.1" 200 164889
>>> 127.0.0.1 - - [2008-Oct-17 23:26:21] "GET /charts.css HTTP/1.1" 304
>>> 0127.0.0.1 - - [2008-Oct-17 23:26:21] "GET
>>> /ext/resources/css/ext-all.css HTTP/1.1" 404 85127.0.0.1 - -
>>> [2008-Oct-17 23:26:21] "GET /ext/ext-base.js HTTP/1.1" 404 85
>>>
>>> this is some output to the console, so I think there is the ext-base.js
>>> missing, but I can not find such a file?
>>>
>>> Wilfried Hafner schrieb:
>>>
>>>> Hi!
>>>>
>>>> Wim Dumon schrieb:
>>>>
>>>>
>>>>> 2008/10/16 Wilfried Hafner <[EMAIL PROTECTED]>:
>>>>>
>>>>>
>>>>>
>>>>>> Hello!
>>>>>>
>>>>>> I'm new to witty and I have some questions to the examples. I'm using
>>>>>> Wt2.2.0 on Windows with boost1.36 and visual studio 2005.
>>>>>>
>>>>>> When I try to start an example in debug mode, i get the following error:
>>>>>> "Unable to start program
>>>>>> 'c:\Wt\wt-2.2.0\build\examples\hello\debug\hello.wt.exe'.
>>>>>> This application has failed to start because the application
>>>>>> configuration is incorrect. Review the manifest file for possible
>>>>>> errors. Reinstalling the application may fix this problem. For more
>>>>>> details, please see the application event log."
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>> Are you trying to run on the same machine as Wt was built on?
>>>>> Normally, you should not get such errors then.
>>>>> You can debug this kind of errors best by running depends.exe on your
>>>>> executable and try to find out what C runtime libraries are missing,
>>>>> and from what components they come. Try linking against dll versions
>>>>> of boost and other dependencies, this will narrow down your search.
>>>>> You may have to build boost yourself...
>>>>>
>>>>>
>>>>>
>>>>>
>>>> I tried now following:
>>>> - installed boost_1_35 instead of 1_36
>>>> - set boost_dynamic to true
>>>> - set shared_libs to true
>>>>
>>>> now i can start the application in debug mode and i get following output
>>>> in the debugwindow of visualstudio, so there must be an error with the
>>>> boost lib, do you have any ideas what i could do? release mode again is
>>>> working fine!
>>>>
>>>> 'hello.wt.exe': Loaded
>>>> 'C:\boost\boost_1_35_0\lib\boost_signals-vc80-mt-gd-1_35.dll', No
>>>> symbols loaded.
>>>> LDR: LdrpWalkImportDescriptor() failed to probe
>>>> C:\boost\boost_1_35_0\lib\boost_signals-vc80-mt-gd-1_35.dll for its
>>>> manifest, ntstatus 0xc0150002
>>>> Debugger:: An unhandled non-continuable exception was thrown during
>>>> process load
>>>> The program '[3704] hello.wt.exe: Native' has exited with code
>>>> -1072365566 (0xc0150002).
>>>>
>>>>
>>>>
>>>>>> In release mode it works fine...
>>>>>>
>>>>>> The other problem is, that when I try to open the examples extkitchen or
>>>>>> simplechat in the browser, I get following messages:
>>>>>> "Wt internal error: TypeError: j3 is null, code: undefined, description:
>>>>>> undefined" and
>>>>>> "Wt internal error: TypeError: j1 is null, code: undefined, description:
>>>>>> undefined"
>>>>>>
>>>>>> maybe I can solve the problem by myself, when i get the examples
>>>>>> working  in debug mode...
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>> Do you see 404 errors in the application output? Did you put Ext in
>>>>> the right location?
>>>>>
>>>>> Regards,
>>>>> Wim.
>>>>>
>>>>>
>>>>>
>>>> here is the console output of the extkitchen example:
>>>>
>>>> 2008-Oct-17 18:45:29.843750] 1412 - [notice] "Wt: initializing built-in
>>>> httpd"
>>>> 2008-Oct-17 18:45:29.843750] 1412 - [notice] "Reading Wt config file:
>>>> c:/witty/wt_config.xml (location =
>>>> 'c:\wt\wt-2.2.0\build\examples\extkitchen\release\extkitchen.wt.exe')"
>>>> ption no-compression is implied because wthttp was built without zlib
>>>> support.
>>>> 2008-Oct-17 18:45:29.890625] 1412 - [notice] "Starting server:
>>>> http://0.0.0.0:8080";
>>>> 2008-Oct-17 18:46:06.953125] 1412 [/extkitchen pERxc2eWLtuanDBi]
>>>> [notice] "Session created (#sessions = 1)"
>>>> 27.0.0.1 - - [2008-Oct-17 18:46:06.953125] "GET /extkitchen HTTP/1.1"
>>>> 200 3357
>>>> xml: Character entity "" not terminated under parent <span>!
>>>> 2008-Oct-17 18:46:07.109375] 1412 [/extkitchen pERxc2eWLtuanDBi] [error]
>>>> "Error parsing: Menu & ToolBar"
>>>> 27.0.0.1 - - [2008-Oct-17 18:46:07.156250] "GET
>>>> /extkitchen?wtd=pERxc2eWLtuanDBi&js=yes&ajax=yes&request=script&rand=55177
>>>> HTTP/1.1" 200 37148
>>>> 27.0.0.1 - - [2008-Oct-17 18:46:07.187500] "GET /extkitchen.css
>>>> HTTP/1.1" 404 85127.0.0.1 - - [2008-Oct-17 18:46:07.187500] "GET
>>>> /ext/resources/css/ext-all.css HTTP/1.1" 404 85127.0.0.1 - -
>>>> [2008-Oct-17 18:46:07.187500]
>>>> GET /ext/ext-base.js HTTP/1.1" 404 85
>>>>
>>>> what do you mean with the right location for ext? sorry for my   
>>>> ignorance...
>>>>
>>>> regards,
>>>> willi
>>>>
>>>>
>>>> -------------------------------------------------------------------------
>>>> This SF.Net email is sponsored by the Moblin Your Move   
>>>> Developer's challenge
>>>> Build the coolest Linux based applications with Moblin SDK & win
>>>> great prizes
>>>> Grand prize is a trip for two to an Open Source event anywhere in  
>>>>  the world
>>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>>>> _______________________________________________
>>>> witty-interest mailing list
>>>> [email protected]
>>>> https://lists.sourceforge.net/lists/listinfo/witty-interest
>>>>
>>>>
>>> -------------------------------------------------------------------------
>>> This SF.Net email is sponsored by the Moblin Your Move Developer's  
>>>  challenge
>>> Build the coolest Linux based applications with Moblin SDK & win   
>>> great prizes
>>> Grand prize is a trip for two to an Open Source event anywhere in the world
>>> http://moblin-contest.org/redirect.php?banner_id=100&url=/
>>> _______________________________________________
>>> witty-interest mailing list
>>> [email protected]
>>> https://lists.sourceforge.net/lists/listinfo/witty-interest
>>>
>>>
>>
>>
>>
>>
>
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> witty-interest mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/witty-interest
>



-- 
Pau Garcia i Quiles
http://www.elpauer.org
(Due to my workload, I may need 10 days to answer)


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
witty-interest mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to