• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Znote AAC (PHP)

Status
Not open for further replies.

Eldora

Banned User
Joined
Oct 19, 2009
Messages
604
Reaction score
26
When i try to overview any Guild on my website i dont get any of the regular information you are supposed to get.
This is the page where i should also be able to administrate the Guild, if im a Guild Leader.


Anyone know why i cant see more information or administrate the guilds?


Here is a image of how it looks:

seya2t.png
 
What TFS version you are using? Check if it matches the settings at config.php. You are using Znote 1.4 or 1.5?
 
You should consider to turn on error reporting on your php.ini or script. When it comes to a blank page, the error output might be suppressed by default. How familiar you are with PHP?
 
You can do the trick by adding these lines on the file (\htdocs\layout\overall\header.php) :
before <!DOCTYPE HTML>
Code:
 <?php
// This line enable the runtime error report
error_reporting(E_ALL);
// Do the same as before.
ini_set('error_reporting', E_ALL);
?>

Now it should output some useful error information so we can continue our debugging process.
 
Status
Not open for further replies.
Back
Top