Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

DW8 User Authentication Page Crashing Apache

New Here ,
Feb 04, 2008 Feb 04, 2008
Hi All,

I'm using JSAS for local development (Apache 2, MySQL 4.1.14, PHP 4.4.4) and the site works fine until I try to login through at the login page. As soon as I click the login button, Apache closes and I get the error:

AppName: apache.exe AppVer: 2.0.54.0 ModName: php4apache2.dll
ModVer: 0.0.0.0 Offset: 0000150f

Has anyone else experienced this problem working with DW8 and protected pages? What's the solution? This is a big problem, it's stalled my project. Appreciate any help!


Update:
Installed WampServer (Apache 2.26, PHP 5.2.5, MySQL 5.0.45) on a different computer and ran the site there. Similar problem, the login.php page causes Apache to crash on page load, unlike the JSAS version which only crashes when I click the LOGIN button.
TOPICS
Server side applications
295
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 14, 2008 Feb 14, 2008
LATEST
FYI in case anyone else has this problem, apparently this version of Apache does not like the virtual includes, e.g.:

<?php virtual('/website/connSite.php'); ?>

So changed them to the standard DW include:

<?php require_once('../connSite.php'); ?>

Pages without the user authentication server behavior worked fine, but with the login form it crashed Apache.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines