Note that there are some explanatory texts on larger screens.

plurals
  1. POtidesdk exception when using forms
    text
    copied!<p>I have a simple tidesdk program with php module which contains a simple form and a php file which handles this form. </p> <p>Everything works fine. But when I submit the form the program crashes and throws an exception which is listed below. </p> <p>I am running the program through tidesdk developer. </p> <p>Here's the form.</p> <pre><code>&lt;form action="login.php"&gt; &lt;table style="margin: 0 auto; width: 250px;"&gt; &lt;tr&gt; &lt;td style="padding-top: 20px;"&gt; &lt;div class="input-group margin-bottom-sm"&gt; &lt;span class="input-group-addon"&gt; &lt;i class="fa fa-user fa-fw"&gt;&lt;/i&gt; &lt;/span&gt; &lt;input name="username" class="form-control custom-input" type="text" placeholder="Username" id="focusedInput"&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="padding-top: 15px;"&gt; &lt;div class="input-group"&gt; &lt;span class="input-group-addon"&gt; &lt;i class="fa fa-key fa-fw"&gt;&lt;/i&gt; &lt;/span&gt; &lt;input name="password" class="form-control" type="password" placeholder="Password"&gt; &lt;input id='loginSubmit' name='loginSubmit' type="hidden" value="&lt;?php print md5(time()); ?&gt;"&gt; &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="padding-top: 15px;"&gt; &lt;button name="login" id="login" type="submit" class="btn-inverse button-custom" data-section="2"&gt; Sign In &lt;i class="fa fa-sign-in fa-fw"&gt;&lt;/i&gt; &lt;/button&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; </code></pre> <p>Here's the php file that handles the form.</p> <pre><code> &lt;?php print_r($_GET); ?&gt; </code></pre> <p><strong>And this is the exception I am getting.</strong></p> <pre><code>Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. </code></pre> <p>I am running this on Windows 8 Pro - 64 bit. But I have also tried this on 32 bit version of XP and Windows 7 but got the same exception. </p> <p>Can anyone please help me with this?</p> <p>Thanks in advance. </p> <p>Here's the full trace of the application.</p> <pre><code>'HelloWorld.exe' (Win32): Loaded 'C:\Users\Jay\Desktop\hsm-test\dist\win32\HelloWorld\HelloWorld.exe'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shell32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\user32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.8428_none_d08a11e2442dc25d\msvcp80.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\WinSxS\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.8428_none_d08a11e2442dc25d\msvcr80.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcrt.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\combase.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\shlwapi.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rpcrt4.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sspicli.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptbase.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\sechost.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\bcryptprimitives.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\imm32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msctf.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\SHCore.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\profapi.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\tide.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\PocoFoundation.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\WebKit.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\advapi32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\icuuc40.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\IPHLPAPI.DLL'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ole32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\libproxy.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\oleaut32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\CFLite.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\JavaScriptCore.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\crypt32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winmm.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ws2_32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\libcurl.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\libxml2.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\icuin40.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\icudt40.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\nsi.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winnsi.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\pthreadVC2.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msasn1.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winmmbase.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\wsock32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\Wldap32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\libeay32.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\ssleay32.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\zlib1.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cfgmgr32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\devobj.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\uxtheme.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dwmapi.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel.appcore.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\app\1.3.1-beta\tideapp.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\PocoUtil.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\PocoXML.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\codec\1.3.1-beta\tidecodec.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\PocoZip.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\database\1.3.1-beta\tidedatabase.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\PocoData.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\PocoSQLite.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\filesystem\1.3.1-beta\tidefilesystem.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\media\1.3.1-beta\tidemedia.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\monkey\1.3.1-beta\tidemonkey.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\network\1.3.1-beta\tidenetwork.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\PocoNet.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\secur32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dhcpcsvc.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\cryptsp.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rsaenh.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\bcrypt.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\platform\1.3.1-beta\tideplatform.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\runtime\win32\1.3.1-beta\cairo.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msimg32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\process\1.3.1-beta\tideprocess.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\ui\1.3.1-beta\tideui.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\comdlg32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.9600.16384_none_a9f4965301334e09\comctl32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\worker\1.3.1-beta\tideworker.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\php\1.3.1-beta\tidephp.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\php\1.3.1-beta\php5ts.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\odbc32.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dnsapi.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\php\1.3.1-beta\php_gd2.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\ProgramData\TideSDK\modules\win32\php\1.3.1-beta\php_curl.dll'. Module was built without symbols. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\clbcatq.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\WindowsCodecs.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\version.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\dhcpcsvc6.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\mlang.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\usp10.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\NapiNSP.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\pnrpnsp.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\nlaapi.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\mswsock.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\winrnr.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\rasadhlp.dll'. Cannot find or open the PDB file. 'HelloWorld.exe' (Win32): Loaded 'C:\Windows\SysWOW64\FWPUCLNT.DLL'. Cannot find or open the PDB file. The thread 0xf80 has exited with code 0 (0x0). Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. First-chance exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. The thread 0x1d50 has exited with code 0 (0x0). Unhandled exception at 0x738573BD (msvcr80.dll) in HelloWorld.exe: 0xC0000005: Access violation reading location 0x88001200. </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload