| Author |
Message |
trunks

Joined: Jan 10, 2008
Posts: 57
Location: United Kingdom
|
Posted:
Mon Jan 05, 2009 2:51 pm |
|
Gotcha,
Can you tell me how i can show members who are logged in to visitors please?
Trunks |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 920
|
Posted:
Mon Jan 05, 2009 2:57 pm |
|
Use the one from my downloads, the one you are using is one somebody else modified.  |
| |
|
|
 |
trunks

Joined: Jan 10, 2008
Posts: 57
Location: United Kingdom
|
Posted:
Tue Jan 06, 2009 4:23 am |
|
It is? Im sure when we were talking about that before i downloaded your version?
Thanks though, ill go grab it  |
_________________ www.php-clans.com - Web Hosts Specialising in PHPNuke and Gaming Communities. |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 920
|
Posted:
Tue Jan 06, 2009 7:16 am |
|
If visitors can't see who is online, it isn't my version.
Which brings up the point of only downloading stuff from the original author and how things like this make me not want to release any new free scripts or update the old ones. I just don't see the point anymore when all my scripts are listed in at least 10 different sites downloads section  |
| |
|
|
 |
trunks

Joined: Jan 10, 2008
Posts: 57
Location: United Kingdom
|
Posted:
Tue Jan 06, 2009 4:42 pm |
|
Yup i hear you. Well ive updated my info box now  |
_________________ www.php-clans.com - Web Hosts Specialising in PHPNuke and Gaming Communities. |
|
|
 |
Guardian

Joined: Dec 09, 2006
Posts: 333
|
Posted:
Wed Jan 07, 2009 5:29 am |
|
Thats why everything I do goes through my Shop so I can track who downloads my stuff <hint> just wish we could also 'track' free products the same way </hint> as there is some stuff I would like to give away but am forced to make an abitrary fee of 1.00
 |
_________________ Code Authors Nuke Reviews |
|
|
 |
trunks

Joined: Jan 10, 2008
Posts: 57
Location: United Kingdom
|
Posted:
Wed Jan 07, 2009 3:33 pm |
|
That would actually be a neat idea for the shop.
By the way is there a google tap/short link for the digital shop? |
_________________ www.php-clans.com - Web Hosts Specialising in PHPNuke and Gaming Communities. |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 920
|
Posted:
Wed Jan 07, 2009 3:46 pm |
|
Yep, in the shop package there is a folder named "Google_Tap"  |
| |
|
|
 |
trunks

Joined: Jan 10, 2008
Posts: 57
Location: United Kingdom
|
Posted:
Wed Jan 07, 2009 4:56 pm |
|
Excellent thanks, dont know why i missed that =/ Seems to be working perfectly  |
_________________ www.php-clans.com - Web Hosts Specialising in PHPNuke and Gaming Communities. |
|
|
 |
alienware

Joined: Jan 28, 2009
Posts: 2
|
Posted:
Wed Jan 28, 2009 9:38 pm |
|
What versions of phpnuke does this block support? I just tried to install the block on my site version 6.XX and it didn't work for me. |
| |
|
|
 |
Guardian

Joined: Dec 09, 2006
Posts: 333
|
Posted:
Thu Jan 29, 2009 5:00 am |
|
Are you seeing any errors when you turn on error reporting in your config.php file? |
_________________ Code Authors Nuke Reviews |
|
|
 |
alienware

Joined: Jan 28, 2009
Posts: 2
|
Posted:
Thu Jan 29, 2009 6:18 am |
|
First of all thank you for the reply, and to answer your question no I didn't see any anything. Second let me just thank you guys here and nukecoder.com for the time spent working on these gifts.
I did in fact get the block to work with my version of phpnuke 6.xx and the fix was just a few lines of code.
Your version:
| Code: |
if ( !defined('BLOCK_FILE') ) {
Header("Location: ../index.php");
die();
} |
My version:
| Code: |
if (eregi("block-block-Info_Box.php",$_SERVER['PHP_SELF'])) {
Header("Location: index.php");
} |
-Chris |
| |
|
|
 |
Guardian

Joined: Dec 09, 2006
Posts: 333
|
Posted:
Thu Jan 29, 2009 7:11 am |
|
The error reporting should have given you an error "undefined constant BLOCK_FILE" but glad you have got it sorted out. BLOCK_FILE is used as an added security measure in the 'patched' series of *nuke updates so I am suprised you are not using those. |
_________________ Code Authors Nuke Reviews |
|
|
 |
|
|