Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
floppydrivez
Involved
Involved



Joined: Feb 26, 2006
Posts: 340
Location: Jackson, Mississippi

PostPosted: Mon Sep 18, 2006 6:33 pm Reply with quote

Can anyone tell me why this gives me a whitescreen in my admin index. If I remove the case in this file and just use include it works fine.

Code:


<?php
if ( !defined('ADMIN_FILE') )
{
   die ("Access Denied");
}

$module_name = "League_records";

switch ($op)
{
  case "LRgames" :
  case "LRleagues" :
  case "LRmatches" :
    include("modules/$module_name/admin/index.php");
    break;
}
?>


Did I miss something when I was reading nuke modules for complete idiots?


Last edited by floppydrivez on Mon Sep 18, 2006 7:56 pm; edited 1 time in total 
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger
floppydrivez







PostPosted: Mon Sep 18, 2006 7:53 pm Reply with quote

here is my switch in admin index.php

Code:
switch($op) {


   case "LRgames":
   include_once(NUKE_MODULES_DIR.$module_name."/admin/games.php");
   break;
   
   case "LRleagues":
   include_once(NUKE_MODULES_DIR.$module_name."/admin/leagues.php");
   break;
   
   case "LRmatches":
   include_once(NUKE_MODULES_DIR.$module_name."/admin/matches.php");
   break;

}


Someone please inform me of my wrong doings.
 
evaders99
Former Moderator in Good Standing



Joined: Apr 30, 2004
Posts: 3221

PostPosted: Mon Sep 18, 2006 10:10 pm Reply with quote

Weird I think everything looks okay ... at least briefly looking at the syntax of your code. It should work.

Do you get anything when you enable error reporting?

_________________
- Only registered users can see links on this board! Get registered or login! -

Need help? Only registered users can see links on this board! Get registered or login! 
View user's profile Send private message Visit poster's website
floppydrivez







PostPosted: Mon Sep 18, 2006 10:14 pm Reply with quote

I had tim and www.drivenbyfaith.org take a short glance at it for me, he came up with this.

Code:
<?php

/************************************************************************/
/* PHP-NUKE: Web Portal System                                          */
/* ===========================                                          */
/*                                                                      */
/* Copyright (c) 2002 by Francisco Burzi                                */
/* http://phpnuke.org                                                   */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/

if ( !defined('ADMIN_FILE') )
{
   die ("Access Denied");
}

$module_name = "League_records";
switch ($op) {
  case "League_records" :
  case "LRgames" :
  case "LRleagues" :
  case "LRmatches" :
  default :
  include("modules/$module_name/admin/index.php");
  break;
 
}
?>


The key missing was default: incase the switch failed and I did not assign a League_records one. Which in turn causes a blank page with the scripts used for this index.
 
Guardian2003
Site Admin



Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam

PostPosted: Tue Sep 19, 2006 4:06 am Reply with quote

Thanks for the feedback and glad you are working now.
 
View user's profile Send private message Send e-mail
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©