Sarcoise
Verified User
Thanks in advance for any help that will be provided.
I recently took over a Network Administration position for a small company that uses PHP scripting for an IN House Intranet. The previous Net Admin passed away over Christmas and needless to say this has been quite a challenge.
Reason for this post is that he was running a WinXP Pro machine with IIS and MySql with PHP 4.3.4 installed. Everything has worked fine up untill yesterday when all of the sudden the users weren't able to login to their accounts. Basically, index.php contains a link for a login table to appear by using the link "<a href="http://10.10.1.83/index.php?app=9995">Login</a>" (I hope this doesn't show up as code.) This would previously load a login.php page within the same page in a table or layer. Now when the link is clicked, the address bar just changes to the above link and nothing happens. I have used a simple script to verify php is installed (phpinfo.php) and it displays all the copnfiguration options for PHP 4.3.4. I will upload/post the entire index.php below so that you can get an idea of what is being done. (I'm not sure how this forum handles html code so I will attach the index.php file as well.)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
<html>
<head>
<title>Bleakley In-House</title>
<link REL="StyleSheet" TYPE="text/css" HREF="stylesheets/ssc_layout.css" media="all">
<link REL="StyleSheet" TYPE="text/css" HREF="stylesheets/ssc_print.css" media="print">
</head>
<body marginheight="0" marginwidth="0" rightmargin="0" leftmargin="0" bottommargin="0" topmargin="0" bgcolor="#000000">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" colspan="5" bgcolor="#FFCC00" height="1"><img src="images/spacer.gif" border="0" width="1" height="1" alt=""></td>
</tr>
<tr bgcolor="#222222" height="1">
<td width="100%" colspan="5">
<div id="logo">
<table width="100%" border="0" width="100%" cellpadding="4" cellspacing="0">
<tr>
<td width="250"><img src="images/jbmh_logo.jpg" border="0" alt=""></td>
<td valign="bottom"><a href="http://www.bleakleyrv.com" target="_blank">Bleakley Website</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td width="100%" colspan="5" bgcolor="#FFCC00" height="1"><img src="images/spacer.gif" border="0" width="1" height="1" alt=""></td>
</tr>
<tr>
<td width="100%" colspan="5" height="10"><img src="images/spacer.gif" border="0" width="1" height="10" alt=""></td>
</tr>
<tr>
<td width="100%" valign="top">
<!-- Start Content Area --> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
<tr>
<td width="10"><img src="images/spacer.gif" border="0" width="10" height="1"></td>
<td width="125" valign="top" class="menucontent" nowrap><a href='http://10.10.1.83/index.php'>Home</a><br />
<hr><a href="http://10.10.1.83/index.php?app=9995">Login</a><br />
<a href="http://10.10.1.83/index.php?app=9996">Forgot Password</a><hr><a href="/helpdesk/member.php" target="_blank">Help Desk</a><br /></td>
<td width="10"><img src="images/spacer.gif" border="0" width="10" height="1"></td>
<td valign="top" class="maincontent"><div>
<center><h1>John Bleakley Motor Homes</h1></center>
<br><br>
<p align="center" style="font-size:14pt; font-weight:bold; color:fff;">
<font style="font-size:28pt; color:0f0;">H</font>
<font style="font-size:28pt; color:f00;">a</font>
<font style="font-size:28pt; color:0f0;">p</font>
<font style="font-size:28pt; color:f00;">p</font>
<font style="font-size:28pt; color:0f0;">y </font>
<font style="font-size:28pt; color:f00;">H</font>
<font style="font-size:28pt; color:0f0;">o</font>
<font style="font-size:28pt; color:f00;">l</font>
<font style="font-size:28pt; color:0f0;">i</font>
<font style="font-size:28pt; color:f00;">d</font>
<font style="font-size:28pt; color:0f0;">a</font>
<font style="font-size:28pt; color:f00;">y</font>
<font style="font-size:28pt; color:0f0;">s</font><br>
</p></div></td>
<td width="10"><img src="images/spacer.gif" border="0" width="10" height="1"></td>
</tr>
</table>
<!-- End Content Area -->
</td>
</tr>
<tr>
<td width="100%" colspan="5" height="10"><img src="images/spacer.gif" border="0" width="1" height="10" alt=""></td>
</tr>
<tr>
<td width="100%" colspan="5" bgcolor="#FFCC00" height="1"><img src="images/spacer.gif" border="0" width="1" height="1" alt=""></td>
</tr>
<tr bgcolor="#222222">
<td width="100%" colspan="5" height="25" align="center">Design By: SSC Software</td>
</tr>
<tr>
<td width="100%" colspan="5" bgcolor="#FFCC00" height="1"><img src="images/spacer.gif" border="0" width="1" height="1" alt=""></td>
</tr>
<tr>
<td width="100%" colspan="5" height="10"><img src="images/spacer.gif" border="0" width="1" height="10" alt=""></td>
</tr>
</table>
<div id="PTitle">
Bleakley In-House System</div>
<script language="javascript" src="clock.js"></script>
<span id="LiveClock"></span>
<script language="javascript">
<!--
show5()
// -->
</script>
</body>
</html>
I recently took over a Network Administration position for a small company that uses PHP scripting for an IN House Intranet. The previous Net Admin passed away over Christmas and needless to say this has been quite a challenge.
Reason for this post is that he was running a WinXP Pro machine with IIS and MySql with PHP 4.3.4 installed. Everything has worked fine up untill yesterday when all of the sudden the users weren't able to login to their accounts. Basically, index.php contains a link for a login table to appear by using the link "<a href="http://10.10.1.83/index.php?app=9995">Login</a>" (I hope this doesn't show up as code.) This would previously load a login.php page within the same page in a table or layer. Now when the link is clicked, the address bar just changes to the above link and nothing happens. I have used a simple script to verify php is installed (phpinfo.php) and it displays all the copnfiguration options for PHP 4.3.4. I will upload/post the entire index.php below so that you can get an idea of what is being done. (I'm not sure how this forum handles html code so I will attach the index.php file as well.)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
<html>
<head>
<title>Bleakley In-House</title>
<link REL="StyleSheet" TYPE="text/css" HREF="stylesheets/ssc_layout.css" media="all">
<link REL="StyleSheet" TYPE="text/css" HREF="stylesheets/ssc_print.css" media="print">
</head>
<body marginheight="0" marginwidth="0" rightmargin="0" leftmargin="0" bottommargin="0" topmargin="0" bgcolor="#000000">
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="100%" colspan="5" bgcolor="#FFCC00" height="1"><img src="images/spacer.gif" border="0" width="1" height="1" alt=""></td>
</tr>
<tr bgcolor="#222222" height="1">
<td width="100%" colspan="5">
<div id="logo">
<table width="100%" border="0" width="100%" cellpadding="4" cellspacing="0">
<tr>
<td width="250"><img src="images/jbmh_logo.jpg" border="0" alt=""></td>
<td valign="bottom"><a href="http://www.bleakleyrv.com" target="_blank">Bleakley Website</a></td>
</tr>
</table>
</div>
</td>
</tr>
<tr>
<td width="100%" colspan="5" bgcolor="#FFCC00" height="1"><img src="images/spacer.gif" border="0" width="1" height="1" alt=""></td>
</tr>
<tr>
<td width="100%" colspan="5" height="10"><img src="images/spacer.gif" border="0" width="1" height="10" alt=""></td>
</tr>
<tr>
<td width="100%" valign="top">
<!-- Start Content Area --> <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
<tr>
<td width="10"><img src="images/spacer.gif" border="0" width="10" height="1"></td>
<td width="125" valign="top" class="menucontent" nowrap><a href='http://10.10.1.83/index.php'>Home</a><br />
<hr><a href="http://10.10.1.83/index.php?app=9995">Login</a><br />
<a href="http://10.10.1.83/index.php?app=9996">Forgot Password</a><hr><a href="/helpdesk/member.php" target="_blank">Help Desk</a><br /></td>
<td width="10"><img src="images/spacer.gif" border="0" width="10" height="1"></td>
<td valign="top" class="maincontent"><div>
<center><h1>John Bleakley Motor Homes</h1></center>
<br><br>
<p align="center" style="font-size:14pt; font-weight:bold; color:fff;">
<font style="font-size:28pt; color:0f0;">H</font>
<font style="font-size:28pt; color:f00;">a</font>
<font style="font-size:28pt; color:0f0;">p</font>
<font style="font-size:28pt; color:f00;">p</font>
<font style="font-size:28pt; color:0f0;">y </font>
<font style="font-size:28pt; color:f00;">H</font>
<font style="font-size:28pt; color:0f0;">o</font>
<font style="font-size:28pt; color:f00;">l</font>
<font style="font-size:28pt; color:0f0;">i</font>
<font style="font-size:28pt; color:f00;">d</font>
<font style="font-size:28pt; color:0f0;">a</font>
<font style="font-size:28pt; color:f00;">y</font>
<font style="font-size:28pt; color:0f0;">s</font><br>
</p></div></td>
<td width="10"><img src="images/spacer.gif" border="0" width="10" height="1"></td>
</tr>
</table>
<!-- End Content Area -->
</td>
</tr>
<tr>
<td width="100%" colspan="5" height="10"><img src="images/spacer.gif" border="0" width="1" height="10" alt=""></td>
</tr>
<tr>
<td width="100%" colspan="5" bgcolor="#FFCC00" height="1"><img src="images/spacer.gif" border="0" width="1" height="1" alt=""></td>
</tr>
<tr bgcolor="#222222">
<td width="100%" colspan="5" height="25" align="center">Design By: SSC Software</td>
</tr>
<tr>
<td width="100%" colspan="5" bgcolor="#FFCC00" height="1"><img src="images/spacer.gif" border="0" width="1" height="1" alt=""></td>
</tr>
<tr>
<td width="100%" colspan="5" height="10"><img src="images/spacer.gif" border="0" width="1" height="10" alt=""></td>
</tr>
</table>
<div id="PTitle">
Bleakley In-House System</div>
<script language="javascript" src="clock.js"></script>
<span id="LiveClock"></span>
<script language="javascript">
<!--
show5()
// -->
</script>
</body>
</html>