Código PHP:
<?php
if(file_exists("config/connect_config.php")){
session_destroy();
header("location: index.php");
exit;
}else{
if(file_exists("config/language.php")){
include('config/language.php');
}
if(isset($_POST["install"])){
sleep(3);
$ip = trim(str_replace("http://", "", str_replace("www.", "", $_POST["ip_db"])));
$conexao = @mysql_connect($ip,$_POST["user_db"],$_POST["pass_db"]);
$banco = @mysql_select_db($_POST["name_db"], $conexao);
if(!$conexao){
?>
<script type="text/javascript">
$(function(){
$('.msg').fadeIn('slow').addClass('erro').html('<?php echo"$language_39"; ?>').delay(8000).fadeOut('slow');
});
</script>
<?php
}else{
cuando presiono instalar no instala y tampoco arroja ningun error, tampoc crea el archivo que debe crear con los datos que me hace cargar previamente.
Si hay algun costo por corregirme el codigo y hacer que funcione pasarme $$ cuanto es. desde ya gracias.
Les adjunto el codigo completo del codigo instalacion: https://pastebin.com/nsUG5WPt
Si necesitan la web completa me avisan y subo los archivo.