<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Chevereto Forums - problema de instalacion]]></title>
		<link>http://chevereto.com/forums/topic477-problema-de-instalacion.html</link>
		<description><![CDATA[The most recent posts in problema de instalacion.]]></description>
		<lastBuildDate>Tue, 02 Mar 2010 07:33:17 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: problema de instalacion]]></title>
			<link>http://chevereto.com/forums/post2334.html#p2334</link>
			<description><![CDATA[<p>parece que voy bien en la configuracion pues llege al paso donde varios se han atorado <img src="http://chevereto.com/forums/img/smilies/cool.png" width="15" height="15" alt="cool" /></p><p>Critital error: Invalid $PATH_SERVER, edit it manually in config.php</p><br /><p>esa parte lo tengo asi:</p><div class="codebox"><pre><code>$DOM_SCRIPT = &#039;darkorbitea.com&#039;; // --&gt; mysite.com
$PATH_SERVER = &quot;/&quot;; // --&gt; /public_html (pssst.. NO ENDING SLASH!)</code></pre></div><br /><p>si esta mal diganme como es por favor</p>]]></description>
			<author><![CDATA[null@example.com (callter)]]></author>
			<pubDate>Tue, 02 Mar 2010 07:33:17 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2334.html#p2334</guid>
		</item>
		<item>
			<title><![CDATA[Re: problema de instalacion]]></title>
			<link>http://chevereto.com/forums/post2333.html#p2333</link>
			<description><![CDATA[<div class="codebox"><pre><code>&lt;?

/* -----------------------------------------

  Chevereto - Script de hosting de imagenes
  Nightly Build 1.7 (29/10/2009)
  http://www.chevereto.com/

  Released under the GPL 2.0
  Copyright (C) 2008 by Rodolfo Berrios
  &lt;inbox at rodolfoberrios dot com&gt;

  ----------------------------------------- */

// Language //
define(&#039;LANG&#039;, &#039;en&#039;); // en - English | es - Español | fa - Farsi | fr - Français | nl - Dutch | cn - ZH-CN (Chinese)

define(&#039;APP_NAME&#039;, &#039;Demo Chevereto&#039;); // Your image hosting name
define(&#039;TAG_LINE&#039;, &#039;Image Hosting&#039;); // Your tagline (for doctitles and logo)

// Folders //
/* If you change this, you also must change the folders name. */
define(&#039;DIR_UP&#039;,&#039;up/&#039;);
define(&#039;DIR_IM&#039;,&#039;images/&#039;); // Change this to have something like /X/filename.jpg - where &quot;X/&quot; is the folder name. 
define(&#039;DIR_WORKING&#039;,DIR_UP.&#039;working/&#039;);
define(&#039;DIR_TEMP&#039;,DIR_UP.&#039;temp/&#039;);
define(&#039;DIR_TH&#039;,&#039;thumbs/&#039;);

// Min-Max values -&gt; php.ini rules the nation... //
$max_mb = &#039;2&#039;; // Max. image size (Mbytes)
$max_by = $max_mb*1048576; // (bytes)
$max_name = &#039;10&#039;; // Max. file name lenght.

// Thumbs //
$mini_ancho = &#039;150&#039;; // Thumb width (pixels)
$mini_alto = &#039;150&#039;; // Thumb height (pixels)

// Resize //
$lowres = &#039;16&#039;; // Min. resize value (pixels)
$higres = &#039;1280&#039;; // Max. resize value (pixels)

// Options //
$lim_act = true; // true: Allows uploading just for your domain - false: Allows upload from anywhere (post from another website)
$debug_mode = true; // false: Debug OFF - true: Debug ON.
$cut_url = true; // true: Short URLs (TinyURL tr.im etc.) - false: normal url (http://mysite.com/images/image.jpg).
$cut_url_service = &#039;tinyurl&#039;; // tinyurl
$cut_url_user = true; // If $cut_url = true -&gt; true: Allows your users to cut their urls (preference) - false: Users can&#039;t choose to cut or not.
$allow_over_resize = false; // true: Allows over resize images - false: Don&#039;t allow over resize.


///////////////////////////////////////////////////////////////////
///// DO NOT EDIT BELOW THIS - (do it if the script can&#039;t run) ////
///////////////////////////////////////////////////////////////////

// SERVER ///
/* We get this values with $_SERVER. If your server doesn&#039;t resolve this values The script will not work.
   If the script doesn&#039;t work, you must change this values to be like values in the comments (see the exaple below) */

$DOM_SCRIPT = $_SERVER[&#039;SERVER_NAME&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;DOCUMENT_ROOT&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)

    // example:
    # $DOM_SCRIPT = &#039;mysite.com&#039;;
    # $PATH_SERVER = &#039;/public_html&#039;; 
    /* Btw, you can check this values by uncommenting this: */
    // echo &#039;DOM: &#039;.$DOM_SCRIPT.&#039; - PATH: &#039;.$PATH_SERVER;

// FTP MODE //
/* Use this if you want to upload the files through ftp php (http://php.net/ftp). This is handly when your server config don&#039;t
   allow to upload files without CHMOD 777, like almost all the cPanel. Using this, you can forget the CHMOD ;) */
$use_ftp = false; // true: Uses ftp to upload files - false: Upload without ftp.
$ftp_host = $DOM_SCRIPT; // Change this if your ftp host is not the same as your mysite.com -- example: $ftp_host = &#039;ftp.mysite.com&#039;;
$ftp_user = &#039;&#039;; // valid username.
$ftp_pass = &#039;&#039;; // Valid password.
// NOTICE: FTP user must have access to the script folder.


///////////////////////////////
/// DO NOT TOUCH BELOW THIS ///
///////////////////////////////

// PATH //
/* Uhhh.. Can&#039;t touch this!. */
$path = dirname($_SERVER[&#039;PHP_SELF&#039;]);
if (strlen($path)&gt;1) { 
    define(&#039;PATH_SCRIPT&#039;, $path.&#039;/&#039;);
} else {
    define(&#039;PATH_SCRIPT&#039;, $path);
}

// URL //
/* Uhhh... Uhhh.. Can&#039;t touch this!. */
define(&#039;URL_SCRIPT&#039;, &#039;http://&#039;.$DOM_SCRIPT.PATH_SCRIPT);

?&gt;</code></pre></div><br /><p>solo de bo alterar esta parte el ftp no?</p><div class="codebox"><pre><code>  Chevereto - Script de hosting de imagenes
  Nightly Build 1.7 (29/10/2009)
  http://www.chevereto.com/

  Released under the GPL 2.0
  Copyright (C) 2008 by Rodolfo Berrios
  &lt;inbox at rodolfoberrios dot com&gt;

  ----------------------------------------- */

// Language //
define(&#039;LANG&#039;, &#039;en&#039;); // en - English | es - Español | fa - Farsi | fr - Français | nl - Dutch | cn - ZH-CN (Chinese)

define(&#039;APP_NAME&#039;, &#039;Demo Chevereto&#039;); // Your image hosting name
define(&#039;TAG_LINE&#039;, &#039;Image Hosting&#039;); // Your tagline (for doctitles and logo)

// Folders //
/* If you change this, you also must change the folders name. */
define(&#039;DIR_UP&#039;,&#039;up/&#039;);
define(&#039;DIR_IM&#039;,&#039;images/&#039;); // Change this to have something like /X/filename.jpg - where &quot;X/&quot; is the folder name. 
define(&#039;DIR_WORKING&#039;,DIR_UP.&#039;working/&#039;);
define(&#039;DIR_TEMP&#039;,DIR_UP.&#039;temp/&#039;);
define(&#039;DIR_TH&#039;,&#039;thumbs/&#039;);

// Min-Max values -&gt; php.ini rules the nation... //
$max_mb = &#039;2&#039;; // Max. image size (Mbytes)
$max_by = $max_mb*1048576; // (bytes)
$max_name = &#039;10&#039;; // Max. file name lenght.

// Thumbs //
$mini_ancho = &#039;150&#039;; // Thumb width (pixels)
$mini_alto = &#039;150&#039;; // Thumb height (pixels)

// Resize //
$lowres = &#039;16&#039;; // Min. resize value (pixels)
$higres = &#039;1280&#039;; // Max. resize value (pixels)

// Options //
$lim_act = true; // true: Allows uploading just for your domain - false: Allows upload from anywhere (post from another website)
$debug_mode = true; // false: Debug OFF - true: Debug ON.
$cut_url = true; // true: Short URLs (TinyURL tr.im etc.) - false: normal url (http://mysite.com/images/image.jpg).
$cut_url_service = &#039;tinyurl&#039;; // tinyurl
$cut_url_user = true; // If $cut_url = true -&gt; true: Allows your users to cut their urls (preference) - false: Users can&#039;t choose to cut or not.
$allow_over_resize = false; // true: Allows over resize images - false: Don&#039;t allow over resize.


///////////////////////////////////////////////////////////////////
///// DO NOT EDIT BELOW THIS - (do it if the script can&#039;t run) ////
///////////////////////////////////////////////////////////////////

// SERVER ///
/* We get this values with $_SERVER. If your server doesn&#039;t resolve this values The script will not work.
   If the script doesn&#039;t work, you must change this values to be like values in the comments (see the exaple below) */

$DOM_SCRIPT = $_SERVER[&#039;SERVER_NAME&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;DOCUMENT_ROOT&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)

    // example:
    # $DOM_SCRIPT = &#039;mysite.com&#039;;
    # $PATH_SERVER = &#039;/public_html&#039;; 
    /* Btw, you can check this values by uncommenting this: */
    // echo &#039;DOM: &#039;.$DOM_SCRIPT.&#039; - PATH: &#039;.$PATH_SERVER;</code></pre></div><p>esta parte que es exactamente</p><div class="codebox"><pre><code>$PATH_SERVER = $_SERVER[&#039;DOCUMENT_ROOT&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)</code></pre></div><p>espero su respuesta</p>]]></description>
			<author><![CDATA[null@example.com (callter)]]></author>
			<pubDate>Tue, 02 Mar 2010 01:56:40 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2333.html#p2333</guid>
		</item>
		<item>
			<title><![CDATA[Re: problema de instalacion]]></title>
			<link>http://chevereto.com/forums/post2332.html#p2332</link>
			<description><![CDATA[<p>A. Do not use the ftp connection, it&#039;s bugged. chmod the working dir and images dir to 775 or 777<br />B. Read this: <a href="http://chevereto.com/foro/topic467-english-faq.html">http://chevereto.com/foro/topic467-english-faq.html</a> The bit about invalid dom.</p>]]></description>
			<author><![CDATA[null@example.com (gamerlv)]]></author>
			<pubDate>Mon, 01 Mar 2010 15:00:59 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2332.html#p2332</guid>
		</item>
		<item>
			<title><![CDATA[problema de instalacion]]></title>
			<link>http://chevereto.com/forums/post2331.html#p2331</link>
			<description><![CDATA[<p>por mas que modifico el archivo config.php no logro hacerlo bien <img src="http://chevereto.com/forums/img/smilies/sad.png" width="15" height="15" alt="sad" /></p><p>por favor alguien que me diera la solucion...dejo aqui&nbsp; como lo he configurado hasta ahora<br /></p><div class="codebox"><pre><code>&lt;?

/* -----------------------------------------

  Chevereto - Script de hosting de imagenes
  Nightly Build 1.7 (29/10/2009)
  http://www.chevereto.com/

  Released under the GPL 2.0
  Copyright (C) 2008 by Rodolfo Berrios
  &lt;inbox at rodolfoberrios dot com&gt;

  ----------------------------------------- */

// Language //
define(&#039;LANG&#039;, &#039;en&#039;); // en - English | es - Español | fa - Farsi | fr - Français | nl - Dutch | cn - ZH-CN (Chinese)

define(&#039;APP_NAME&#039;, &#039;darkorbitea&#039;); // Your image hosting name
define(&#039;TAG_LINE&#039;, &#039;Image Hosting&#039;); // Your tagline (for doctitles and logo)

// Folders //
/* If you change this, you also must change the folders name. */
define(&#039;DIR_UP&#039;,&#039;up/&#039;);
define(&#039;DIR_IM&#039;,&#039;images/&#039;); // Change this to have something like /X/filename.jpg - where &quot;X/&quot; is the folder name. 
define(&#039;DIR_WORKING&#039;,DIR_UP.&#039;working/&#039;);
define(&#039;DIR_TEMP&#039;,DIR_UP.&#039;temp/&#039;);
define(&#039;DIR_TH&#039;,&#039;thumbs/&#039;);

// Min-Max values -&gt; php.ini rules the nation... //
$max_mb = &#039;2&#039;; // Max. image size (Mbytes)
$max_by = $max_mb*1048576; // (bytes)
$max_name = &#039;10&#039;; // Max. file name lenght.

// Thumbs //
$mini_ancho = &#039;150&#039;; // Thumb width (pixels)
$mini_alto = &#039;150&#039;; // Thumb height (pixels)

// Resize //
$lowres = &#039;16&#039;; // Min. resize value (pixels)
$higres = &#039;1280&#039;; // Max. resize value (pixels)

// Options //
$lim_act = true; // true: Allows uploading just for your domain - false: Allows upload from anywhere (post from another website)
$debug_mode = true; // false: Debug OFF - true: Debug ON.
$cut_url = true; // true: Short URLs (TinyURL tr.im etc.) - false: normal url (http://darkorbitea.com/images/image.jpg).
$cut_url_service = &#039;tinyurl&#039;; // tinyurl
$cut_url_user = true; // If $cut_url = true -&gt; true: Allows your users to cut their urls (preference) - false: Users can&#039;t choose to cut or not.
$allow_over_resize = false; // true: Allows over resize images - false: Don&#039;t allow over resize.


///////////////////////////////////////////////////////////////////
///// DO NOT EDIT BELOW THIS - (do it if the script can&#039;t run) ////
///////////////////////////////////////////////////////////////////

// SERVER ///
/* We get this values with $_SERVER. If your server doesn&#039;t resolve this values The script will not work.
   If the script doesn&#039;t work, you must change this values to be like values in the comments (see the exaple below) */

$DOM_SCRIPT = $_SERVER[&#039;darkorbitea.com&#039;]; // --&gt; mysite.com
$PATH_SERVER = $_SERVER[&#039;/public_html/upload/Upload&#039;]; // --&gt; /public_html (pssst.. NO ENDING SLASH!)

    // example:
    # $DOM_SCRIPT = &#039;darkorbitea.com&#039;;
    # $PATH_SERVER = &#039;/public_html/upload/Upload&#039;; 
    /* Btw, you can check this values by uncommenting this: */
    // echo &#039;DOM: &#039;.$DOM_SCRIPT.&#039; - PATH: &#039;.$PATH_SERVER;

// FTP MODE //
/* Use this if you want to upload the files through ftp php (70.86.83.218). This is handly when your server config don&#039;t
   allow to upload files without CHMOD 777, like almost all the cPanel. Using this, you can forget the CHMOD ;) */
$use_ftp = true; // true: Uses ftp to upload files - false: Upload without ftp.
$ftp_host = &#039;70.86.83.218.darkorbitea.com&#039;; // Change this if your ftp host is not the same as your mysite.com -- example: $ftp_host = &#039;ftp.mysite.com&#039;;
$ftp_user = &#039;usuario&#039;; // valid username.
$ftp_pass = &#039;contraseña&#039;; // Valid password.
// NOTICE: FTP user must have access to the script folder.


///////////////////////////////
/// DO NOT TOUCH BELOW THIS ///
///////////////////////////////

// PATH //
/* Uhhh.. Can&#039;t touch this!. */
$path = dirname($_SERVER[&#039;PHP_SELF&#039;]);
if (strlen($path)&gt;1) { 
    define(&#039;PATH_SCRIPT&#039;, $path.&#039;/&#039;);
} else {
    define(&#039;PATH_SCRIPT&#039;, $path);
}

// URL //
/* Uhhh... Uhhh.. Can&#039;t touch this!. */
define(&#039;URL_SCRIPT&#039;, &#039;http://&#039;.$DOM_SCRIPT.PATH_SCRIPT);

?&gt;</code></pre></div><p>el error que me sale es esto:</p><br /><p>Warning: ftp_connect() [function.ftp-connect]: php_network_getaddresses: getaddrinfo failed: Name or service not known in /home/darkorbi/public_html/upload/Upload/engine.php on line 37</p><p>Warning: ftp_login() expects parameter 1 to be resource, boolean given in /home/darkorbi/public_html/upload/Upload/engine.php on line 38<br />Critital error: Wrong FTP values in config.php</p>]]></description>
			<author><![CDATA[null@example.com (callter)]]></author>
			<pubDate>Mon, 01 Mar 2010 10:21:28 +0000</pubDate>
			<guid>http://chevereto.com/forums/post2331.html#p2331</guid>
		</item>
	</channel>
</rss>

