PDA

View Full Version : Popup returns 404


tone
02-02-2004, 07:02 PM
Here is my page that I have calendar on:

http://www.csbadboyz.net/~nxgen/calendar.php

For some reason, I get 404 not found when I click on the dates that have a entry or the links at the bottom of the calendar.

What have I done wrong?

ve9gra
02-02-2004, 08:52 PM
Find this section in escal.php
<script language="JavaScript" type="text/JavaScript">
<!--
function popupEvent(ev, w, h) {
&nbsp;var winl = (screen.width - w) / 2;
&nbsp;var wint = (screen.height - h) / 2;
&nbsp;win = window.open("escalEV.php?ev=" + ev + ............
and modify the window.open to have the path where you installed your calendar
<script language="JavaScript" type="text/JavaScript">
<!--
function popupEvent(ev, w, h) {
&nbsp;var winl = (screen.width - w) / 2;
&nbsp;var wint = (screen.height - h) / 2;
&nbsp;win = window.open("/calendar/escalEV.php?ev=" + ev + ..............

tone
02-02-2004, 09:59 PM
Thank you very much. That fixed it! :D