Yahoo [Bot]
Thu. Sep. 02 2010, 15:08
Google [Bot]
Thu. Sep. 02 2010, 15:08
Alexa [Bot]
Thu. Sep. 02 2010, 14:53
Baidu [Spider]
Thu. Sep. 02 2010, 14:52
Google Adsense [Bot]
Thu. Sep. 02 2010, 14:14
MSN [Bot]
Thu. Sep. 02 2010, 14:13
Ask Jeeves [Bot]
Thu. Sep. 02 2010, 09:40
Exabot [Bot]
Wed. Sep. 01 2010, 03:07
Gigabot [Bot]
Sat. Aug. 28 2010, 02:18
Majestic-12 [Bot]
Fri. Aug. 27 2010, 16:35
|
| Page 1 of 1 [ 4 posts ] |
|
| Go to page |
| Author |
Message |
MWE_001
Offline
Joined: Fri Apr 21, 2006 7:59 pm Posts: 917 Location: Illinois Cash:380

|
 Need Some php Help Please
I need a little help if I can please. Ihave been working on some blocks for the activity mod and got them to work on MY BOARD, but not on Cleo's board using the same identical code.
the error is as follows: Quote: Fatal error: Call to undefined function: checkgameimages() in /home/httpd/vhosts/graphicsplayhouse.com/httpdocs/psp/blocks/blocks_imp_populargames.php on line 54
Heres is the blocks php - <?php
- /***************************************************************************
- * blocks_imp_populargames.php
- * -------------------
- * begin : Saturday, March 20, 2004
- * copyright : (C) 2004 masterdavid - Ronald John David
- * website : http://www.integramod.com
- * email : webmaster@integramod.com
- *
- * note: removing the original copyright is illegal even you have modified
- * the code. Just append yours if you have modified it.
- ***************************************************************************/
-
- /***************************************************************************
- * Mod author : Activity Mod Plus 1.1.1 - aUstin
- *
- * IM Block Created by : GanBei (Oct 24, 2005) for IM 1.4.0
- *
- ***************************************************************************
- * For Security Purposes, Please Check: http://www.integramod.com
- * for the latest version of this MOD. Downloading this MOD from
- * other sites could cause malicious code to enter into your Integramod site.
- *
- ***************************************************************************/
-
- /***************************************************************************
- *
- * 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, or
- * (at your option) any later version.
- *
- ***************************************************************************/
-
- if ( !defined('IN_PHPBB') )
- {
- die("Hacking attempt");
- }
-
- if(!function_exists(imp_populargames_block_func))
- {
- function imp_populargames_block_func()
- {
- global $template, $db, $theme, $phpEx, $userdata;
- $total = "10";
- $i = 1;
- $q = "SELECT *
- FROM ". iNA_GAMES ."
- ORDER BY played DESC
- LIMIT 0, ". $total;
- $r = $db -> sql_query($q);
- while($row = $db -> sql_fetchrow($r))
- {
- $game_img = CheckGameImages($row['game_name'], $row['proper_name']);
- $game_id = $row['game_id'];
- $played = $row['played'];
- $name = $row['proper_name'];
- $game_img = str_replace("<img>","<img height='30' width='30' ", $game_img);
-
- $link = "<b>". $game_img ." <a href='games.". $phpEx ."?mode=game&id=". $game_id ."&parent=true'>". $name ."</a><br>Played: ". number_format($played) ." times</b>";
-
- $template -> assign_block_vars('populargames', array(
- 'POP' => $link)
- );
- $i++;
- $link = '';
- }
- }
- }
-
-
- imp_populargames_block_func();
- //
- // This portal block was converted from ezPortal system to IM Portal.Orignal Copyrights go to aUsTiN,for
- // creating the blocks for ezPortal
- ?>
Here is its .tpl file : - <table align="center" valign="middle" width="100%">
- <tr>
- <td valign="top" align="left" class="row1">
- <span class="gensmall" align="center">
- <marquee behavior="scroll" direction="up" scrollamount="2" onmouseover="this.stop()" onmouseout="this.start()">
-
- <!-- BEGIN populargames -->
- {populargames.POP}<br />
- <!-- END populargames -->
- </span>
- </td>
- </tr>
- </table>
The run down of my system is as follows : - Integramod 1.4.1 beta Rev 5 phpBB version .21
- MySQL 4.0.17
- PhP version 4.3.10
- Free BSD Operating system
Before I get flamed to bad, please note these blocks work on my live site as well, NOT just on beta site which is only a test site and closed for registration.  Maybe we can get Ms. Cleo to let us know what her specs are incase thathas anything to do with it. The only differance I see is her version of IM and mine are different. Over night I installed a Integramod all the way back to 1.3.2c and they worked as well. AND like I said on my live site Iuse everyday they work too. it is 1.4.0
_________________
|
| Sat Dec 30, 2006 6:31 pm |
|
|
Teelk
Offline
Joined: Tue Mar 14, 2006 6:25 pm Posts: 1296 Location: Canada Cash:10

|
 Re: Need Some php Help Please
Find which file the function checkgameimages is in and use an include to that file in the block function.
example. - include($phpbb_root_path . 'includes/activity_mod_functions.'.$phpEx);
-
You'll also need to add $phpbb_root_path to the global list.
_________________ A childhood can be a terrible thing to waste... that's why I've extended mine well into my 20's.
|
| Sat Dec 30, 2006 10:09 pm |
|
|
|
MWE_001
Offline
Joined: Fri Apr 21, 2006 7:59 pm Posts: 917 Location: Illinois Cash:380

|
 Re: Need Some php Help Please
Ok. Im going to have to try and get Cleo to try that. I can not reproduce that error on my site no matter how hard I try . They just work for me for some reason but not for others. Thx Teelk for your thoughts and time, We will most definately give it a try
_________________
|
| Sun Dec 31, 2006 3:26 am |
|
|
|
ayasha
Offline
Joined: Tue Mar 28, 2006 6:10 pm Posts: 634

|
i do not understand coding well enough to apply this fix myself. sorry Ray.
as i stated before, if i have the newest 10 game block active, the others work, so i will just leave it like that until a coder can fix the code. 
_________________ No one can make you feel inferior without your consent.
~Eleanor Roosevelt
|
| Tue Jan 02, 2007 7:35 am |
|
|
|
| Page 1 of 1 [ 4 posts ] |
|
| Go to page |
Who is online |
Users browsing this forum: No registered users and 0 guests |
|
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 post attachments in this forum
|
|