elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Curso de javascript por TickTack


  Mostrar Mensajes
Páginas: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16
141  Foros Generales / Foro Libre / Re: Umarex HPP o Umarex SA177 en: 7 Diciembre 2012, 20:10 pm
al final me llegaron los bbs osea los perdigones de acero, se supone que se puede hacer 150 tiros pero a los 120 el bbs se desvía 2 palmos, es tal como pensaba una M, para la próxima ya se que elegir, GAMO.


solo la recomiendo si tienes el dedo ligero.

pero el cargador rápido na da de rápido se atasca y no carga bien, osea UMAREX = Una Mx
142  Foros Generales / Foro Libre / Re: Pechuga de pollo en: 5 Diciembre 2012, 17:45 pm


? no en tiendo muy bien lo de jackie chan.
Pues hasta la fecha no me había pasado pero llevo mas de una semana con diarrea y sin poder ir al Gimnasio por ello, lo único que con siguen es que compre en la carnicería del moro en vez de las tiendas normales...
143  Foros Generales / Foro Libre / Re: Umarex HPP o Umarex SA177 en: 4 Diciembre 2012, 18:56 pm
me e pillado la Umarex HPP, pero los memos no mandaron las BBS osea los balines de acero, el aspecto no es tan bonita como las de los chinos esas de 20€ que disparan bolas de plástico, ya os diré como tira, espero que no tire igual pus parece que se vaya a caer la corredera.

1 S2
144  Foros Generales / Foro Libre / Pechuga de pollo en: 4 Diciembre 2012, 18:38 pm
En España, comunidad Valenciana.
Alguien a notado el estado que esta la pechuga de pollo en las tiendas?, Consum mercadona, etc...
145  Foros Generales / Foro Libre / Umarex HPP o Umarex SA177 en: 20 Noviembre 2012, 20:36 pm
Pus eso que no me decido, creo que la Umarex HPP por que tiene 130 ms...
146  Foros Generales / Foro Libre / Re: Certificado Negativo en: 8 Noviembre 2012, 18:59 pm
Pues no lo e encontrado.
147  Sistemas Operativos / Windows / Re: Windows 98 Desde USB? en: 8 Noviembre 2012, 18:53 pm
Al instalarlo en el PEN, me da un error de disco, creo que el disco, y tarda 1h en instalarlo pero falla.
148  Sistemas Operativos / Windows / Windows 98 Desde USB? en: 18 Octubre 2012, 19:41 pm
Se Puede instalar W98 en una USB? e probado pero no me deja me da un error creo que de disco.
149  Programación / Desarrollo Web / Re: Script - Directory Listing Script en: 15 Octubre 2012, 15:31 pm
Y yo quiero un bugatti veyron pero con copiar/pegar no me funciona.. alguien me ayuda ??

Saludos

Toma...
150  Programación / Desarrollo Web / Script - Directory Listing Script en: 15 Octubre 2012, 15:08 pm
Código:
<?

header('Content-Type: text/html; charset=utf-8');

$host = $_SERVER['HTTP_HOST'];

setlocale(LC_TIME, "es_ES.utf8");

date_default_timezone_set('Europe/Madrid');



/*

Directory Listing Script - Version 2

====================================

Script Author: Ash Young <ash@evoluted.net>. www.evoluted.net

Layout: Manny <manny@tenka.co.uk>. www.tenka.co.uk

*/

$startdir = '.';

$showthumbnails = false;

$showdirs = true;

$forcedownloads = false;

$hide = array(

'dlf',

'/public_html/',

'index.php',

'Thumbs',

'.htaccess',

'.htpasswd'

);

$displayindex = false;

$allowuploads = false;

$overwrite = false;



$indexfiles = array (

'index.html',

'index.htm',

'default.htm',

'default.html'

);



$filetypes = array (

'png' => 'jpg.gif',

'jpeg' => 'jpg.gif',

'bmp' => 'jpg.gif',

'jpg' => 'jpg.gif',

'gif' => 'gif.gif',

'zip' => 'archive.png',

'rar' => 'archive.png',

'exe' => 'exe.gif',

'setup' => 'setup.gif',

'txt' => 'text.png',

'htm' => 'html.gif',

'html' => 'html.gif',

'php' => 'php.gif',

'fla' => 'fla.gif',

'swf' => 'swf.gif',

'xls' => 'xls.gif',

'doc' => 'doc.gif',

'sig' => 'sig.gif',

'fh10' => 'fh10.gif',

'pdf' => 'pdf.gif',

'psd' => 'psd.gif',

'rm' => 'real.gif',

'mpg' => 'video.gif',

'mpeg' => 'video.gif',

'mov' => 'video2.gif',

'avi' => 'video.gif',

'eps' => 'eps.gif',

'gz' => 'archive.png',

'asc' => 'sig.gif',

);



error_reporting(0);

if(!function_exists('imagecreatetruecolor')) $showthumbnails = false;

$leadon = $startdir;

if($leadon=='.') $leadon = '';

if((substr($leadon, -1, 1)!='/') && $leadon!='') $leadon = $leadon . '/';

$startdir = $leadon;



if($_GET['dir']) {

// check this is okay.



if(substr($_GET['dir'], -1, 1)!='/') {

$_GET['dir'] = $_GET['dir'] . '/';

}



$dirok = true;

$dirnames = split('/', $_GET['dir']);

for($di=0; $di<sizeof($dirnames); $di++) {



if($di<(sizeof($dirnames)-2)) {

$dotdotdir = $dotdotdir . $dirnames[$di] . '/';

}



if($dirnames[$di] == '..') {

$dirok = false;

}

}



if(substr($_GET['dir'], 0, 1)=='/') {

$dirok = false;

}



if($dirok) {

$leadon = $leadon . $_GET['dir'];

}

}







$opendir = $leadon;

if(!$leadon) $opendir = '.';

if(!file_exists($opendir)) {

$opendir = '.';

$leadon = $startdir;

}



clearstatcache();

if ($handle = opendir($opendir)) {

while (false !== ($file = readdir($handle))) {

// first see if this file is required in the listing

if ($file == "." || $file == "..")  continue;

$discard = false;

for($hi=0;$hi<sizeof($hide);$hi++) {

if(strpos($file, $hide[$hi])!==false) {

$discard = true;

}

}



if($discard) continue;

if (@filetype($leadon.$file) == "dir") {

if(!$showdirs) continue;



$n++;

if($_GET['sort']=="date") {

$key = @filemtime($leadon.$file) . ".$n";

}

else {

$key = $n;

}

$dirs[$key] = $file . "/";

}

else {

$n++;

if($_GET['sort']=="date") {

$key = @filemtime($leadon.$file) . ".$n";

}

elseif($_GET['sort']=="size") {

$key = @filesize($leadon.$file) . ".$n";

}

else {

$key = $n;

}

$files[$key] = $file;



if($displayindex) {

if(in_array(strtolower($file), $indexfiles)) {

header("Location: $file");

die();

}

}

}

}

closedir($handle);

}



// sort our files

if($_GET['sort']=="date") {

@ksort($dirs, SORT_NUMERIC);

@ksort($files, SORT_NUMERIC);

}

elseif($_GET['sort']=="size") {

@natcasesort($dirs);

@ksort($files, SORT_NUMERIC);

}

else {

@natcasesort($dirs);

@natcasesort($files);

}



// order correctly

if($_GET['order']=="desc" && $_GET['sort']!="size") {$dirs = @array_reverse($dirs);}

if($_GET['order']=="desc") {$files = @array_reverse($files);}

$dirs = @array_values($dirs); $files = @array_values($files);



?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

    <head>

        <title>Bienvenido a <? print $host; ?>!</title>

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <link href="http://www.main-hosting.com/hostinger/welcome/css/site.css" media="screen" rel="stylesheet" type="text/css" />

    </head>

    <body>

        <div id="main">

            <div id="content">

                <div class="header">

                    <a id="logo" href="http://www.hostinger.es/"><img src="http://www.main-hosting.com/hostinger/welcome/images/logo.png" alt="Hosting Web" /></a>

                </div>

                <div class="content">

                    <h1>Tu cuenta ha sido creada!</h1>

                    <p>El sitio <b><? print $host; ?></b> ha sido correctamente instalado en el servidor! Por favor elimina el archivo <b>default.php</b> de la carpeta  <b>public_html</b> y luego carga tu sitio usando un cliente FTP o el Administrador de Archivos.</p>

                    <p>Aquí hay una lista de los archivos en tu carpeta public_html:</p>

                    <div id="files">

                        <div class="top"></div>

                        <div class="cont">



                            <div id="listingcontainer">

                                <div id="listing">

                                <?

                                $class = 'b';

                                if($dirok) {

                                ?>

                                  <div><a href="<?=$dotdotdir;?>" class="<?=$class;?>"><img src="http://www.main-hosting.com/hostinger/welcome/index/dirup.png" alt="Folder" /><strong>..</strong> <em>-</em><? $mtime = filemtime($dotdotdir); $mtime = date("m/d/Y H:i:s", $mtime); $mtime = strftime("%B %e, %G %T", strtotime($mtime)); print ucfirst($mtime); ?></a></div>

                                <?

                                    if($class=='b') $class='w';

                                    else $class = 'b';

                                }

                                $arsize = sizeof($dirs);

                                for($i=0;$i<$arsize;$i++) {

                                ?>

                                  <div><a href="<?=$leadon.$dirs[$i];?>" class="<?=$class;?>"><img src="http://www.main-hosting.com/hostinger/welcome/index/folder.png" alt="<?=$dirs[$i];?>" /><strong><?=$dirs[$i];?></strong> <em>-</em><? $mtime = filemtime($leadon.$dirs[$i]); $mtime = date("m/d/Y H:i:s", $mtime); $mtime = strftime("%B %e, %G %T", strtotime($mtime)); print ucfirst($mtime); ?></a></div>

                                <?

                                    if($class=='b') $class='w';

                                    else $class = 'b';

                                }

                               

                                $arsize = sizeof($files);

                                for($i=0;$i<$arsize;$i++) {

                                    $icon = 'unknown.png';

                                    $ext = strtolower(substr($files[$i], strrpos($files[$i], '.')+1));

                                    $supportedimages = array('gif', 'png', 'jpeg', 'jpg');

                                    $thumb = '';

                                           

                                    if($filetypes[$ext]) {

                                        $icon = $filetypes[$ext];

                                    }

                                   

                                    $filename = $files[$i];

                                    if(strlen($filename)>43) {

                                        $filename = substr($files[$i], 0, 40) . '...';

                                    }

                                   

                                    $fileurl = $leadon . $files[$i];

                                ?>

                                  <div><a href="<?=$fileurl;?>" class="<?=$class;?>"<?=$thumb2;?>><img src="http://cpanel.main-hosting.com/images/index/<?=$icon;?>" alt="<?=$files[$i];?>" /><strong><?=$filename;?></strong><em><?=round(filesize($leadon.$files[$i])/1024);?> KB</em><? $mtime = filemtime($leadon.$files[$i]); $mtime = date("m/d/Y H:i:s", $mtime); $mtime = strftime("%B %e, %G %T", strtotime($mtime)); print ucfirst($mtime); ?><?=$thumb;?></a></div>

                                <?

                                    if($class=='b') $class='w';

                                    else $class = 'b';

                                }

                                ?>

                                </div>

                            </div>



                        </div>

                        <div class="bottom"></div>

                        <div class="clear"></div>

                    </div>

                    <div class="clear"></div>

                </div>

                <div class="footer"></div>

                <div class="clear"></div>

            </div>

            <div id="footer">

                <div class="links">

                    <a href="http://www.hostinger.es/hosting-web" target="_blank">Hosting Web</a>

                    <span class="pipe">|</span>

                    <a href="http://www.hostinger.es/hosting-gratis" target="_blank">Hosting Gratis</a>

                    <span class="pipe">|</span>

                    <a href="http://www.hostinger.es/forum" target="_blank">Foro de Soporte</a>

                    <span class="pipe">|</span>

                    <a href="http://cpanel.hostinger.es/" target="_blank">Iniciar Sesión</a>

                </div>

                <div class="copyright">Hostinger &copy; <? print date('Y'); ?>. Todos los derechos reservados</div>

                <div class="social-icons">

                    <a href="http://www.facebook.com/Hostinger.es"><img src="http://www.main-hosting.com/hostinger/welcome/images/fb.gif" /></a>

                    <a href="https://twitter.com/HostingerES"><img src="http://www.main-hosting.com/hostinger/welcome/images/twitter.gif" /></a>

                </div>

            </div>

        </div>

    </body>

</html>
<!--DEFAULT_WELCOME_PAGE-->

Hola, quiero que lea el rirectorio SWF y que la cabecera no sea tangrande.

1 S2.
Páginas: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [15] 16
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines