![]() |
|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
![]() |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
I've done a fresh install of 2.0.0 A1 (test server - localhost).
On the game detail page, where it should show views I get this This game has been viewed VIEWS; ?> times. Also when I check the database, games table, the views counter is not incrementing. Server PHP Version: 5.2.4 MySQL Version: 5.0.45-community-nt iGaming CMS: 2.0.0 A1 Windows XP Looking at the gamedetails.php file, I don't see where this information is output to template so not sure where to look to fix it. Last edited by Boon™ : 12-12-2007 at 01:24 PM. |
|
#2
|
|||
|
|||
|
it is Alpha not everything is done
|
|
#3
|
|||
|
|||
|
You're absolutely right, but it's quite easy to fix, so here we go:
Go to /admin/templates.php (unfortunately there isn't a menu choice so you need to type it in manually) You see all possible templates you can edit Click on game_profile You see a bunch of html, just ignore it. Scroll all the way down Find Code:
<p>
This game has been viewed <?php echo $row->VIEWS; ?> times.
</p>
Code:
<p>
This game has been viewed {views} times.
</p>
Now you need to change 1 more thing Open gamedetails.php Find $game->addvar( '{description}', clean($row->DESCRIPTION) ); Below that, add $game->addvar( '{views}', stripslashes($row->VIEWS) ); It keeps showing that it has been viewed 0 times, but we can fix that later on ![]() Last edited by UnderDog : 06-21-2008 at 12:34 PM. |
|
#4
|
|||
|
|||
|
You should tell them how to get it so it can be on the menu... I guess i will.
go to yoursite.com/root/admin/modules.php?do=install type in Modules Then click bottom box and type modules.php Click Install then enable it by going to modules.php finding it and clicking enable module do the same for templates.php Now you can access the template section a lot easier EDIT: Fix View Count! Edit the gamedetails.php file Find PHP Code:
PHP Code:
Last edited by Tyler2499 : 03-08-2009 at 03:11 PM. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|