|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-10-19 11:02 UTC] sander@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 01:00:01 2025 UTC |
i put this in my apache1.3.12 httpd.conf: ----------------------------------------- AddType application/x-httpd-php .js ----------------------------------------- this in a .htm file: ---------------------------------------- this <script language=javascript src=titatest.js></script> ---------------------------------------- and this in titatest.js: ---------------------------------------- document.write('is a'); <?echo ("document.write(' test ');");?> ---------------------------------------- the output of this little script should have been: ---------------------------------------- this is a test ---------------------------------------- but instead, it gives me this error (in the javascript console): ---------------------------------------- JavaScript Error: http://www.devweb.nl/titatest.js, line 1: illegal character. ? .^ ---------------------------------------- i put this in my php.ini: output_handler = ob_gzhandler but if i turn this off, all seems to work fine again. other than the above error, ob_gzhandler seems to work fine. is this a bug or maybe im trying something here that isnt supposed to work with ob_gzhandler anyway?? ============================================== configure command: ---------------------------------------- './configure' '--with-apxs' '--with-xml' '--with-zlib' '--with-mysql=/usr' '--enable-track-vars' ----------------------------------------