In the file submit.php
Line 13 you will see this php include,
Code:
include(mnminclude.'html1.php');
On line 21 you will see a call to a function,
Code:
force_authentication();
That function is defined in libs/html1.php on line 80
It looks like this:
Code:
function force_authentication() {
global $current_user;
if(!$current_user->authenticated) {
//echo '<div class="instruction"><h2>'._('ERROR: you must login').'. <a href="login.php">'._('Login').'</a>.</h2></div>'."\n";
header("Location: " . getmyurl('login', $_SERVER['REQUEST_URI']));
die;
}
return true;
}
What is happening is when submit.php is loaded it starts running the code and sees that there is a call to the function "force_authentication"
It finds the function that was included in submit.php via "include(mnminclude.'html1.php')" and runs it.
That function tells it your not logged in.
Solution???
Try this change line 21 in submit.php
Code:
from this: force_authentication();
To this: ///force_authentication();///
I hope this helps I know nothing about the script, I just downloaded it looked at a couple files and thats about it.
So no gaurentees if anything you atleast have an idea of how it works.
Let me know if it works out for you!
By you allowing anonymous posting your probably going to get a-lot of spam.
Excuse my grammer is terrible tonight, suffering from a July 4th hang over lol