Author |
Message |
wizardks
New Member


Joined: Aug 01, 2008
Posts: 12
|
Posted:
Fri Aug 21, 2009 5:29 am |
|
I just upgraded to FF 3.5.2 now i can't login to site. No error messages displayed in FF or in server logs. Log in just fine with IE. Any ideas or fixes out there |
|
|
|
 |
wizardks

|
Posted:
Fri Aug 21, 2009 5:49 am |
|
wizardks wrote: | I just upgraded to FF 3.5.2 now i can't login to site. No error messages displayed in FF or in server logs. Log in just fine with IE. Any ideas or fixes out there |
UPDATE: Seems there is an issue with the Theme, changed to default theme and it works. |
|
|
|
 |
spasticdonkey
RavenNuke(tm) Development Team

Joined: Dec 02, 2006
Posts: 1693
Location: Texas, USA
|
Posted:
Fri Aug 21, 2009 11:41 am |
|
|
|
 |
wHiTeHaT
Life Cycles Becoming CPU Cycles

Joined: Jul 18, 2004
Posts: 579
|
Posted:
Fri Aug 21, 2009 1:43 pm |
|
you can test the optional solution on the Only registered users can see links on this board! Get registered or login! page. |
|
|
|
 |
wizardks

|
Posted:
Sun Aug 23, 2009 7:22 am |
|
Now it seems I can not log into admin. When I do the screen just clears all log in fields. server logs show the following
www.wizardscorner.com Username [23/Aug/2009:09:12:58 -0400] "GET /images/captcha.php?size=normal HTTP/1.1" 200 3152 "http://www.wizardscorner.com/admin.php" "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 (.NET CLR 3.5.30729)"
Works fine with IE have cleared cache, cookies, and etc. Believe this is an issue with FF itself. |
|
|
|
 |
meotoo
Hangin' Around

Joined: Aug 04, 2009
Posts: 36
|
Posted:
Sun Aug 23, 2009 8:49 am |
|
wHiTeHaT wrote: | you can test the optional solution on the Only registered users can see links on this board! Get registered or login! page. |
If we can do propaganda, i would suggest the more optimal recaptcha solution.. Only registered users can see links on this board! Get registered or login!
Seriously, i wanted to post a comment about the new osc2nuke release but found i cannot posts comments, at least there is no "comments?" link on the homepage. Therefore, i'll take this opportunity, and sorry all by "hijack" this thread.
I just would like to thanks everyone involved in osc2nuke for the great work done in the past and actually maintaining a uptodate package, a quite great addon to php-nuke users, indeed. Is there still nonal? or did you wHiTeHaT take control of the project? I've found the website has been redesigned as well, nice job as well
However, i have to say a fact which a bit frustrating to me, and it's that i spent a lot of hours during the last few months fixing/adapting the latest osc2nuke universal2 to fit my needs, etc. and just now that i made my website online a new version comes to light, funny. we'll see how long it takes me to do the same with the latest V3 package whatever, keep up the good work
Following to topic, @wizardks:
Updating from releases, i also found certain things does no longer works as before, and it's mainly caused by security fixes, keep in mind that the Firefox Team will not intentionally make something broken if isn't in response of some kind of security flaw or related. However, it still could be some bug, reading its changelog should provide some response. |
|
|
|
 |
wHiTeHaT

|
Posted:
Sun Aug 23, 2009 9:02 am |
|
Meotoo , you can post all comments in the forum on the mentioned website.
i used the referring to it , so he actualy can see what it do.
As it seems my post i made before with the code + explanation , is to hard to understand for some users.
for your own propaganda , Raven said explicit , he dont want to use a 3th party captcha , and he even pointed exactly to the one you use.
So as long FF dont fix theire cache and Raven dont fix or rebuild his captcha .... the rest you can figure out i hope.
PS: i'm sorry you have just tweaked your osc2nuke module , but that happens in opensource verry often , depanding on how a script is coded. |
|
|
|
 |
meotoo

|
Posted:
Sun Aug 23, 2009 9:16 am |
|
oops.. i had to read first the Only registered users can see links on this board! Get registered or login! post, which i finished reading right now, before posting here.
regarding my tweaked osc2nuke, no problem!, i may commit you some of the changes i did if i found could be helpful for your V3, i'll check, but i guess that will not be sometime soon.. i need extra energy and motivation to restart from scratch what i did for V2 on V3  |
|
|
|
 |
Palbin
Site Admin

Joined: Mar 30, 2006
Posts: 2583
Location: Pittsburgh, Pennsylvania
|
Posted:
Sun Aug 23, 2009 10:28 am |
|
We are working on a fix currently. |
_________________ "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it." — Brian W. Kernighan. |
|
|
 |
wizardks

|
Posted:
Sun Aug 23, 2009 6:41 pm |
|
I just set captcha for new users and users for now. And I liked my NY Yankees FF theme as of now it won't let me log in as regular user either. Oh well, open source is great so I am willing to be patient. Definitely appreciate all the hard work by raven, and all the Linux folks etc. Haven't had much time for programming since 1983 or so, am finding that a whole lot has changed. Might have to pay $ for a course or to who knows. Retirement is just around the corner anyway. |
|
|
|
 |
montego
Site Admin

Joined: Aug 29, 2004
Posts: 9457
Location: Arizona
|
Posted:
Sun Aug 23, 2009 6:47 pm |
|
For now, here is the fix being proposed and currently in for the next release (unless someone finds a problem with it ahead of time:
=== OPEN FILE ===
includes/gfx-check.php
=== FIND CODE ===
Code:
if (defined('VISUAL_CAPTCHA')) {
switch($size) {
case 'large':
$code .= '<tr><td>'._SECURITYCODE.':</td><td><img src="images/captcha.php?size=large" border="0" alt="'._SECURITYCODE.'" title="'._SECURITYCODE.'" /></td></tr>'."\n";
$code .= '<tr><td>'._TYPESECCODE.':</td><td><input type="text" name="gfx_check" size="10" maxlength="10" /></td></tr>'."\n";
$code .= "\n";
break;
case 'normal':
$code .= '<tr><td>'._SECURITYCODE.':</td></tr><tr><td><img src="images/captcha.php?size=normal" border="0" alt="'._SECURITYCODE.'" title="'._SECURITYCODE.'" /></td></tr>'."\n";
$code .= '<tr><td>'._TYPESECCODE.':</td></tr><tr><td><input type="text" name="gfx_check" size="10" maxlength="10" /></td></tr>'."\n";
$code .= "\n";
break;
case 'small':
$code .= _SECURITYCODE.': <img src="images/captcha.php?size=small" border="0" alt="'._SECURITYCODE.'" title="'._SECURITYCODE.'" />'."\n";
$code .= _TYPESECCODE.': <input type="text" name="gfx_check" size="10" maxlength="10" />'."\n";
$code .= "\n";
break;
case 'stacked':
$code .= _SECURITYCODE.'<br /><img src="images/captcha.php?size=normal" border="0" alt="'._SECURITYCODE.'" title="'._SECURITYCODE.'" /><br />'."\n";
$code .= _TYPESECCODE.' <br /><input type="text" name="gfx_check" size="10" maxlength="10" />'."\n";
$code .= '<br />'."\n";
break;
case 'demo':
$code .= '<img src="images/captcha.php?size=large" border="0" alt="'._SECURITYCODE.'" title="'._SECURITYCODE.'" />';
break;
}
} else {
|
=== REPLACE WITH ===
Code:
if (defined('VISUAL_CAPTCHA')) {
static $imgID;
if (!isset($imgID)) $imgID = time();
$imgTrick = '&imgID=' . $imgID;
switch($size) {
case 'large':
$code .= '<tr><td>' . _SECURITYCODE . ':</td><td><img src="images/captcha.php?size=large' . $imgTrick . '" border="0" alt="' . _SECURITYCODE . '" title="' . _SECURITYCODE . '" /></td></tr>';
$code .= '<tr><td>'._TYPESECCODE . ':</td><td><input type="text" name="gfx_check" size="10" maxlength="10" /></td></tr>';
$code .= "\n";
break;
case 'normal':
$code .= '<tr><td>' . _SECURITYCODE . ':</td></tr><tr><td><img src="images/captcha.php?size=normal' . $imgTrick . '" border="0" alt="' . _SECURITYCODE . '" title="' . _SECURITYCODE . '" /></td></tr>';
$code .= '<tr><td>'._TYPESECCODE . ':</td></tr><tr><td><input type="text" name="gfx_check" size="10" maxlength="10" /></td></tr>';
$code .= "\n";
break;
case 'small':
$code .= _SECURITYCODE . ': <img src="images/captcha.php?size=small' . $imgTrick . '" border="0" alt="' . _SECURITYCODE . '" title="' . _SECURITYCODE . '" />';
$code .= _TYPESECCODE . ': <input type="text" name="gfx_check" size="10" maxlength="10" />';
$code .= "\n";
break;
case 'stacked':
$code .= _SECURITYCODE . '<br /><img src="images/captcha.php?size=normal' . $imgTrick . '" border="0" alt="' . _SECURITYCODE . '" title="' . _SECURITYCODE . '" /><br />';
$code .= _TYPESECCODE . ' <br /><input type="text" name="gfx_check" size="10" maxlength="10" />';
$code .= '<br />';
break;
case 'demo':
$code .= '<img src="images/captcha.php?size=large' . $imgTrick . '" border="0" alt="' . _SECURITYCODE . '" title="' . _SECURITYCODE . '" />';
break;
}
} else {
|
=== DONE ===
This should work. Let us know if you have any issues with it. |
_________________ Only registered users can see links on this board! Get registered or login!
Only registered users can see links on this board! Get registered or login! |
|
|
 |
wizardks

|
Posted:
Sun Aug 23, 2009 7:02 pm |
|
will give it a try tomorrow have to go drag a semi truck off the road thanks |
|
|
|
 |
wizardks

|
Posted:
Wed Aug 26, 2009 6:47 am |
|
Working ok so far thanks for the fix |
|
|
|
 |
montego

|
Posted:
Thu Aug 27, 2009 6:15 am |
|
Excellent. Thanks for the extra "kicking of the tires".  |
|
|
|
 |
|