61
shinybt
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/11/14 17:18

  • shinybt

  • Just popping in

  • Posts: 5

  • Since: 2003/11/14


>.<

i overwrited the whole thing with the new version 1.3.3.3 from 1.3.3.2.
[quote]ERROR: requested index [] out of bounds [2][quote]

still bugged by that. anyone mind to help me? or perhaps help me fix that with an temp. FTP account?


62
gniknalu
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/11/14 17:23

  • gniknalu

  • Just popping in

  • Posts: 80

  • Since: 2003/2/28


Quote:
i overwrited the whole thing with the new version 1.3.3.3 from 1.3.3.2.


It involves more than overwriting. You must go into your Admin control panel --> modules --> click on the disk icon on the xoopsgallery row. That updates the modules. This step is essential.

Gnik

63
shinybt
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/11/14 17:41

  • shinybt

  • Just popping in

  • Posts: 5

  • Since: 2003/11/14


my bad, forgot to mentioned I did "updated" them as well. Had tried to re-update once again. and the bug still bugging me badly...

any idea?

64
gstarrett
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/11/14 18:10

  • gstarrett

  • Friend of XOOPS

  • Posts: 174

  • Since: 2002/3/12


Quote:
ERROR: requested index [] out of bounds [2]


That can be caused by not updating, but there is a statistics module that will cause that too. Removing the statistics module has fixed the problem for others.

(Surprised you didn't recognize that one, gnik )

65
shinybt
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/11/14 18:15

  • shinybt

  • Just popping in

  • Posts: 5

  • Since: 2003/11/14


Quote:

That can be caused by not updating, but there is a statistics module that will cause that too. Removing the statistics module has fixed the problem for others.


which stats module u were saying? sorry, this was the 3rd days for me to play this XOOPS and gallery. It was a 1st php portal for me also.. >.<

66
gstarrett
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2003/11/14 18:41

  • gstarrett

  • Friend of XOOPS

  • Posts: 174

  • Since: 2002/3/12


Quote:

shinybt wrote:
which stats module u were saying? sorry, this was the 3rd days for me to play this XOOPS and gallery. It was a 1st php portal for me also.. >.<


It's called "Statistics", by Mispunt. The readme instructs you to as follows:
Quote:
Installation. |
--------------------------------

After installing the normal module, you have to modify some files.
First you must at in the file "header.php" (which is in the root directory) under:

include_once XOOPS_ROOT_PATH.'/class/xoopsblock.php';

the line:

include_once("modules/statistics/include/counter.php");

Whith this peace of code the website add information of the hits to the database, so
you can view them in the admin section.


I've been able to patch the include file so it doesn't stomp on variables. All the patch does is isolate the routine from the global variables by putting it into a funciton instead of inline.

Modify 2 places. Add the line in red to the TOP of the file to look like this:
<?php
[color=FF0000][b]function statistics_counter_countpage() {[/b][/color]
/********************************************************************/
/*  File:  counter.php                                              */
/*  Directory: ./include/                                           */
...


... now add the 2 lines in red at the BOTTOM to look like this:

...
else
{
   
$xoopsDB->queryF("INSERT INTO ".$xoopsDB->prefix("statistics_ip")." (ip, date, hits) VALUES ('$ip', '$now_ip', '1')");
}
[
color=FF0000][b]}
statistics_counter_countpage();[/b][/color]
?>


I'll send the author the full patch also, so he can update his code. I won't be posting a patched version since I don't know if I have the latest or not.


Another tip while I'm in there anyway... If you change
$ip $HTTP_SERVER_VARS['REMOTE_ADDR'];


to (all on a single line):

$ip = isset($_SERVER["REMOTE_ADDR"]) ? $_SERVER["REMOTE_ADDR"] : $HTTP_SERVER_VARS['REMOTE_ADDR'];


it'll get IP addresses properly while running on Apache too.

67
ik2xnw
Re: XoopsGallery Fixes.. Recent Comments Link, New Pics Block showing thumbnail, etc...
  • 2007/5/23 14:27

  • ik2xnw

  • Just popping in

  • Posts: 20

  • Since: 2006/5/3 9


I had such output, whilst trying to see full sized images.

I remembered that in the Protector Preferences panel, somewhat sounded like this:

"All requests named "*id" will be treated as integer.
This option protects you from some kind of XSS and SQL Injections.
Though I recommend to turn this option on, it can cause problems with some modules."

Switched that setting to "no", solved my problem.

Login

Who's Online

221 user(s) are online (154 user(s) are browsing Support Forums)


Members: 0


Guests: 221


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Mar 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits