MyBB Community Forums

Full Version: acp missing css
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2011-02-22, 11:12 PM)MattRogowski Wrote: [ -> ]OK I see the problem, when you login it redirects you to this URL:

./forums/admin/index.php/forums/admin/index.php?

Try this... line 383 of ./admin/inc/class_page.php:

<form method="post" action="{$_SERVER['PHP_SELF']}{$query_string}">

change to:

<form method="post" action="{$_SERVER['PHP_SELF']}">

Does it still happen??

Yes it does. I changed the code, saved it then wiped out browser cache. Logged in to ACP and still no css. It will still show css if I go to my profile page and then back to acp without having to log in.
What's your forum's url?
(2011-02-23, 12:50 AM)Spencer Wrote: [ -> ]What's your forum's url?

http://www.firehouse-gaming.com/forums/
(2011-02-23, 12:43 AM)Halen Wrote: [ -> ]
(2011-02-22, 11:12 PM)MattRogowski Wrote: [ -> ]OK I see the problem, when you login it redirects you to this URL:

./forums/admin/index.php/forums/admin/index.php?

Try this... line 383 of ./admin/inc/class_page.php:

<form method="post" action="{$_SERVER['PHP_SELF']}{$query_string}">

change to:

<form method="post" action="{$_SERVER['PHP_SELF']}">

Does it still happen??

Yes it does. I changed the code, saved it then wiped out browser cache. Logged in to ACP and still no css. It will still show css if I go to my profile page and then back to acp without having to log in.

I switched the code to:
<form method="post" action="{$query_string}">


and I seems to work correctly now. I am not sure if this is a viable solution, but it works?

Any suggestions/comments?

Thank you for your help.
Weird. I'll have to try and look into why this happens.
Pages: 1 2