<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Chevereto (Forum)]]></title>
	<link rel="self" href="http://chevereto.com/foro/feed-atom.xml"/>
	<updated>2010-03-11T05:13:29Z</updated>
	<generator>PunBB</generator>
	<id>http://chevereto.com/foro/</id>
		<entry>
			<title type="html"><![CDATA[Nighltly Build 1.8]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic484-nighltly-build-18-new-posts.html"/>
			<summary type="html"><![CDATA[<p>ES<br />&nbsp; &nbsp; * Removido el modo FTP<br />&nbsp; &nbsp; * Se corrigen problemas menores.</p><p>EN<br />&nbsp; &nbsp; * FTP mode removed<br />&nbsp; &nbsp; * Minor bugs fixed.</p><p><a href="http://chevereto.com/releases/chevereto_nb1.8.zip">http://chevereto.com/releases/chevereto_nb1.8.zip</a></p>]]></summary>
			<author>
				<name><![CDATA[Rodolfo]]></name>
				<uri>http://chevereto.com/foro/user2.html</uri>
			</author>
			<updated>2010-03-11T05:13:29Z</updated>
			<id>http://chevereto.com/foro/topic484-nighltly-build-18-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[HOW-TO: Fix Chevereto Install Issues with 000webhost! (Maybe others!)]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic483-howto-fix-chevereto-install-issues-with-000webhost-maybe-others-new-posts.html"/>
			<summary type="html"><![CDATA[<p>I will teach you how to fix the issues you have been getting on Chevereto with 000webhost (and maybe others)</p><p>First, I&#039;d like to thank <a href="http://www.elakiri.com/forum/showthread.php?t=254800&amp;page=2">http://www.elakiri.com/forum/showthread &#133; amp;page=2</a> for the information!!!</p><p><strong>1) Download Chevereto from chevereto.com<br />2) Open and connect to your site through FTP<br />3) Upload all the Chevereto files you downloaded to the place you want<br />4) Go to the &quot;config.php&quot; and open/edit it.<br />5) Change</strong> </p><div class="codebox"><pre><code>$PATH_SERVER = $_SERVER[&#039;DOCUMENT_ROOT&#039;];</code></pre></div><p><strong> to</strong> </p><div class="codebox"><pre><code>$PATH_SERVER = &#039;/public_html&#039;;</code></pre></div><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <em>NOTICE: If you are using a subdomain (even a subdomain of a subdomain), you MUST change this from the above!!<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Example: If I have the free site hello.000webhost.com and I want to make images.hello.000webhost.com for Chevereto, I must change </em></p><div class="codebox"><pre><code>$PATH_SERVER = &#039;/public_html&#039;;</code></pre></div><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<em> to</em> </p><div class="codebox"><pre><code>$PATH_SERVER = &#039;/public_html/images&#039;;</code></pre></div><p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; In other words: put PATH_SERVER to your Chevereto ROOT.<strong><br />6) Save, exit, and upload &quot;config.php&quot; back to your server<br />7) Go to the &quot;engine.php&quot; and open/edit it.<br />8) Change </strong></p><div class="codebox"><pre><code>if(!file_exists($PATH_SERVER.&#039;/.htaccess&#039;)) {</code></pre></div><p> <strong>to</strong> </p><div class="codebox"><pre><code>if(!file_exists(&#039;/home/*USERNAME HERE*/public_html/.htaccess&#039;)) {</code></pre></div><p><em><br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; AGAIN: You must put the CORRECT path. The above code is assuming you are uploading Chevereto to ROOT. See above for more details.<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ALSO: Change *USERNAME HERE* to your 000webhost username. Example: a24789320</em></p><p><strong>9) Save, exit, and upload &quot;engine.php&quot; back to your server.<br />10) Access your Chevereto and have fun!!!</strong></p><p>Easy as that!! No FTP mode!! Only change PATH_SERVER and engine.php!!!</p><p>Good luck!!!</p><br /><br /><br /><br /><br /><br /><br /><p>----------------------------------</p><p>Still confused? See my script below:</p><p>I host my Chevereto on <strong>host.<em>NAME</em>.comoj.com</strong> (so keep that in mind when reading my code)</p><p><strong>CONFIG.PHP (THE SIGNIFICANT STUFF)</strong><br /></p><div class="codebox"><pre><code>// 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 = &#039;/public_html/host&#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.</code></pre></div><br /><p><strong>ENGINE.PHP (THE SIGNIFICANT STUFF)</strong><br /></p><div class="codebox"><pre><code>if(!file_exists(&#039;/home/a1726402/public_html/host/.htaccess&#039;)) {</code></pre></div>]]></summary>
			<author>
				<name><![CDATA[cralor]]></name>
				<uri>http://chevereto.com/foro/user776.html</uri>
			</author>
			<updated>2010-03-10T22:10:14Z</updated>
			<id>http://chevereto.com/foro/topic483-howto-fix-chevereto-install-issues-with-000webhost-maybe-others-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Error when trying to upload a picture]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic479-error-when-trying-to-upload-a-picture-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Warning: copy(up/working/fansub stea.png) [function.copy]: failed to open stream: Permission denied in /home/animserv/public_html/img/engine.php&nbsp; on line 334</p><p>Warning: getimagesize(up/working/fansub stea.png) [function.getimagesize]: failed to open stream: No such file or directory in /home/animserv/public_html/img/engine.php on line 385</p><p>Warning: unlink(up/working/fansub stea.png) [function.unlink]: No such file or directory in /home/animserv/public_html/img/engine.php on line 422</p><p>and When I try using the FTP it works but I get this error,</p><p>Warning: ftp_close() expects parameter 1 to be resource, null given in /home/animserv/public_html/img/engine.php on line 725</p><p>It still works tho.</p><p>Regards</p>]]></summary>
			<author>
				<name><![CDATA[gamerlv]]></name>
				<uri>http://chevereto.com/foro/user769.html</uri>
			</author>
			<updated>2010-03-10T14:44:34Z</updated>
			<id>http://chevereto.com/foro/topic479-error-when-trying-to-upload-a-picture-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[jQuery implementation]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic482-jquery-implementation-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Are the Developers familiar with jQuery? a jQuery version would be nice... is a more popular framework... sure you could load prototype and jquery together but it will be hevy and redundant to have this two frameworks running.</p><p>I have an <a href="http://login.thechozenfew.net/">Ajax Authentication System</a> which could be implemented with this script but is based on jQuery...</p>]]></summary>
			<author>
				<name><![CDATA[gamerlv]]></name>
				<uri>http://chevereto.com/foro/user777.html</uri>
			</author>
			<updated>2010-03-10T08:35:27Z</updated>
			<id>http://chevereto.com/foro/topic482-jquery-implementation-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[SEO URL]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic295-seo-url-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Is there a way to remove .jpg .gif .png to that the link will index in google?</p>]]></summary>
			<author>
				<name><![CDATA[Rodolfo]]></name>
				<uri>http://chevereto.com/foro/user494.html</uri>
			</author>
			<updated>2010-03-10T06:48:36Z</updated>
			<id>http://chevereto.com/foro/topic295-seo-url-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[New update soon]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic437-new-update-soon-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Hi there people.</p><p>I&#039;m announcing a few changes in the next release. Mostly of them will help to avoid the &quot;Dom script&quot; or &quot;invalid path&quot; error. Also, the ftp mode will die. FTP mode is a clever idea, but you use <em>chevereto</em> in crappy free host and mostly of them sucks in server config issue... So, that makes you say that chevereto sucks. Btw, this changes will help to mount chevereto in local and Windows environments.</p><p>So, the sacrifice (unix enviroments) will be the need to use chmod IF your php runs without permissions. <em>Windows servers doesn&#039;t have this problem.</em></p><p>There is no multi-upload, and no more langs and bla bla bla. The next release is just to avoid the high volume of installation issues. Please, don&#039;t suggest anything!</p><p>So, you will be able to install chevereto in any crappy host and it will be available this month.</p><p>Regards.</p>]]></summary>
			<author>
				<name><![CDATA[cralor]]></name>
				<uri>http://chevereto.com/foro/user2.html</uri>
			</author>
			<updated>2010-03-09T21:28:20Z</updated>
			<id>http://chevereto.com/foro/topic437-new-update-soon-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[English FAQ]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic467-english-faq-new-posts.html"/>
			<summary type="html"><![CDATA[<p><strong>English FAQ</strong><br />This is just a collection most commonly ask question I found on this forum.</p><p>Q: Does Chevereto support multiple image uploading?<br />A: No, it does not.</p><p>Q: Is Chevereto going to support multiple image uploading?<br />A: It is not on the planing as of right now.</p><p>Q: How do I install Chevereto?<br />A: just get the zip from the site , extract the upload folder and upload it to your site.</p><p><strong>Common Errors and fixes</strong></p><p>Q: I get this error: <em>Critital error: Invalid $PATH_SERVER, edit it manually in config.php</em> What do i do?<br />A: First try putting in &quot;/&quot; If that does not work try putting in /public_html or what the path is ni your FTP program.</p><p>Q: I get the error <em>Invalid file type, allowed JPG, PNG, GIF and BMP</em> or <em>Critital error: Chevereto can&#039;t upload files. Please enable FTP mode in config.php</em><br />A: Make sure your working and image directory are chmoded to 777.</p><p>Q: Remote upload doesn&#039;t seem to work..<br />A: Make sure Curl is installed and active on your server. If it&#039;s not ask your host.</p><p>Q: I get this error: <em>Critital error: Invalid $DOM_SCRIPT, edit it manually in config.php</em> What do i do?<br />A: This usaly means you are running Chevereto on a local server. Here there are 2 thing you can do:<br /></p><ul><li><p>Upload you Chevereto installation to a working server.</p></li><li><p>Use a hack to get it working locally. This should not be used if you are using it on a production server because the check is there for you safety.</p></li></ul><div class="quotebox"><cite>gamerlv wrote:</cite><blockquote><p> it is because it tries to look up in the dns if there&#039;s and address for 127.0.0.1 or in case you use localhost it tries to lookup the ip for localhost. Now since this isn&#039;t in any dns system anywhere it returns an error.<br />To fix this (only when you run it on your server locally) just comment out the lines 59 till 63 in engine.php. Just remember to uncomment it again when moving to a production server.<br />You can also modify it so it checks if your on a local server but that&#039;s easy and if you know php you can do that your self.<br />Either way will make it run on a wamp/xampp server.</p><p>--Gamerlv</p></blockquote></div><p> <em>(Sligthy modified for the FAQ)</em></p><p>Note: Some people seem to mistaken how to fill in the variable $DOM_SCRIPT.<br />This is correct:<br /></p><div class="codebox"><pre><code>$DOM_SCRIPT = &#039;example.com&#039;; // --&gt; yoursite.com</code></pre></div><p>And this is <span style="color: red">wrong:</span><br /></p><div class="codebox"><pre><code>$DOM_SCRIPT = $_SERVER[&#039;example.com&#039;]; // --&gt; yoursite.com</code></pre></div><br /><p>Q: The page doesn&#039;t get rendered right, Why is that?<br />A: If you see &lt;? some text ?&gt; every where on the page it means that php shorthand isn&#039;t enabled on your server.<br />For a wamp server: WAMP icon -&gt; php -&gt; php settings -&gt; Short open tag.<br />For any other server: <br /></p><ul><li><p>open php.ini</p></li><li><p>Find <em>short_open_tag</em></p></li><li><p>Change off to on</p></li></ul><p>If there are any comment or things I forgot please tell and i will add them.</p>]]></summary>
			<author>
				<name><![CDATA[hr software]]></name>
				<uri>http://chevereto.com/foro/user540.html</uri>
			</author>
			<updated>2010-03-09T16:43:45Z</updated>
			<id>http://chevereto.com/foro/topic467-english-faq-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Good News Sharing!!!]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic481-good-news-sharing-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Because of my job’s particularity, I want to convert many movie dialogues to my iPod in order to learn Spanish.<br />The best way I choose to learn the native spanish is from the movie.<br />So I always wander that if I copy all the multi-tracks of the Blu-ray DVD, especially Spanish. <br />Having tried several sharewares, all failed.<br />But several days ago, I was surprised to find free software - WinX HD Video Converter Deluxe, which can maintain all the multi-tracks.<br />I used it to convert “Night at The Museum”, taking only 18 minutes to finish the whole process.<br />Really fast!</p><p><span class="postimg"><img src="http://www.winxdvd.com/hd-video-converter-deluxe/image/screenshot.jpg" alt="http://www.winxdvd.com/hd-video-converter-deluxe/image/screenshot.jpg" /></span></p><p>From it’s website I know the original price is $49.95. I am so lucky for that.</p><p>If you have the same problem, you can also get it:</p><p><a href="http://www.winxdvd.com/hd-video-converter-deluxe/">http://www.winxdvd.com/hd-video-converter-deluxe/</a> </p><br /><br /><p>notice:</p><p>you can only the free WinX HD Video Converter 3.0 during&nbsp; Mar. 1--- Mar. 15.</p><p><a href="http://www.winxdvd.com/giveaway/">http://www.winxdvd.com/giveaway/</a></p>]]></summary>
			<author>
				<name><![CDATA[gamerlv]]></name>
				<uri>http://chevereto.com/foro/user774.html</uri>
			</author>
			<updated>2010-03-09T13:42:41Z</updated>
			<id>http://chevereto.com/foro/topic481-good-news-sharing-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Uploading to a new folder]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic478-uploading-to-a-new-folder-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Hi, has someone is a coder it every day a new folder is created and stored on this day only in that folder with the images?</p>]]></summary>
			<author>
				<name><![CDATA[clafy]]></name>
				<uri>http://chevereto.com/foro/user768.html</uri>
			</author>
			<updated>2010-03-04T00:19:14Z</updated>
			<id>http://chevereto.com/foro/topic478-uploading-to-a-new-folder-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Firefix Extension]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic453-firefix-extension-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Unfortunately the Firefox extension doesn&#039;t work with the new Firefox version 3.6 <img src="http://chevereto.com/foro/img/smilies/sad.png" width="15" height="15" alt="sad" /> The Upload to &#039;host&#039; doesn&#039;t appear when you right click an image.</p>]]></summary>
			<author>
				<name><![CDATA[clafy]]></name>
				<uri>http://chevereto.com/foro/user719.html</uri>
			</author>
			<updated>2010-03-04T00:16:13Z</updated>
			<id>http://chevereto.com/foro/topic453-firefix-extension-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[No toma el subdominio.]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic480-no-toma-el-subdominio-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Bueno, antes de que me saquen a patadas informo que lei todos los th sobre este problema y ninguno lo soluciono... dejo como tengo mi config...</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;es&#039;); // en - English | es - Español | fa - Farsi | fr - Français | nl - Dutch | cn - ZH-CN (Chinese)

define(&#039;APP_NAME&#039;, &#039;Dveloping.com.ar&#039;); // Your image hosting name
define(&#039;TAG_LINE&#039;, &#039;Hosting de Imágenes&#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 = false; // 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 = &#039;img.dveloping.com.ar&#039;; // --&gt; mysite.com
$PATH_SERVER = &#039;/home3/kind/public_html/img&#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 = true; // true: Uses ftp to upload files - false: Upload without ftp.
$ftp_host = &#039;dveloping.com.ar&#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;miuser&#039;; // valid username.
$ftp_pass = &#039;mipassword&#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>Verdaderamente me esta sacando canas verdes, ya no se que hacer :S probe de todo ya... me anda en el directorio del dominio principal (dveloping.com.ar/img) pero no en el subdominio :S ya no se que hacer, puse el ftp y arriba me tira este error ademas</p><div class="quotebox"><blockquote><p>Warning: ftp_close() expects parameter 1 to be resource, null given in /home3/kind/public_html/img/engine.php on line 725</p></blockquote></div><p>Ya lei los archivos de instalacion y todo, en ninguno explica como hacerlo funcionar al 100% con subdominio... por ejemplo, yo con subdominio llegue a hacer que abra la pagina, pero al subir la imagen dice que la sesion no es valida o algo asi.</p>]]></summary>
			<author>
				<name><![CDATA[kind]]></name>
				<uri>http://chevereto.com/foro/user770.html</uri>
			</author>
			<updated>2010-03-03T06:19:57Z</updated>
			<id>http://chevereto.com/foro/topic480-no-toma-el-subdominio-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Firefox Plugin doesn't work!]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic337-firefox-plugin-doesnt-work-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Hi, I had recently tried to create the Firefox Plugin for my site, but the problem is that whenever I try to install the plugin it doesn&#039;t install. Shows up an error, that the Package is Invalid.</p><p>Please tell me how to do it.</p>]]></summary>
			<author>
				<name><![CDATA[xplosion]]></name>
				<uri>http://chevereto.com/foro/user551.html</uri>
			</author>
			<updated>2010-03-02T23:38:05Z</updated>
			<id>http://chevereto.com/foro/topic337-firefox-plugin-doesnt-work-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Critital error: Invalid $DOM_SCRIPT, edit it manually in config.php]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic407-critital-error-invalid-domscript-edit-it-manually-in-configphp-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Hello!<br />I have just download the image host Chevereto but when i upload this on <a href="http://www.xhost.altervista.org/">http://www.xhost.altervista.org/</a> is appared this error:</p><p><strong>Critital error: Invalid $DOM_SCRIPT, edit it manually in config.php</strong></p><p>I have readed the readme.txt and have sobstitueted the PATH_SERVER as was advise on the help guide but the error persist<br />My config.php is:<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;it&#039;); // en - English | it - Italiano | es - Español | fa - Farsi | fr - Français | nl - Dutch | cn - ZH-CN (Chinese)

define(&#039;APP_NAME&#039;, &#039;Image Hosting&#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;200&#039;; // Thumb width (pixels)
$mini_alto = &#039;200&#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 = &#039;xhost.altervista.org&#039;; // --&gt; mysite.com
$PATH_SERVER = &#039;/public_html&#039;; // --&gt; /public_html (pssst.. NO ENDING SLASH!)


// 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;/public_html&#039;);
} else {
    define(&#039;PATH_SCRIPT&#039;, $path);
}

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

?&gt;</code></pre></div>]]></summary>
			<author>
				<name><![CDATA[crazy0man]]></name>
				<uri>http://chevereto.com/foro/user641.html</uri>
			</author>
			<updated>2010-03-02T19:47:26Z</updated>
			<id>http://chevereto.com/foro/topic407-critital-error-invalid-domscript-edit-it-manually-in-configphp-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[GD Extension does not load]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic426-gd-extension-does-not-load-new-posts.html"/>
			<summary type="html"><![CDATA[<p>Hi everyone<br />I have installed chevereto on my server and it worked fine for long but after i have installed another script on the same server i got this message. &quot;Critital error: You must load the GD extension&quot; Any help is welcome. <br />This is my website URL <a href="http://www.readyshare.eu">http://www.readyshare.eu</a></p><p>Thank you.</p>]]></summary>
			<author>
				<name><![CDATA[crazy0man]]></name>
				<uri>http://chevereto.com/foro/user670.html</uri>
			</author>
			<updated>2010-03-02T13:22:16Z</updated>
			<id>http://chevereto.com/foro/topic426-gd-extension-does-not-load-new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[problema de instalacion]]></title>
			<link rel="alternate" href="http://chevereto.com/foro/topic477-problema-de-instalacion-new-posts.html"/>
			<summary type="html"><![CDATA[<p>por mas que modifico el archivo config.php no logro hacerlo bien <img src="http://chevereto.com/foro/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>]]></summary>
			<author>
				<name><![CDATA[callter]]></name>
				<uri>http://chevereto.com/foro/user765.html</uri>
			</author>
			<updated>2010-03-02T07:33:17Z</updated>
			<id>http://chevereto.com/foro/topic477-problema-de-instalacion-new-posts.html</id>
		</entry>
</feed>
