Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Probleme Admin registration
20-11-2011, 12:37 PM
Post: #1
Probleme Admin registration
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?
Find all posts by this user
Quote this message in a reply
20-11-2011, 12:39 PM
Post: #2
RE: Probleme Admin registration
re-check that its the same password which is in
/config/config.php

also, are you on shared hosting?

Custom HTML/CSS/PHP
http://theorderofindividualacceptance.co...p.php?id=1
Find all posts by this user
Quote this message in a reply
20-11-2011, 12:51 PM (This post was last modified: 20-11-2011 01:25 PM by leibuu.)
Post: #3
RE: Probleme Admin registration
(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?
Find all posts by this user
Quote this message in a reply
20-11-2011, 02:24 PM
Post: #4
RE: Probleme Admin registration
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>';
}

Custom HTML/CSS/PHP
http://theorderofindividualacceptance.co...p.php?id=1
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: