
Originally Posted by
masterband1427
Hi i would like to share this little fix of mine.. PHP Version : 5.6.9 i couldn't find php_mssql.php but i found alternative maybe someone is having the same problem like me so here is my semi fix panel working login / itemshop / news / status / recharge but no admin panel
i use SQLSRV Module for php 5.6.9
Here is the link for the module :
SQLSRV MODULE FOR PHP 5.6.9
LINK FOR PANEL :
WEB PANEL
THANKS TS FOR THE SHARE HOPE SOMEONE COULD MODIFY THIS AND FULLY FIXED THE PANEL :D MORE POWER RAGEZONE.
PANEL SCREENSHOTS
PS : I TEST THE ITEMSHOP ONLY VIA ONLINE AND CHECK THE DATABASE IF IT'S STORING DATA AND NOT IN GAME.. SO PLEASE TRY IT IN GAME SO I COULD KNOW IF IT HAS A PROBLEM OR NOT. THANKS A LOT.
good for ppl who don't have extension 5.2 php.
to add item shop list on homepage "new items" replace with this function
PHP Code:
<ul class="gallerylist">
<table><? include_once("includes/All2.php"); ?></table>
you need to make a copy of all.php and rename it all2.php . change value
PHP Code:
$limit = 10; //how many items to show per page
$page = $_GET['page'];
if($page)
$start = ($page - 0) * $limit; //first item to display on this page
else
$start = 10;
to
PHP Code:
$limit = 4; //how many items to show per page
$page = $_GET['page'];
if($page)
$start = ($page - 0) * $limit; //first item to display on this page
else
$start = 4;
if you want to remove navigation next/previous page, delete from line 75 "$pagnation" to line 163.

- - - Updated - - -
for who can't access admin panel add this admin_panel.rar