PHP Web Host - Quality Web Hosting For All PHP Applications $35/month $250/year (Unlimited) - $25/month - 200,000 impressions - Your Ad Could be Here - Click For Details
  Login or Register
 • Home • Downloads • Your Account • Forums • 

View next topic
View previous topic


Google
 
Web RavenPHPScripts (This Site)
Post new topic   Reply to topic
Author Message
crash_end
New Member
New Member


Joined: Jan 20, 2007
Posts: 7

PostPosted: Sat Jan 20, 2007 6:30 am Reply with quote Back to top

Hi i'm new and i have a problem with Nukematch 2.1.1's module.

I have installed correctly everythings of NukeMatch (databases, mainfile.php, etc) and it runs correctly but...

When i try to entry in the link of ladder (eg.
Only registered users can see links on this board!
Get registered or login to the forums!
my browser says "Firefox has rileved out that the server is redirecting the request for this address in manner that never can be completed."

I try also with IE7 but it makes same problem.

Who can help me?

Thanks Smile
View user's profile Send private message
persona_non_grata



Joined:
Posts: 0

PostPosted: Sat Jan 20, 2007 8:40 am Reply with quote Back to top

can we try ?
View user's profile Send private message
crash_end
New Member
New Member


Joined: Jan 20, 2007
Posts: 7

PostPosted: Sun Jan 21, 2007 5:50 am Reply with quote Back to top

No for a simple reason... The site web is maked with EasyPHP and only Intranet connection can to view it.

Sad
View user's profile Send private message
persona_non_grata



Joined:
Posts: 0

PostPosted: Sun Jan 21, 2007 12:22 pm Reply with quote Back to top

on intranet?
with nukematch ?
are you joking..... Laughing
View user's profile Send private message
crash_end
New Member
New Member


Joined: Jan 20, 2007
Posts: 7

PostPosted: Sun Jan 21, 2007 12:24 pm Reply with quote Back to top

yes cause i'm a cybercafè Razz I need of Nukeladder for the tournaments and ladders....

Somebody can help me?

Very Happy
View user's profile Send private message
persona_non_grata



Joined:
Posts: 0

PostPosted: Sun Jan 21, 2007 12:37 pm Reply with quote Back to top

thats not easy ,we cannot even see it....
and i cannot find anything on the error as well.
it sounds like a loop...,but im just guessing..
View user's profile Send private message
crash_end
New Member
New Member


Joined: Jan 20, 2007
Posts: 7

PostPosted: Sun Jan 21, 2007 12:41 pm Reply with quote Back to top

The problem maybe is in set of coockie of this module... cause if i try to go to view the page of the ladder, FireFox says me "Firefox has rileved out that the server is redirecting the request for this address in manner that never can be completed."

I've check it 1000 times on the config and the modules....but nothing...
View user's profile Send private message
persona_non_grata



Joined:
Posts: 0

PostPosted: Sun Jan 21, 2007 12:43 pm Reply with quote Back to top

if you have standard cookie settings then it shouldnt be a problem...
and viewing a simple page doesnt need a cookie..
View user's profile Send private message
montego
Site Admin


Joined: Aug 29, 2004
Posts: 7236
Location: Arizona

PostPosted: Tue Jan 23, 2007 6:27 am Reply with quote Back to top

It may be tough to debug this given we cannot try it, but would you please post the first 20 lines (do NOT post more please!) of the following script file:

modules/NukeMatch/ladder.php
View user's profile Send private message Visit poster's website
crash_end
New Member
New Member


Joined: Jan 20, 2007
Posts: 7

PostPosted: Tue Jan 23, 2007 7:40 am Reply with quote Back to top

montego wrote:
It may be tough to debug this given we cannot try it, but would you please post the first 20 lines (do NOT post more please!) of the following script file:

modules/NukeMatch/ladder.php
if (!eregi("modules.php", $_SERVER['PHP_SELF'])) {
die ("You can't access this file directly...");
}

require_once("mainfile.php");
$optionbox = "";
$module_name = basename(dirname(__FILE__));
get_lang($module_name);

if (stristr($REQUEST_URI,"mainfile")) {
Header("Location: modules.php?name=$module_name&file=ladder&lid=$lid");
} elseif (!isset($lid) && !isset($gid)) {
Header("Location: index.php");
}

if ($save AND is_user($user)) {
cookiedecode($user);
$db->sql_query("UPDATE ".$user_prefix."_users SET umode='$mode', uorder='$order', thold='$thold' where uid='$cookie[0]'");
getusrinfo($user);
$info = base64_encode("$userinfo[user_id]:$userinfo[username]:$userinfo[user_password]:$userinfo[storynum]:$userinfo[umode]:$userinfo[uorder]:$userinfo[thold]:$userinfo[noscore]");
setcookie("user","$info",time()+$cookieusrtime);
}

This is ladder.php ^^
View user's profile Send private message
montego
Site Admin


Joined: Aug 29, 2004
Posts: 7236
Location: Arizona

PostPosted: Tue Jan 23, 2007 7:46 am Reply with quote Back to top

What is the "Site URL" field of your Admin --> Preferences? Also, do you have, by chance, the "Force Nuke URL" set to "yes" in NukeSentinel? If so, set it to "No".

Not sure any of this will help, but trying to eliminate some things. I see that you are running this in a subdirectory, so it might be related to that somehow.
View user's profile Send private message Visit poster's website
montego
Site Admin


Joined: Aug 29, 2004
Posts: 7236
Location: Arizona

PostPosted: Tue Jan 23, 2007 7:46 am Reply with quote Back to top

Sorry that I forgot to ask this... Is this a subdomain or are you just using nuke in a subdirectory off your main root?
View user's profile Send private message Visit poster's website
crash_end
New Member
New Member


Joined: Jan 20, 2007
Posts: 7

PostPosted: Tue Jan 23, 2007 8:00 am Reply with quote Back to top

I have not nukesentinel. The follow address is: C:\Program Files\Easyphp1-8\www\ladder\ and i extract nukematch into ladder's folder.

PHPNUKE VERSION is 7.9
View user's profile Send private message
montego
Site Admin


Joined: Aug 29, 2004
Posts: 7236
Location: Arizona

PostPosted: Wed Jan 24, 2007 6:23 pm Reply with quote Back to top

Well, under the Admin --> Preferences, the "Site URL" field must be exactly what you would enter into the browser (minus the index.php and the extra slash). So, in the example you gave in your original post, it should be:
Only registered users can see links on this board!
Get registered or login to the forums!


In addition, in your Admin --> Forums --> Configuration, the site URL there should be:

mywebsite.com/ladder

Make sure those are set right and then try it again.
View user's profile Send private message Visit poster's website
crash_end
New Member
New Member


Joined: Jan 20, 2007
Posts: 7

PostPosted: Wed Jan 24, 2007 6:49 pm Reply with quote Back to top

I try that but...nothing... Sad
View user's profile Send private message
soulast
New Member
New Member


Joined: Nov 29, 2007
Posts: 3

PostPosted: Sat Jan 26, 2008 1:03 pm Reply with quote Back to top

lol..guys...i have exucly same problem.....whn i pick option Team Hardcore on my site
Only registered users can see links on this board!
Get registered or login to the forums!
its direct me to the blank page..Sad
View user's profile Send private message
montego
Site Admin


Joined: Aug 29, 2004
Posts: 7236
Location: Arizona

PostPosted: Sun Jan 27, 2008 8:13 am Reply with quote Back to top

soulast, you have other threads with PMs too that no-one else seems to have, so I question your setup / environment that you are running. Just want to check that you reviewed these two points above and have found them to not work for you:

Quote:

What is the "Site URL" field of your Admin --> Preferences? Also, do you have, by chance, the "Force Nuke URL" set to "yes" in NukeSentinel? If so, set it to "No".

Not sure any of this will help, but trying to eliminate some things. I see that you are running this in a subdirectory, so it might be related to that somehow.


and..

Quote:

Well, under the Admin --> Preferences, the "Site URL" field must be exactly what you would enter into the browser (minus the index.php and the extra slash). So, in the example you gave in your original post, it should be:
Only registered users can see links on this board!
Get registered or login to the forums!


In addition, in your Admin --> Forums --> Configuration, the site URL there should be:

mywebsite.com/ladder

Make sure those are set right and then try it again.


Also, does this ONLY happen with NukeMatch? Have you asked them about this issue? It could even be a discrepancy in patch levels between your installation and their module?

Just ideas... no answers. I have never used NukeMatch. Sorry.
View user's profile Send private message Visit poster's website
nikserver
New Member
New Member


Joined: Apr 02, 2008
Posts: 3

PostPosted: Wed Apr 02, 2008 10:04 am Reply with quote Back to top

the nukematch website have closed.
so,we cannot ask the developer..
i also got the same problem...
wtf
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic

View next topic
View previous topic
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 vote in polls in this forum
Forums ©
 

All logos and trademarks in this site are property of their respective owner.
The comments are property of their posters, all the rest © 2002-2008 by Raven
Proud to be listed at Lobo Links Web Directory

You can syndicate our news using the file xml

CSE HTML Validator Helped Clean up This Page! [Valid RSS] valid RSS 2.0 Valid robots.txt Stop Spam Harvesters, Join Project Honey Pot

Website engines core code is © copyright by PHP-Nuke but has been heavily patched and modified by myself and others.
PHP-Nuke is a free software released under the GNU/GPL.


:: fisubice phpbb2 style by Daz :: PHP-Nuke theme by www.nukemods.com ::

:: fisubice Theme Recoded To 100% W3C CSS & HTML 4.01 Transitional Compliance by Raven and 64bitguy ::

:: W3C CSS Compliance Validation :: W3C HTML 4.01 Transitional Compliance Validation ::

zerosum