Advertisement
Search the Community
Showing results for tags 'acp'.
-
[HELP] All Apps/Modules Not Working in AdminCP! (IPNexus) [*URGENT*]
Guest posted a question in Invision Answered Questions
I switched hosts. Everything switched fine, and is working fine. Except all of my new applications/modules i try to install. They install fully and correctly, but in the admin CP all of the options don't show up!?! this is what Nexus looks like in my AdminCP... http://gyazo.com/cd2...257662fa6599ed1 http://gyazo.com/444...b5735321deb2eeb http://gyazo.com/c8d...4b8febabfbeac0d this is what easypages looks like.. http://gyazo.com/1cd39d328602bb05fffe88757956093c http://gyazo.com/1eef939139e4727704628fca8306b428 and here is my run on Requirements Checker - http://gyazo.com/a79...0df6c17d02d074b I am using IPB 3.4.5 NULLED. I have never had any problems with it. The only errors I have right now are these.. http://gyazo.com/f979af24f67219153ff4bdc4cf33dce2 http://gyazo.com/da8e3f302503fc8fef2980f90dd49d3a Any ideas? How can I fix this? After switching hosts I've had a few Permissions errors/problems but I just went into my new hosts FTP and changed the permissions. Could that be it? -
Hey guys, REPLACE " ::::: " WITH A NEW LINE (ENTER) This will be a short tutorial on how to IP secure your Admin CP. It is really simple and it only requires a little of PHP. ----------------------------------------------------------------------------------------------------- Requirements : FTP ----------------------------------------------------------------------------------------------------- Difficulty : Medium / Hard But, it will keep everyone out of the ACP login page about 98%. ----------------------------------------------------------------------------------------------------- If you need any help, contact me : Skype : pandaretail AIM : haxorfatal ----------------------------------------------------------------------------------------------------- First, go to the admin folder ----------------------------------------------------------------------------------------------------- Second, Open the index.php file in notepad (view/edit in FTP (right click)) It should look like this : ----------------------------------------------------------------------------------------------------- Third, add " $ip = $_SERVER['REMOTE_ADDR']; ::::: if ($ip == "IP HERE") { " right under " <?php ". Add an " ?> " right under " exit(); " , then add " <?php ::::: }else{ ::::: ?> " IF YOU WANT MORE THAN 1 IP(s) TO BE ABLE TO USE THE ADMIN CP, PUT : " if ($ip == "IP HERE" || $ip == "OTHER IP" || $ip == "OTHER IP") { " AND JUST KEEP ADDING " || $ip == "" " AFTER THE IP BEFORE IT. Should look like this : ----------------------------------------------------------------------------------------------------- Fourth, add you're own HTML code under the "else" statement (whatever you want the people to see if they do NOT have the ip that is put in the PHP code). ----------------------------------------------------------------------------------------------------- Fifth, end it with " <?php ::::: } ::::: ?> " Should look like this : ----------------------------------------------------------------------------------------------------- HOW TO CODE SHOULD FULLY LOOK : WITH 1 IP ONLY : MORE THAN 1 IP :