| Author |
Message |
z3r0k00l
Nuke Cadet


Joined: Apr 13, 2006
Posts: 7
Location: Barcelona, Spain
|
Posted:
Mon May 08, 2006 4:47 am |
  |
Hi all, i have a problem with my website, when i try to submit a web link, the page loads up to add the details, everything seems fine, but when i click the "SUBMIT" button, it loads a blank page.
this happened after i upgraded and patched version 7.9 of php-nuke
any help is apreciated |
|
|
    |
 |
z3r0k00l
Nuke Cadet


Joined: Apr 13, 2006
Posts: 7
Location: Barcelona, Spain
|
Posted:
Wed May 10, 2006 1:08 pm |
  |
bump...
can anyone give me a hand pls...  |
_________________ www.yahaa.org |
|
    |
 |
IcheBAN
Nuke Soldier


Joined: Mar 15, 2006
Posts: 10
|
Posted:
Wed May 10, 2006 10:32 pm |
  |
Check the URL that its trying to load when it gives you the error. |
|
|
   |
 |
z3r0k00l
Nuke Cadet


Joined: Apr 13, 2006
Posts: 7
Location: Barcelona, Spain
|
Posted:
Fri May 12, 2006 2:37 pm |
  |
|
    |
 |
Evaders99
Site Admin


Joined: Aug 17, 2003
Posts: 12482
|
Posted:
Sun May 14, 2006 6:57 pm |
  |
|
     |
 |
z3r0k00l
Nuke Cadet


Joined: Apr 13, 2006
Posts: 7
Location: Barcelona, Spain
|
Posted:
Mon May 15, 2006 8:33 am |
  |
thanx for ur reply... but ive had error reporting since i patched nuke 7.9... and no error comes in that page....
its just blank :S |
_________________ www.yahaa.org |
|
    |
 |
ehanuise
Nuke Cadet


Joined: Aug 20, 2005
Posts: 3
|
Posted:
Tue Jun 13, 2006 2:11 am |
  |
same problem, 7.8 patched 3.2 + nukesentinel.
Web links submission gives a blank page, no php errors, no nuke errors, no mysql errors no apache errors
There's just a description and name (no special chars), url (http://www.website.com). |
|
|
   |
 |
ehanuise
Nuke Cadet


Joined: Aug 20, 2005
Posts: 3
|
Posted:
Tue Jun 13, 2006 3:10 am |
  |
pff found it....
There's a die() function left in the 7.8 patched 3.2 code, in the index.php of the web links module :
| Code: |
$title = check_words(check_html(addslashes($title), "nohtml"));
$url = check_words(check_html(addslashes($url), "nohtml"));
#$description = check_words(check_html(addslashes($description), ""));
$description = check_words(check_html($description, ""));
$description = (addslashes($description));
$auth_name = check_words(check_html(addslashes($auth_name), "nohtml"));
if (!empty($email)) {
$email = validate_mail(check_html($email, "nohtml"));
# {
# die();
# }
}
$cat[0] = intval($cat[0]);
$cat[1] = intval($cat[1]);
$num_new = $db->sql_numrows($db->sql_query("SELECT * FROM ".$prefix."_links_newlink
|
Now that I commented it out it works just fine. |
|
|
   |
 |
|
|