1

(6 replies, posted in Frequently Asked Questions)

Thank you guys for your responses!

Rodolfo wrote:

You should use SSH instead of FTP.

Yes, but i'm using a public internet connection, don't have access to the router.

Darkmax wrote:

why instead of selecting all the images from the images folder you select the image folder? shouldn't this download all the images inside it?

---
also, if you're using a linux vps/dedi for your site I recommend using webmin. it's free, easy to use and an excellent script.

Already tryed it, not working wink

Rodolfo wrote:

You can do a server to server transfer using ssh, or you can make a zip of the whole images folder. But use SSH.

Yes, i'm going to do a .zip & to download this last, thank you wink

2

(6 replies, posted in Frequently Asked Questions)

Hello,

I've a little problem to backup my files by FTP, when i reach the /images/ folder, only 10,000 images are seen.
I tryed to change my FTP client but it's the same with FlashFXP / Filezilla etc.

I don't know what to do now to backup my files by FTP, any solution here?

Nice work Rodolfo, as always wink

4

(1 replies, posted in Showcase)

Hmm, you'r promoting warez...

1. No encrypt method for password...
2. Useless script, we can't manage files, there is no advantage to be a member...

I don't understand your langage, but read the readme files.

CURL problem imo.

7

(9 replies, posted in Showcase)

div#logo {
    margin: 0 auto;
    text-align: center;
    }

8

(17 replies, posted in Showcase)

Dustin wrote:

using free co.cc domains on a hq server suxx smile

You may also edit the body_bkg_default.png for higher resolutions (x:repeat)

+1

9

(9 replies, posted in Showcase)

Look about the source...

Open index.php

Find :

<div class="inputs"><input name="fileup" type="file" size="60" id="localUP" onclick="javascript:document.getElementById('remotaUP').value = '';"/></div>

Add your ads code after (local).

Find:

<div class="inputs"><input name="remota" size="60" id="remotaUP" onclick="javascript:document.getElementById('localUP').value = '';"/></div>

Ads your ads here too (remote).

Finally, find :

<div id="share" <? if (isset($v) && $v!=='rec.php') { ?>style="display: none;"<? } ?>>

Add your ads after wink

1. Open index.php

Delete before </div> <!-- selector --> :

<? if ($cut_url==true && $cut_url_user==true) { ?><div id="preferencias"<? if (isset($lang)) { echo ' class="'.$lang.'"'; } ?>><a id="pclosed"><span><?=TXT_PREFERENCES;?></span></a><a id="popen" style="display:none;"><span><?=TXT_PREFERENCES;?></span></a></div><? } ?>

Delete after </div> <!-- selector --> :

<form id="form_up" enctype="multipart/form-data" action="<?=PATH_SCRIPT;?>" method="post">
 
    <? if ($cut_url==true && $cut_url_user==true) { ?>
    <div id="pref-panel" style="display: none;"><div id="cajon-pref"><p id="prefurl"><input name="" type="checkbox" id="cortarurl" value="" <? if(isset($_COOKIE['prefurl'])) { ?>checked="checked"<? } ?> /><label for="cortarurl"> <?=TXT_TINYURL;?></label></p><div id="save"><a id="savepref" /><?=TXT_CLOSE_PREF;?></a></div></div></div> 
    <? } ?>

In engine.php delete :

// SHORT URL SERVICE
switch($cut_url_service) {
    case 'tinyurl':
        $tiny_api = 'http://tinyurl.com/api-create.php?url=';
        $tiny_service = 'TinyURL';
        break;
    case 'tr.im':
        $tiny_api = 'http://api.tr.im/api/trim_simple?url=';
        $tiny_service = 'tr.im';
        break;
    case 'snurl':
        $tiny_api = 'http://snurl.com/site/snip?r=simple&link=';
        $tiny_service = 'Snurl';
        break;
    default:
        $tiny_api = 'http://tinyurl.com/api-create.php?url=';
        $tiny_service = 'TinyURL';
        break;
}

And

// Short URL using services like TinyURL.com        
    function cortar_url($url) {   
        global $tiny_api;
        $tiny = $tiny_api.$url;
        $chtny = curl_init();
        curl_setopt($chtny, CURLOPT_URL, $tiny);
        curl_setopt($chtny, CURLOPT_RETURNTRANSFER, 1);
        $ShortURL = curl_exec($chtny);
        curl_close($chtny);
        return $ShortURL;
    }
 
    // SI esta habilitado cortar url.. hagamolo.
    if ($cut_url==true) {
 
        // Si se da a elegir al usuario, cortemos si el quiere.
        if ($cut_url_user==true) {
            // El usuario quiere cortar url...
            if (isset($_COOKIE['prefurl'])) {
                $ShortURL = cortar_url($URLimg);
            }
        // Cortamos si o si ya que la prefencia es de script y no de usuario.
        } else {
            $ShortURL = cortar_url($URLimg);
        }
 
    }

2. For resize buttons, in index.php delete :

<div id="redimensionar">
        <div id="redimensionar_cajatitulo">
            <div id="redimensionar_titulo">
                <div id="boton_redimensionar"<? if (isset($lang)) { echo ' class="'.$lang.'"'; } ?>><span><a id="rclosed"></a><a id="ropen" style="display: none;"></a></span></div>
                <div id="red_mensaje"><span id="red1"><?=RESIZE_DSC;?></span><span id="red2" style="display: none;"></span></div>
            </div>
        </div>       
        <div id="redimensionar-borde" style="display: none;">
            <div id="cajonred">
                <div id="ancho_deseado"><?=RESIZE_WIDTH;?> <span><?=RESIZE_PIXELS;?></span></div>
                <input name="resize" id="resize"/>
                <div id="kepp"><?=RESIZE_KEEP;?></div>
            </div>
        </div>
    </div>

For engine.php remove, there is too many lines, ask Rodolfo for this wink

3.I know how to remove this for local,  but don't know exactly for remote.

11

(3 replies, posted in [NB] Themes, Design & UI)

Customize yourself, find #333 #444 #555 #666 & #999 and replace them by your custom colors wink

12

(31 replies, posted in General talk)

I'm on Dreamhost too, Servage disallow Image hosting.

13

(4 replies, posted in [NB] Mods & Add-ons)

http://www.ajaxload.info/images/logo.png

With ajaxload, you can customize your own load.gif for Chevereto...

Exemple:

http://www.geekpics.net/site-img/load.gif


Link : http://www.ajaxload.info/

You have to edit the css if you change :

div#enviando {
    width: 135px;

Change 135px by your load.gif width.

Hello, i'll try to give my idea to help Chevereto wink


1.We can make somes folders by date:

Exemple : /images/07/07/2009/

2.Make Chevereto script Compatible with iPhone mobile.

3.Put a little "Copy" button after code.

4.Make multi images upload.

I'll edit when i get an idea, and i'll try to help Cheverto script in july (No holidays atm hmm)

A lot of ads for a simple images hosting...