Free Adult Tube-Video Script Forum
Probleme Admin registration - Printable Version

+- Free Adult Tube-Video Script Forum (http://freeadultscript.com/forum)
+-- Forum: My Category (/forumdisplay.php?fid=1)
+--- Forum: Bugs Report (/forumdisplay.php?fid=3)
+--- Thread: Probleme Admin registration (/showthread.php?tid=1798)



Probleme Admin registration - leibuu - 20-11-2011 12:37 PM

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: Probleme Admin registration - Punktured - 20-11-2011 12:39 PM

re-check that its the same password which is in
/config/config.php

also, are you on shared hosting?


RE: Probleme Admin registration - leibuu - 20-11-2011 12:51 PM

(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?


RE: Probleme Admin registration - Punktured - 20-11-2011 02:24 PM

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>';
}