Errors Output
- sdbm store returned -1, errno 28, key "Started" at /usr/local/share/perl5/MLDBM.pm line 162.
, /usr/local/share/perl5/Apache/ASP.pm line 1522
Debug Output
- RUN ASP (v2.63) for /usr/local/proj/asp/eg/form.asp
- GlobalASA package Apache::ASP::Demo
- creating dbm for file /tmp/asp_demo/server/internal, db SDBM_File, serializer: Data::Dumper
- creating dbm for file /tmp/asp_demo/server/application, db SDBM_File, serializer: Data::Dumper
- session id from cookie: 0b4203073e2b0d907cf5506a021924a3
- refreshing 0b4203073e2b0d907cf5506a021924a3 with timeout 1756598279
- creating dbm for file /tmp/asp_demo/0b/0b4203073e2b0d907cf5506a021924a3, db SDBM_File, serializer: Data::Dumper
- session not expired - time: 1756597979; timeout: 1756598279;
- tieing session 0b4203073e2b0d907cf5506a021924a3
- parse file /usr/local/proj/asp/eg/form.asp
- parsing /usr/local/proj/asp/eg/form.asp
- found header.inc at /usr/local/proj/asp/eg/header.inc
- runtime exec of dynamic include header.inc args ()
- found footer.inc at /usr/local/proj/asp/eg/footer.inc
- runtime exec of dynamic include footer.inc args ()
- start parse of data - 612
- undefing sub Apache::ASP::Demo::__ASP__usr_local_proj_asp_eg_form_aspx3436ef45a26199e890479d9a7f0923bcxINC code CODE(0x5562c851f520)
- compiling into package Apache::ASP::Demo subid [Apache::ASP::Demo::__ASP__usr_local_proj_asp_eg_form_aspx3436ef45a26199e890479d9a7f0923bcxINC]
- register include /usr/local/proj/asp/eg/header.inc with success
- register include /usr/local/proj/asp/eg/footer.inc with success
- Script_OnStart
- executing Script_OnStart
- [form.asp] - Script_OnStart /usr/local/proj/asp/eg/form.asp in global.asa
- sdbm store returned -1, errno 28, key "Started" at /usr/local/share/perl5/MLDBM.pm line 162.
, /usr/local/share/perl5/Apache/ASP.pm line 1522
- ASP Done Processing Apache::ASP=HASH(0x5562c85b5ba0) - Application: Apache::ASP::Application=HASH(0x5562c85aa998); GlobalASA: Apache::ASP::GlobalASA=HASH(0x5562c8530db0); Internal: Apache::ASP::State=HASH(0x5562c8515aa8); Request: Apache::ASP::Request=HASH(0x5562c84d5c38); Response: Apache::ASP::Response=HASH(0x5562c84f9748); Server: Apache::ASP::Server=HASH(0x5562c851f778); Session: Apache::ASP::Session=HASH(0x5562c8549a40); app_state: 1; basename: form.asp; cleanup: ARRAY(0x5562c85aaab8); compile_checksum: 3436ef45a26199e890479d9a7f0923bc; compile_includes: 1; compile_perl_count: 1; cookie_domain: ; cookie_path: /; dbg: 3; debugs_output: ARRAY(0x5562c8515a48); destroy: 1; dir_config: APR::Table=HASH(0x5562c7db2870); dirname: /usr/local/proj/asp/eg/; errors_output: ARRAY(0x5562c8600b38); errs: 1; filename: /usr/local/proj/asp/eg/form.asp; global: /usr/local/proj/asp/eg//.; global_package: Apache::ASP::Demo; group_refresh: 30; headers_in: APR::Table=HASH(0x5562c84f88b0); http_only_session: ; includes_dir: ARRAY(0x5562c8530930); init_packages: ARRAY(0x5562c8515b38); inode_names: 0; lang_comment: #; lang_language: PerlScript; lang_module: Apache::ASP::Lang::PerlScript; lang_object: Apache::ASP::Lang::PerlScript=HASH(0x5562c852e9a8); last_time: 1756597979.3929; no_cache: 0; package: Apache::ASP::Demo; paranoid_session: ; parse_config: 1; parse_file_count: 1; pod_comments: 1; r: Apache2::RequestRec=SCALAR(0x5562c83d5b20); register_includes: HASH(0x5562c85276b8); remote_ip: 216.73.216.123; request_binary_read: 1; response_tied: 1; run_perl_script: SCALAR(0x5562c84d59e0); search_dirs_cache: HASH(0x5562c862bde0); secure_session: ; session_cookie: 1; session_count: 1; session_id: 0b4203073e2b0d907cf5506a021924a3; session_serialize: ; session_state: 1; session_timeout: 300; session_url: 1; session_url_force: ; session_url_match: ; session_url_parse: 0; session_url_parse_match: ; start_time: 1756597979.3905; stat_inc: 0; stat_inc_match: 0; stat_scripts: 1; state_db: ; state_dir: /tmp/asp_demo; state_manager: 10; state_serialize: ; state_serializer: ; ua: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com); use_strict: 1; win32: 0; xml_subs_match: my:\w+; xml_subs_perl_args: 1; xml_subs_strict: ; xslt: 0;
- errors out
- sdbm store returned -1, errno 28, key "Started" at /usr/local/share/perl5/MLDBM.pm line 162.
, /usr/local/share/perl5/Apache/ASP.pm line 1522
ASP to Perl Script
-: use strict;;;use vars qw($Application $Session $Response $Server $Request);;
-: #line 1 /usr/local/proj/asp/eg/form.asp
1: ;;
2:
3: ; $Response->Include('/usr/local/proj/asp/eg/header.inc', ); ; &Apache::ASP::WriteRef($main::Response, \('
4:
5: <table>
6: <form method=POST>
7: <tr>
8: <td>Your Name:</td>
9: <td><input name=name type=text size=30
10: value="'.($Request->Form('name')).'" >
11: </td>
12: <td><input type=submit value="Submit Name"></td>
13: </tr>
14: </table>
15:
16: ')); if($Request->Form('name')) { ; &Apache::ASP::WriteRef($main::Response, \('
17: Your name is <tt>'.($Request->Form('name')).'</tt>
18: ')); } ; &Apache::ASP::WriteRef($main::Response, \('
19:
20: <hr size=1>
21:
22: The following are the contents of the data returned
23: from doing a binary read of the form data:
24: <p>
25: <tt>
26: '.($Request->BinaryRead($Request->{TotalBytes})).'
27: </tt>
28:
29: ')); $Response->Include('/usr/local/proj/asp/eg/footer.inc', ); ;
An error has occured with the Apache::ASP script just run.
If you are the developer working on this script, and cannot work
through this problem, please try researching it at the
Apache::ASP web site,
specifically the FAQ section.
Failing that, check out your
support options, and
if necessary include this debug output with any query.