• 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!

Multiple gesior acc 2012 questions/problems

mateogon

New Member
Joined
Feb 3, 2010
Messages
27
Reaction score
0
First, my latestnews header looks like this:
http://prntscr.com/2guppp
how can i make it loot like this?:
http://prntscr.com/2gup7c

Next, when i add new news(lol) it dont have the option to change icon:
http://prntscr.com/2guq8c
its using by default an image called newsicon_.gif which i set to be the admin image, but i want to be able to choose between all the options

and last,
I installed this admin panel: http://otland.net/threads/gesior-acc-advanced-admin-panel.125771/
everything is ok except when adding this part to index.php
PHP:
 case "admin";
          $subtopic = "admin";
          $topic = "Advanced Admin Panel";
          include("adminpro.php");
      break;
this error appears when trying to open the admin panel:
Code:
Parse error: syntax error, unexpected 'case' (T_CASE) in C:\xampp\htdocs\index.php on line 28

I'll upload any file you need
please help me :rolleyes:,
thanks

-----something else
my ot version is 10.10 based on tfs 4.0 and gesior is for tfs 4.0 too (gesior 1.0.3)
 
Last edited:
As far as the last issue goes, switch out the semi-colon with a regular colon in the first line.
PHP:
case "admin":
rather than
PHP:
case "admin";
 
Back
Top