Free Adult Tube-Video Script Forum

Full Version: Probleme Admin registration
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When i want to register in http://myste/admin/?option=register it`s say always
Code:
Incorrect Script Admin Password Please Correct it
but the password it`s corect,how can i fixe`t?
re-check that its the same password which is in
/config/config.php

also, are you on shared hosting?
(20-11-2011 12:39 PM)Punktured Wrote: [ -> ]re-check that its the same password which is in
/config/config.php

also, are you on shared hosting?

now it`s working thanx,but how can i delete the categories : games,popular games?
you have to edit your include/functions.php file
so make backup of file first, then in that file you will see
Code:
function call_menuler()

{
global $root_url,$lcl;
return '<li><a href="'.$root_url.'">'.$lcl['homepage'].'</a></li>
<li><a href="'.$root_url.'">'.$lcl['videos'].'</a></li>
            <li><a href="'.$root_url.'?option=popular">'.$lcl['popularvideos'].'</a></li>
            <li><a href="'.$root_url.'?option=games">'.$lcl['games'].'</a></li>
            <li><a href="'.$root_url.'?option=populargames">'.$lcl['populargames'].'</a></li>
            <li><a href="'.$root_url.'?option=contact">'.$lcl['contact'].'</a></li>';
}


use this instead, i have left the menu code in there but just commented them out.

Code:
function call_menuler()

{
global $root_url,$lcl;
return '<li><a href="'.$root_url.'">'.$lcl['homepage'].'</a></li>
<li><a href="'.$root_url.'">'.$lcl['videos'].'</a></li>
            <li><a href="'.$root_url.'?option=popular">'.$lcl['popularvideos'].'</a></li>
            <!--<li><a href="'.$root_url.'?option=games">'.$lcl['games'].'</a></li>-->
            <!--<li><a href="'.$root_url.'?option=populargames">'.$lcl['populargames'].'</a></li>-->
            <li><a href="'.$root_url.'?option=contact">'.$lcl['contact'].'</a></li>';
}
Reference URL's