<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Desarrollo Web</title>
	<atom:link href="http://web506.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://web506.wordpress.com</link>
	<description>PHP MySQL Diseño y Desarrollo de Sitios y Aplicaciones Web.</description>
	<lastBuildDate>Thu, 22 Jan 2009 16:05:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='web506.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Desarrollo Web</title>
		<link>http://web506.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://web506.wordpress.com/osd.xml" title="Desarrollo Web" />
	<atom:link rel='hub' href='http://web506.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PHP &#8211; Archivo php.ini</title>
		<link>http://web506.wordpress.com/2009/01/22/php-archivo-phpini/</link>
		<comments>http://web506.wordpress.com/2009/01/22/php-archivo-phpini/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 16:05:11 +0000</pubDate>
		<dc:creator>web506</dc:creator>
				<category><![CDATA[CPanel]]></category>
		<category><![CDATA[PHP & MySQL]]></category>
		<category><![CDATA[php.ini]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=253</guid>
		<description><![CDATA[Este es un archivo php.ini que se sube al servidor para configurar el php. Esto es muy util para el Cpanel. Si necesitan el archivo esta adjunto a este post. En mi caso lo utilice para aumentar la memoria PHP memory_limit to 96M Espero les sirva [PHP] ;;;;;;;;;;; ; WARNING ; ;;;;;;;;;;; ; This is the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=253&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Este es un archivo <strong>php.ini</strong> que se sube al servidor para <strong>configurar el php</strong>. Esto es muy util para el Cpanel. Si necesitan el archivo esta adjunto a este post. En mi caso lo utilice para aumentar la memoria <strong>PHP memory_limit to 96M</strong></p>
<p>Espero les sirva</p>
<p><span id="more-253"></span></p>
<pre>[PHP]

;;;;;;;;;;;
; WARNING ;
;;;;;;;;;;;
; This is the default settings file for new PHP installations.
; By default, PHP installs itself with a configuration suitable for
; development purposes, and *NOT* for production purposes.
; For several security-oriented considerations that should be taken
; before going online with your site, please consult php.ini-recommended
; and http://php.net/manual/en/security.php.

;;;;;;;;;;;;;;;;;;;
; About this file ;
;;;;;;;;;;;;;;;;;;;
; This file controls many aspects of PHP's behavior.  In order for PHP to
; read it, it must be named 'php.ini'.  PHP looks for it in the current
; working directory, in the path designated by the environment variable
; PHPRC, and in the path that was defined in compile time (in that order).
; Under Windows, the compile-time path is the Windows directory.  The
; path in which the php.ini file is looked for can be overridden using
; the -c argument in command line mode.
;
; The syntax of the file is extremely simple.  Whitespace and Lines
; beginning with a semicolon are silently ignored (as you probably guessed).
; Section headers (e.g. [Foo]) are also silently ignored, even though
; they might mean something in the future.
;
; Directives are specified using the following syntax:
; directive = value
; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
;
; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
; (e.g. E_ALL &amp; ~E_NOTICE), or a quoted string ("foo").
;
; Expressions in the INI file are limited to bitwise operators and parentheses:
; |        bitwise OR
; &amp;        bitwise AND
; ~        bitwise NOT
; !        boolean NOT
;
; Boolean flags can be turned on using the values 1, On, True or Yes.
; They can be turned off using the values 0, Off, False or No.
;
; An empty string can be denoted by simply not writing anything after the equal
; sign, or by using the None keyword:
;
;  foo =         ; sets foo to an empty string
;  foo = none    ; sets foo to an empty string
;  foo = "none"  ; sets foo to the string 'none'
;
; If you use constants in your value, and these constants belong to a
; dynamically loaded extension (either a PHP extension or a Zend extension),
; you may only use these constants *after* the line that loads the extension.
;
; All the values in the php.ini-dist file correspond to the builtin
; defaults (that is, if no php.ini is used, or if you delete these lines,
; the builtin defaults will be identical).

;;;;;;;;;;;;;;;;;;;;
; Language Options ;
;;;;;;;;;;;;;;;;;;;;

; Enable the PHP scripting language engine under Apache.
engine = On

; Allow the &lt;? tag.  Otherwise, only &lt;?php and &lt;script&gt; tags are recognized.
; NOTE: Using short tags should be avoided when developing applications or
; libraries that are meant for redistribution, or deployment on PHP
; servers which are not under your control, because short tags may not
; be supported on the target server. For portable, redistributable code,
; be sure not to use short tags.
short_open_tag = On

; Allow ASP-style &lt;% %&gt; tags.
asp_tags = Off

; The number of significant digits displayed in floating point numbers.
precision    =  12

; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
y2k_compliance = On

; Output buffering allows you to send header lines (including cookies) even
; after you send body content, at the price of slowing PHP's output layer a
; bit.  You can enable output buffering during runtime by calling the output
; buffering functions.  You can also enable output buffering for all files by
; setting this directive to On.  If you wish to limit the size of the buffer
; to a certain size - you can use a maximum number of bytes instead of 'On', as
; a value for this directive (e.g., output_buffering=4096).
output_buffering = Off

; You can redirect all of the output of your scripts to a function.  For
; example, if you set output_handler to "mb_output_handler", character
; encoding will be transparently converted to the specified encoding.
; Setting any output handler automatically turns on output buffering.
; Note: People who wrote portable scripts should not depend on this ini
;       directive. Instead, explicitly set the output handler using ob_start().
;       Using this ini directive may cause problems unless you know what script
;       is doing.
; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
;       and you cannot use both "ob_gzhandler" and "zlib.output_compression".
;output_handler =

; Transparent output compression using the zlib library
; Valid values for this option are 'off', 'on', or a specific buffer size
; to be used for compression (default is 4KB)
; Note: Resulting chunk size may vary due to nature of compression. PHP
;       outputs chunks that are few hundreds bytes each as a result of
;       compression. If you prefer a larger chunk size for better
;       performance, enable output_buffering in addition.
; Note: You need to use zlib.output_handler instead of the standard
;       output_handler, or otherwise the output will be corrupted.
zlib.output_compression = Off

; You cannot specify additional output handlers if zlib.output_compression
; is activated here. This setting does the same as output_handler but in
; a different order.
;zlib.output_handler =

; Implicit flush tells PHP to tell the output layer to flush itself
; automatically after every output block.  This is equivalent to calling the
; PHP function flush() after each and every call to print() or echo() and each
; and every HTML block.  Turning this option on has serious performance
; implications and is generally recommended for debugging purposes only.
implicit_flush = Off

; The unserialize callback function will be called (with the undefined class'
; name as parameter), if the unserializer finds an undefined class
; which should be instanciated.
; A warning appears if the specified function is not defined, or if the
; function doesn't include/implement the missing class.
; So only set this entry, if you really want to implement such a
; callback-function.
unserialize_callback_func=

; When floats &amp; doubles are serialized store serialize_precision significant
; digits after the floating point. The default value ensures that when floats
; are decoded with unserialize, the data will remain the same.
serialize_precision = 100

; Whether to enable the ability to force arguments to be passed by reference
; at function call time.  This method is deprecated and is likely to be
; unsupported in future versions of PHP/Zend.  The encouraged method of
; specifying which arguments should be passed by reference is in the function
; declaration.  You're encouraged to try and turn this option Off and make
; sure your scripts work properly with it in order to ensure they will work
; with future versions of the language (you will receive a warning each time
; you use this feature, and the argument will be passed by value instead of by
; reference).
allow_call_time_pass_reference = On

; Safe Mode
;
safe_mode = Off

; By default, Safe Mode does a UID compare check when
; opening files. If you want to relax this to a GID compare,
; then turn on safe_mode_gid.
safe_mode_gid = Off

; When safe_mode is on, UID/GID checks are bypassed when
; including files from this directory and its subdirectories.
; (directory must also be in include_path or full path must
; be used when including)
safe_mode_include_dir =								

; When safe_mode is on, only executables located in the safe_mode_exec_dir
; will be allowed to be executed via the exec family of functions.
safe_mode_exec_dir =

; Setting certain environment variables may be a potential security breach.
; This directive contains a comma-delimited list of prefixes.  In Safe Mode,
; the user may only alter environment variables whose names begin with the
; prefixes supplied here.  By default, users will only be able to set
; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
;
; Note:  If this directive is empty, PHP will let the user modify ANY
; environment variable!
safe_mode_allowed_env_vars = PHP_

; This directive contains a comma-delimited list of environment variables that
; the end user won't be able to change using putenv().  These variables will be
; protected even if safe_mode_allowed_env_vars is set to allow to change them.
safe_mode_protected_env_vars = LD_LIBRARY_PATH

; open_basedir, if set, limits all file operations to the defined directory
; and below.  This directive makes most sense if used in a per-directory
; or per-virtualhost web server configuration file. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
;open_basedir =

; This directive allows you to disable certain functions for security reasons.
; It receives a comma-delimited list of function names. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
disable_functions =

; This directive allows you to disable certain classes for security reasons.
; It receives a comma-delimited list of class names. This directive is
; *NOT* affected by whether Safe Mode is turned On or Off.
disable_classes =

; Colors for Syntax Highlighting mode.  Anything that's acceptable in
; &lt;font color="??????"&gt; would work.
;highlight.string  = #DD0000
;highlight.comment = #FF9900
;highlight.keyword = #007700
;highlight.bg      = #FFFFFF
;highlight.default = #0000BB
;highlight.html    = #000000

;
; Misc
;
; Decides whether PHP may expose the fact that it is installed on the server
; (e.g. by adding its signature to the Web server header).  It is no security
; threat in any way, but it makes it possible to determine whether you use PHP
; on your server or not.
expose_php = On

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 30     ; Maximum execution time of each script, in seconds
max_input_time = 60	; Maximum amount of time each script may spend parsing request data
memory_limit = 32M      ; Maximum amount of memory a script may consume (32MB)

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Error handling and logging ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

; error_reporting is a bit-field.  Or each number up to get desired error
; reporting level
; E_ALL             - All errors and warnings
; E_ERROR           - fatal run-time errors
; E_WARNING         - run-time warnings (non-fatal errors)
; E_PARSE           - compile-time parse errors
; E_NOTICE          - run-time notices (these are warnings which often result
;                     from a bug in your code, but it's possible that it was
;                     intentional (e.g., using an uninitialized variable and
;                     relying on the fact it's automatically initialized to an
;                     empty string)
; E_CORE_ERROR      - fatal errors that occur during PHP's initial startup
; E_CORE_WARNING    - warnings (non-fatal errors) that occur during PHP's
;                     initial startup
; E_COMPILE_ERROR   - fatal compile-time errors
; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
; E_USER_ERROR      - user-generated error message
; E_USER_WARNING    - user-generated warning message
; E_USER_NOTICE     - user-generated notice message
;
; Examples:
;
;   - Show all errors, except for notices
;
;error_reporting = E_ALL &amp; ~E_NOTICE
;
;   - Show only errors
;
;error_reporting = E_COMPILE_ERROR|E_ERROR|E_CORE_ERROR
;
;   - Show all errors except for notices
;
error_reporting  =  E_ALL &amp; ~E_NOTICE

; Print out errors (as a part of the output).  For production web sites,
; you're strongly encouraged to turn this feature off, and use error logging
; instead (see below).  Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = On

; Even when display_errors is on, errors that occur during PHP's startup
; sequence are not displayed.  It's strongly recommended to keep
; display_startup_errors off, except for when debugging.
display_startup_errors = Off

; Log errors into a log file (server-specific log, stderr, or error_log (below))
; As stated above, you're strongly advised to use error logging in place of
; error displaying on production web sites.
log_errors = On                  ;

; Set maximum length of log_errors. In error_log information about the source is
; added. The default is 1024 and 0 allows to not apply any maximum length at all.
log_errors = On                  ;

; Do not log repeated messages. Repeated errors must occur in same file on same
; line until ignore_repeated_source is set true.
ignore_repeated_errors = Off

; Ignore source of message when ignoring repeated messages. When this setting
; is On you will not log errors with repeated messages from different files or
; sourcelines.
ignore_repeated_source = Off

; If this parameter is set to Off, then memory leaks will not be shown (on
; stdout or in the log). This has only effect in a debug compile, and if
; error reporting includes E_WARNING in the allowed list
report_memleaks = On

; Store the last error/warning message in $php_errormsg (boolean).
track_errors = Off

; Disable the inclusion of HTML tags in error messages.
;html_errors = Off

; If html_errors is set On PHP produces clickable error messages that direct
; to a page describing the error or function causing the error in detail.
; You can download a copy of the PHP manual from http://www.php.net/docs.php
; and change docref_root to the base URL of your local copy including the
; leading '/'. You must also specify the file extension being used including
; the dot.
;docref_root = "/phpmanual/"
;docref_ext = .html

; String to output before an error message.
;error_prepend_string = "&lt;font color=ff0000&gt;"

; String to output after an error message.
;error_append_string = "&lt;/font&gt;"

; Log errors to specified file.
error_log = error_log                  ;

; Log errors to syslog (Event Log on NT, not valid in Windows 95).
error_log = error_log                  ;

;;;;;;;;;;;;;;;;;
; Data Handling ;
;;;;;;;;;;;;;;;;;
;
; Note - track_vars is ALWAYS enabled as of PHP 4.0.3

; The separator used in PHP generated URLs to separate arguments.
; Default is "&amp;".
;arg_separator.output = "&amp;"

; List of separator(s) used by PHP to parse input URLs into variables.
; Default is "&amp;".
; NOTE: Every character in this directive is considered as separator!
;arg_separator.input = ";&amp;"

; This directive describes the order in which PHP registers GET, POST, Cookie,
; Environment and Built-in variables (G, P, C, E &amp; S respectively, often
; referred to as EGPCS or GPC).  Registration is done from left to right, newer
; values override older values.
variables_order = "EGPCS"

; Whether or not to register the EGPCS variables as global variables.  You may
; want to turn this off if you don't want to clutter your scripts' global scope
; with user data.  This makes most sense when coupled with track_vars - in which
; case you can access all of the GPC variables through the $HTTP_*_VARS[],
; variables.
;
; You should do your best to write your scripts so that they do not require
; register_globals to be on;  Using form variables as globals can easily lead
; to possible security problems, if the code is not very well thought of.
register_globals = Off

; This directive tells PHP whether to declare the argv&amp;argc variables (that
; would contain the GET information).  If you don't use these variables, you
; should turn it off for increased performance.
register_argc_argv = On

; Maximum size of POST data that PHP will accept.
post_max_size = 8M

; This directive is deprecated.  Use variables_order instead.
gpc_order = "GPC"

; Magic quotes
;

; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = On

; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off    

; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off

; Automatically add files before or after any PHP document.
auto_prepend_file =
auto_append_file =

; As of 4.0b4, PHP always outputs a character encoding by default in
; the Content-type: header.  To disable sending of the charset, simply
; set it to be empty.
;
; PHP's built-in default is text/html
default_mimetype = "text/html"
;default_charset = "iso-8859-1"

; Always populate the $HTTP_RAW_POST_DATA variable.
;always_populate_raw_post_data = On

;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;

; UNIX: "/path1:/path2"
include_path = ".:/usr/lib/php:/usr/local/lib/php"   ;
;
; Windows: "\path1;\path2"
include_path = ".:/usr/lib/php:/usr/local/lib/php"   ;

; The root of the PHP pages, used only if nonempty.
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
; if you are running php as a CGI under any web server (other than IIS)
; see documentation for security issues.  The alternate is to use the
; cgi.force_redirect configuration below
doc_root =

; The directory under which PHP opens the script using /~username used only
; if nonempty.
user_dir =

; Directory in which the loadable extensions (modules) reside.
extension_dir = "/usr/local/lib/php/extensions/no-debug-non-zts-20020429"

; Whether or not to enable the dl() function.  The dl() function does NOT work
; properly in multithreaded servers, such as IIS or Zeus, and is automatically
; disabled on them.
enable_dl = On

; cgi.force_redirect is necessary to provide security running PHP as a CGI under
; most web servers.  Left undefined, PHP turns this on by default.  You can
; turn it off here AT YOUR OWN RISK
; **You CAN safely turn this off for IIS, in fact, you MUST.**
; cgi.force_redirect = 1

; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
; every request.
; cgi.nph = 1

; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
; will look for to know it is OK to continue execution.  Setting this variable MAY
; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
; cgi.redirect_status_env = ;

; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
; this to 1 will cause PHP CGI to fix it's paths to conform to the spec.  A setting
; of zero causes PHP to behave as before.  Default is zero.  You should fix your scripts
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
; cgi.fix_pathinfo=0

; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
; security tokens of the calling client.  This allows IIS to define the
; security context that the request runs under.  mod_fastcgi under Apache
; does not currently support this feature (03/17/2002)
; Set to 1 if running under IIS.  Default is zero.
; fastcgi.impersonate = 1;

; cgi.rfc2616_headers configuration option tells PHP what type of headers to
; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
; is supported by Apache. When this option is set to 1 PHP will send
; RFC2616 compliant header.
; Default is zero.
;cgi.rfc2616_headers = 0 

;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M

;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;

; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
allow_url_fopen = On

; Define the anonymous ftp password (your email address)
;from="john@doe.com"

; Define the User-Agent string
; user_agent="PHP"

; Default timeout for socket based streams (seconds)
default_socket_timeout = 60

; If your scripts have to deal with files from Macintosh systems,
; or you are running on a Mac and need to deal with files from
; unix or win32 systems, setting this flag will cause PHP to
; automatically detect the EOL character in those files so that
; fgets() and file() will work regardless of the source of the file.
; auto_detect_line_endings = Off

;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
;;;;;;;;;;;;;;;;;;;;;;
;
; If you wish to have an extension loaded automatically, use the following
; syntax:
;
;   extension=modulename.extension
;
; For example, on Windows:
;
;   extension=msql.dll
;
; ... or under UNIX:
;
;   extension=msql.so
;
; Note that it should be the name of the module only; no directory information
; needs to go here.  Specify the location of the extension with the
; extension_dir directive above.

;Windows Extensions
;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
;
;extension=php_bz2.dll
;extension=php_cpdf.dll
;extension=php_crack.dll
;extension=php_curl.dll
;extension=php_db.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_dbx.dll
;extension=php_domxml.dll
;extension=php_exif.dll
;extension=php_fdf.dll
;extension=php_filepro.dll
;extension=php_gd2.dll
;extension=php_gettext.dll
;extension=php_hyperwave.dll
;extension=php_iconv.dll
;extension=php_ifx.dll
;extension=php_iisfunc.dll
;extension=php_imap.dll
;extension=php_interbase.dll
;extension=php_java.dll
;extension=php_ldap.dll
;extension=php_mbstring.dll
;extension=php_mcrypt.dll
;extension=php_mhash.dll
;extension=php_mime_magic.dll
;extension=php_ming.dll
;extension=php_mssql.dll
;extension=php_msql.dll
;extension=php_oci8.dll
;extension=php_openssl.dll
;extension=php_oracle.dll
;extension=php_pdf.dll
;extension=php_pgsql.dll
;extension=php_printer.dll
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_sockets.dll
;extension=php_sybase_ct.dll
;extension=php_w32api.dll
;extension=php_xmlrpc.dll
;extension=php_xslt.dll
;extension=php_yaz.dll
;extension=php_zip.dll

;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;

[Syslog]
; Whether or not to define the various syslog variables (e.g. $LOG_PID,
; $LOG_CRON, etc.).  Turning it off is a good idea performance-wise.  In
; runtime, you can define these variables by calling define_syslog_variables().
define_syslog_variables  = Off

[mail function]
; For Win32 only.
;SMTP = localhost                  ;
smtp_port = 25

; For Win32 only.
;sendmail_from = me@localhost.com             ;

; For Unix only.  You may supply arguments as well (default: "sendmail -t -i").
sendmail_path = /usr/sbin/sendmail -t -i              ;

[Java]
;java.class.path = .\php_java.jar
;java.home = c:\jdk
;java.library = c:\jdk\jre\bin\hotspot\jvm.dll
;java.library.path = .\

[SQL]
sql.safe_mode = Off

[ODBC]
;odbc.default_db    =  Not yet implemented
;odbc.default_user  =  Not yet implemented
;odbc.default_pw    =  Not yet implemented

; Allow or prevent persistent links.
odbc.allow_persistent = On

; Check that a connection is still valid before reuse.
odbc.check_persistent = On

; Maximum number of persistent links.  -1 means no limit.
odbc.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
odbc.max_links = -1  

; Handling of LONG fields.  Returns number of bytes to variables.  0 means
; passthru.
odbc.defaultlrl = 4096  

; Handling of binary data.  0 means passthru, 1 return as is, 2 convert to char.
; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
; of uodbc.defaultlrl and uodbc.defaultbinmode
odbc.defaultbinmode = 1  

[MySQL]
; Allow or prevent persistent links.
mysql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
mysql.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
mysql.max_links = -1

; Default port number for mysql_connect().  If unset, mysql_connect() will use
; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
; compile-time value defined MYSQL_PORT (in that order).  Win32 will only look
; at MYSQL_PORT.
mysql.default_port =

; Default socket name for local MySQL connects.  If empty, uses the built-in
; MySQL defaults.
mysql.default_socket =

; Default host for mysql_connect() (doesn't apply in safe mode).
mysql.default_host =

; Default user for mysql_connect() (doesn't apply in safe mode).
mysql.default_user =

; Default password for mysql_connect() (doesn't apply in safe mode).
; Note that this is generally a *bad* idea to store passwords in this file.
; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
; and reveal this password!  And of course, any users with read access to this
; file will be able to reveal the password as well.
mysql.default_password =

; Maximum time (in seconds) for connect timeout. -1 means no limit
mysql.connect_timeout = 60

; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
; SQL-Errors will be displayed.
mysql.trace_mode = Off

[mSQL]
; Allow or prevent persistent links.
msql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
msql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
msql.max_links = -1

[PostgresSQL]
; Allow or prevent persistent links.
pgsql.allow_persistent = On

; Detect broken persistent links always with pg_pconnect(). Need a little overhead.
pgsql.auto_reset_persistent = Off 

; Maximum number of persistent links.  -1 means no limit.
pgsql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
pgsql.max_links = -1

; Ignore PostgreSQL backends Notice message or not.
pgsql.ignore_notice = 0

; Log PostgreSQL backends Noitce message or not.
; Unless pgsql.ignore_notice=0, module cannot log notice message.
pgsql.log_notice = 0

[Sybase]
; Allow or prevent persistent links.
sybase.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
sybase.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
sybase.max_links = -1

;sybase.interface_file = "/usr/sybase/interfaces"

; Minimum error severity to display.
sybase.min_error_severity = 10

; Minimum message severity to display.
sybase.min_message_severity = 10

; Compatability mode with old versions of PHP 3.0.
; If on, this will cause PHP to automatically assign types to results according
; to their Sybase type, instead of treating them all as strings.  This
; compatibility mode will probably not stay around forever, so try applying
; whatever necessary changes to your code, and turn it off.
sybase.compatability_mode = Off

[Sybase-CT]
; Allow or prevent persistent links.
sybct.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
sybct.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
sybct.max_links = -1

; Minimum server message severity to display.
sybct.min_server_severity = 10

; Minimum client message severity to display.
sybct.min_client_severity = 10

[dbx]
; returned column names can be converted for compatibility reasons
; possible values for dbx.colnames_case are
; "unchanged" (default, if not set)
; "lowercase"
; "uppercase"
; the recommended default is either upper- or lowercase, but
; unchanged is currently set for backwards compatibility
dbx.colnames_case = "unchanged"

[bcmath]
; Number of decimal digits for all bcmath functions.
bcmath.scale = 0

[browscap]
;browscap = extra/browscap.ini

[Informix]
; Default host for ifx_connect() (doesn't apply in safe mode).
ifx.default_host =

; Default user for ifx_connect() (doesn't apply in safe mode).
ifx.default_user =

; Default password for ifx_connect() (doesn't apply in safe mode).
ifx.default_password =

; Allow or prevent persistent links.
ifx.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
ifx.max_persistent = -1

; Maximum number of links (persistent + non-persistent).  -1 means no limit.
ifx.max_links = -1

; If on, select statements return the contents of a text blob instead of its id.
ifx.textasvarchar = 0

; If on, select statements return the contents of a byte blob instead of its id.
ifx.byteasvarchar = 0

; Trailing blanks are stripped from fixed-length char columns.  May help the
; life of Informix SE users.
ifx.charasvarchar = 0

; If on, the contents of text and byte blobs are dumped to a file instead of
; keeping them in memory.
ifx.blobinfile = 0

; NULL's are returned as empty strings, unless this is set to 1.  In that case,
; NULL's are returned as string 'NULL'.
ifx.nullformat = 0

[Session]
; Handler used to store/retrieve data.
session.save_handler = files

; Argument passed to save_handler.  In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
; As of PHP 4.0.1, you can define the path as:
;     session.save_path = "N;/path"
; where N is an integer.  Instead of storing all the session files in
; /path, what this will do is use subdirectories N-levels deep, and
; store the session data in those directories.  This is useful if you
; or your OS have problems with lots of files in one directory, and is
; a more efficient layout for servers that handle lots of sessions.
; NOTE 1: PHP will not create this directory structure automatically.
;         You can use the script in the ext/session dir for that purpose.
; NOTE 2: See the section on garbage collection below if you choose to
;         use subdirectories for session storage
;session.save_path = /tmp

; Whether to use cookies.
session.use_cookies = 1

; This option enables administrators to make their users invulnerable to
; attacks which involve passing session ids in URLs; defaults to 0.
; session.use_only_cookies = 1

; Name of the session (used as cookie name).
session.name = PHPSESSID

; Initialize session on request startup.
session.auto_start = 0

; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0

; The path for which the cookie is valid.
session.cookie_path = /

; The domain for which the cookie is valid.
session.cookie_domain =

; Handler used to serialize data.  php is the standard serializer of PHP.
session.serialize_handler = php

; Define the probability that the 'garbage collection' process is started
; on every session initialization.
; The probability is calculated by using gc_probability/gc_divisor,
; e.g. 1/100 means there is a 1% chance that the GC process starts
; on each request.

session.gc_probability = 1
session.gc_divisor     = 100

; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 1440

; NOTE: If you are using the subdirectory option for storing session files
;       (see session.save_path above), then garbage collection does *not*
;       happen automatically.  You will need to do your own garbage
;       collection through a shell script, cron entry, or some other method.
;       For example, the following script would is the equivalent of
;       setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
;          cd /path/to/sessions; find -cmin +24 | xargs rm

; PHP 4.2 and less have an undocumented feature/bug that allows you to
; to initialize a session variable in the global scope, albeit register_globals
; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
; You can disable the feature and the warning separately. At this time,
; the warning is only displayed, if bug_compat_42 is enabled.

session.bug_compat_42 = 1
session.bug_compat_warn = 1

; Check HTTP Referer to invalidate externally stored URLs containing ids.
; HTTP_REFERER has to contain this substring for the session to be
; considered as valid.
session.referer_check =

; How many bytes to read from the file.
session.entropy_length = 0

; Specified here to create the session id.
session.entropy_file =

;session.entropy_length = 16

;session.entropy_file = /dev/urandom

; Set to {nocache,private,public,} to determine HTTP caching aspects
; or leave this empty to avoid sending anti-caching headers.
session.cache_limiter = nocache

; Document expires after n minutes.
session.cache_expire = 180

; trans sid support is disabled by default.
; Use of trans sid may risk your users security.
; Use this option with caution.
; - User may send URL contains active session ID
;   to other person via. email/irc/etc.
; - URL that contains active session ID may be stored
;   in publically accessible computer.
; - User may access your site with the same session ID
;   always using URL stored in browser's history or bookmarks.
session.use_trans_sid = 0

; The URL rewriter will look for URLs in a defined set of HTML tags.
; form/fieldset are special; if you include them here, the rewriter will
; add a hidden &lt;input&gt; field with the info which is otherwise appended
; to URLs.  If you want XHTML conformity, remove the form entry.
; Note that all valid entries require a "=", even if no value follows.
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="

[MSSQL]
; Allow or prevent persistent links.
mssql.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
mssql.max_persistent = -1

; Maximum number of links (persistent+non persistent).  -1 means no limit.
mssql.max_links = -1

; Minimum error severity to display.
mssql.min_error_severity = 10

; Minimum message severity to display.
mssql.min_message_severity = 10

; Compatability mode with old versions of PHP 3.0.
mssql.compatability_mode = Off

; Connect timeout
;mssql.connect_timeout = 5

; Query timeout
;mssql.timeout = 60

; Valid range 0 - 2147483647.  Default = 4096.
;mssql.textlimit = 4096

; Valid range 0 - 2147483647.  Default = 4096.
;mssql.textsize = 4096

; Limits the number of records in each batch.  0 = all records in one batch.
;mssql.batchsize = 0

; Specify how datetime and datetim4 columns are returned
; On =&gt; Returns data converted to SQL server settings
; Off =&gt; Returns values as YYYY-MM-DD hh:mm:ss
;mssql.datetimeconvert = On

; Use NT authentication when connecting to the server
mssql.secure_connection = Off

; Specify max number of processes. Default = 25
;mssql.max_procs = 25

[Assertion]
; Assert(expr); active by default.
;assert.active = On

; Issue a PHP warning for each failed assertion.
;assert.warning = On

; Don't bail out by default.
;assert.bail = Off

; User-function to be called if an assertion fails.
;assert.callback = 0

; Eval the expression with current error_reporting().  Set to true if you want
; error_reporting(0) around the eval().
;assert.quiet_eval = 0

[Ingres II]
; Allow or prevent persistent links.
ingres.allow_persistent = On

; Maximum number of persistent links.  -1 means no limit.
ingres.max_persistent = -1

; Maximum number of links, including persistents.  -1 means no limit.
ingres.max_links = -1

; Default database (format: [node_id::]dbname[/srv_class]).
ingres.default_database =

; Default user.
ingres.default_user =

; Default password.
ingres.default_password =

[Verisign Payflow Pro]
; Default Payflow Pro server.
pfpro.defaulthost = "test-payflow.verisign.com"

; Default port to connect to.
pfpro.defaultport = 443

; Default timeout in seconds.
pfpro.defaulttimeout = 30

; Default proxy IP address (if required).
;pfpro.proxyaddress =

; Default proxy port.
;pfpro.proxyport =

; Default proxy logon.
;pfpro.proxylogon =

; Default proxy password.
;pfpro.proxypassword =

[com]
; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
;com.typelib_file =
; allow Distributed-COM calls
;com.allow_dcom = true
; autoregister constants of a components typlib on com_load()
;com.autoregister_typelib = true
; register constants casesensitive
;com.autoregister_casesensitive = false
; show warnings on duplicate constat registrations
;com.autoregister_verbose = true

[Printer]
;printer.default_printer = ""

[mbstring]
; language for internal character representation.
;mbstring.language = Japanese

; internal/script encoding.
; Some encoding cannot work as internal encoding.
; (e.g. SJIS, BIG5, ISO-2022-*)
;mbstring.internal_encoding = EUC-JP

; http input encoding.
;mbstring.http_input = auto

; http output encoding. mb_output_handler must be
; registered as output buffer to function
;mbstring.http_output = SJIS

; enable automatic encoding translation accoding to
; mbstring.internal_encoding setting. Input chars are
; converted to internal encoding by setting this to On.
; Note: Do _not_ use automatic encoding translation for
;       portable libs/applications.
;mbstring.encoding_translation = Off

; automatic encoding detection order.
; auto means
;mbstring.detect_order = auto

; substitute_character used when character cannot be converted
; one from another
;mbstring.substitute_character = none;

; overload(replace) single byte functions by mbstring functions.
; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
; etc. Possible values are 0,1,2,4 or combination of them.
; For example, 7 for overload everything.
; 0: No overload
; 1: Overload mail() function
; 2: Overload str*() functions
; 4: Overload ereg*() functions
;mbstring.func_overload = 0

[FrontBase]
;fbsql.allow_persistent = On
;fbsql.autocommit = On
;fbsql.default_database =
;fbsql.default_database_password =
;fbsql.default_host =
;fbsql.default_password =
;fbsql.default_user = "_SYSTEM"
;fbsql.generate_warnings = Off
;fbsql.max_connections = 128
;fbsql.max_links = 128
;fbsql.max_persistent = -1
;fbsql.max_results = 128
;fbsql.batchSize = 1000

[Crack]
; Modify the setting below to match the directory location of the cracklib
; dictionary files.  Include the base filename, but not the file extension.
; crack.default_dictionary = "c:\php\lib\cracklib_dict"

[exif]
; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
; With mbstring support this will automatically be converted into the encoding
; given by corresponding encode setting. When empty mbstring.internal_encoding
; is used. For the decode settings you can distinguish between motorola and
; intel byte order. A decode setting cannot be empty.
;exif.encode_unicode = ISO-8859-15
;exif.decode_unicode_motorola = UCS-2BE
;exif.decode_unicode_intel    = UCS-2LE
;exif.encode_jis =
;exif.decode_jis_motorola = JIS
;exif.decode_jis_intel    = JIS

; Local Variables:
; tab-width: 4
; End:

[Zend]
zend_extension_manager.optimizer=/usr/local/Zend/lib/Optimizer-3.2.2
zend_extension_manager.optimizer_ts=/usr/local/Zend/lib/Optimizer_TS-3.2.2
zend_optimizer.version=3.2.2
zend_extension=/usr/local/Zend/lib/ZendExtensionManager.so
zend_extension_ts=/usr/local/Zend/lib/ZendExtensionManager_TS.so</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/253/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/253/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/253/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=253&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2009/01/22/php-archivo-phpini/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f03f2520adb9d08cab6baa1edc67d4c0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">web506</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP &#8211; Agregar PHP 5 Handler en Cpanel</title>
		<link>http://web506.wordpress.com/2009/01/22/php-agregar-php-5-handler-en-cpanel/</link>
		<comments>http://web506.wordpress.com/2009/01/22/php-agregar-php-5-handler-en-cpanel/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 15:02:02 +0000</pubDate>
		<dc:creator>web506</dc:creator>
				<category><![CDATA[CPanel]]></category>
		<category><![CDATA[PHP & MySQL]]></category>
		<category><![CDATA[php handler]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=251</guid>
		<description><![CDATA[Buenas nuevamente! aca les dejo un pedacito de texto que hara que el Cpanel reconozca el PHP 5, esto es para varios modulos nuevos que solo aceptan de 5 para arriba. Tienen que meter esto en la ultima linea del .HTAccess en el servidor AddHandler application/x-httpd-php5 .php Espero que les sirva!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=251&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Buenas nuevamente! aca les dejo un pedacito de texto que hara que el Cpanel reconozca el PHP 5, esto es para varios modulos nuevos que solo aceptan de 5 para arriba. Tienen que meter esto en la ultima linea del .HTAccess en el servidor</p>
<p><strong>AddHandler application/x-httpd-php5 .php</strong></p>
<p>Espero que les sirva!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=251&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2009/01/22/php-agregar-php-5-handler-en-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f03f2520adb9d08cab6baa1edc67d4c0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">web506</media:title>
		</media:content>
	</item>
		<item>
		<title>Nuevo sitio de Autos Usados</title>
		<link>http://web506.wordpress.com/2008/12/31/nuevo-sitio-de-autos-usados/</link>
		<comments>http://web506.wordpress.com/2008/12/31/nuevo-sitio-de-autos-usados/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 16:07:14 +0000</pubDate>
		<dc:creator>web506</dc:creator>
				<category><![CDATA[Proyectos Publicados]]></category>
		<category><![CDATA[Proyectos]]></category>
		<category><![CDATA[Recomendados]]></category>
		<category><![CDATA[Websites]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=244</guid>
		<description><![CDATA[Queriamos mostrarles uin excelente proyecto trabajado por nuestra gente. Es un sitio donde los usuarios pueden colocar sus autos para ponerlos en venta o compradores bucar el auto que buscan, ademas pueden afiliarse las agencias y tener su espacio propio, el sitio es muy recomendado, espero que ustedes lo recomienden tambien autos usados se llama [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=244&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Queriamos mostrarles uin excelente proyecto trabajado por nuestra gente. Es un sitio donde los usuarios pueden colocar sus autos para ponerlos en venta o compradores bucar el auto que buscan, ademas pueden afiliarse las agencias y tener su espacio propio, el sitio es muy recomendado, espero que ustedes lo recomienden tambien <a title="Autos Usados Honduras" href="http://www.autocarros506.com" target="_blank">autos usados</a> se llama <a title="Autos Usados Costa Rica" href="http://www.autocarros506.com" target="_blank">autocarros506.com</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/244/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/244/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/244/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=244&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2008/12/31/nuevo-sitio-de-autos-usados/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f03f2520adb9d08cab6baa1edc67d4c0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">web506</media:title>
		</media:content>
	</item>
		<item>
		<title>Como usar texto con imagen de relleno</title>
		<link>http://web506.wordpress.com/2008/10/20/240/</link>
		<comments>http://web506.wordpress.com/2008/10/20/240/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 21:50:51 +0000</pubDate>
		<dc:creator>kabarcacr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=240</guid>
		<description><![CDATA[En este tutorial de Adobe Photoshop CS3, vamos a aprender a colocar una imagen o una foto dentro de un texto, algo muy útil y fácil de hacer. Primer paso: Abrimos la imagen y la recortamos para hacerla más angosta con la herramienta recortar, luego duplicamos la capa, Menú Capa &#62; Duplicar capa o Ctrl [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=240&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="justify">En este tutorial de Adobe Photoshop CS3, vamos a aprender a colocar una imagen o una foto dentro de un texto, algo muy útil y fácil de hacer.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image001.jpg" alt="" width="500" height="375" /></p>
<p align="justify"><strong>Primer paso: </strong> Abrimos la imagen y la recortamos para hacerla más angosta con la herramienta recortar, luego duplicamos la capa, Menú Capa &gt; Duplicar capa o Ctrl + J. El nombre de la nueva capa es Capa1.</p>
<p> <span id="more-240"></span></p>
<p align="justify"><strong>Segundo paso:</strong> Ahora vamos a crear una nueva capa en medio de las dos, normalmente cuando hacemos esto la capa queda sobre las anteriores. Para evitarlo nos ubicamos sobre la Capa1 y presionamos Ctrl en Windows, Comando en MAC y hacemos clic en crear una capa nueva de la paleta de capas.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image003.jpg" alt="" width="209" height="236" /></p>
<p align="justify"><strong>Tercer paso:</strong> Pintamos la capa  creada de blanco, para ello vamos al menú Edición  &gt; Rellenar y en la ventana que aparece seleccionamos en usar “Blanco”.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image004.jpg" alt="" width="410" height="253" /></p>
<p align="justify">Hasta el momento parece que no hubiera sucedido nada, pero si se fijan en la paleta de capas se darán cuenta que el color de la Capa 2 ahora es blanco.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image005.jpg" alt="" width="212" height="236" /></p>
<p align="justify"><strong>Cuarto paso:</strong> Seleccionamos la Capa 1 para que el texto que vamos a escribir quede por encima de esta capa y con la herramienta de texto seleccionada, la T en la paleta de herramientas escribimos algo acorde con la foto.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image006.jpg" alt="" width="36" height="96" /></p>
<p align="justify">En la parte superior aparecen las propiedades de la herramienta texto que dejamos como se ve en la imagen siguiente. Como tipo de fuente se puede usar Arial Black o Britannic Bold.</p>
<p align="justify"><img src="http://www.creativastore.com/sp/618/image007.jpg" alt="" width="698" height="33" /></p>
<p align="justify"><strong>Quinto paso: </strong> Ahora presionamos D para que se establezcan los colores por defecto, negro y blanco, luego presione X para que el blanco sea color frontal.</p>
<p align="justify"><strong>Sexto paso:</strong> Escribimos el texto y presionamos la tecla enter.</p>
<p align="center"><img src="http://www.creativastore.com/sp/618/image009.jpg" alt="" width="500" height="286" /></p>
<p align="justify"><strong>Séptimo paso</strong>: Ahora vamos a transformar el texto para hacerlo más grande. Con la capa de texto seleccionada damos clic en el menú Edición  &gt; Transformación libre o presionamos Ctrl T y lo ampliamos.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image010.jpg" alt="" width="501" height="286" /></p>
<p align="justify"><strong>Octavo paso:</strong> Arrastramos la capa de texto debajo de  Capa 1 y sobre Capa 2. Como puede ver el texto desaparecerá de su vista, pero en realidad está oculto debajo de la Capa 1.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image011.jpg" alt="" width="210" height="237" /></p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image012.jpg" alt="" width="210" height="238" /></p>
<p align="justify"><strong>Noveno paso:</strong> Para crear la ilusión de que la imagen está dentro del texto, debemos   crear una “<strong>Mascara de Recorte</strong>”. Seleccionamos nuevamente   Capa 1 y vamos al menú Capa &gt; Crear mascara de recorte.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image013.jpg" alt="" width="500" height="285" /></p>
<p align="justify"><strong>Decimo paso:</strong> Si lo deseamos podemos agregar una sobra interior.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image015.jpg" alt="" width="217" height="280" /></p>
<p>Voy a dejar la opacidad en 60% y el   Ángulo en 120 Grados.</p>
<p align="center">
<p><img src="http://www.creativastore.com/sp/618/image016.jpg" alt="" width="335" height="174" /></p>
<p align="center"><img src="http://www.creativastore.com/sp/618/image017.jpg" alt="" width="500" height="285" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/240/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/240/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/240/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=240&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2008/10/20/240/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ca934790428c412f9979fc32293ce3c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kabarcacr</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/618/image001.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image003.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image004.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image005.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image006.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image007.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image009.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image010.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image011.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image012.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image013.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image015.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image016.jpg" medium="image" />

		<media:content url="http://www.creativastore.com/sp/618/image017.jpg" medium="image" />
	</item>
		<item>
		<title>Que esperar del nuevo Photoshop CS4</title>
		<link>http://web506.wordpress.com/2008/10/20/que-esperar-del-nuevo-photoshop-cs4/</link>
		<comments>http://web506.wordpress.com/2008/10/20/que-esperar-del-nuevo-photoshop-cs4/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 21:44:33 +0000</pubDate>
		<dc:creator>kabarcacr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=237</guid>
		<description><![CDATA[Adobe presenta su nueva serie Creative Suite donde la estrella principal es, obviamente, el Photoshop CS4. Funciones Mejoradas y Nuevas en el Adobe Photoshop CS4 Extended Funciones Mejoradas y Nuevas en el Adobe Photoshop CS4 Extended Pintura y composición en 3D revolucionarias Pinte directamente sobre modelos en 3D; envuelva formas 3D con imágenes 2D; convierta [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=237&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Adobe presenta su nueva serie Creative Suite donde la estrella principal es, obviamente, el Photoshop CS4. Funciones Mejoradas y Nuevas en el Adobe Photoshop CS4 Extended</p>
<div>
<h4>Funciones Mejoradas y Nuevas en el Adobe Photoshop CS4 Extended</h4>
<h4>Pintura y composición en 3D revolucionarias</h4>
<p>Pinte directamente sobre modelos en 3D; envuelva formas 3D con imágenes 2D; convierta los mapas degradados en objetos 3D; añada profundidad a las capas y al texto; obtenga calidad de impresión con el nuevo motor de representación de trazado de rayos; y disfrute de las ventajas que aporta la posibilidad de exportar a los formatos 3D compatibles más habituales.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/pintura-composicion-3d.jpg" alt="Pintura y composición en 3D revolucionarias" width="496" height="260" /></p>
</div>
<h4>Panel de ajustes</h4>
<p>Simplifique el ajuste de imágenes accediendo fácilmente a todas las herramientas que necesita para su ajuste no destructivo, y mejore el color y el tono de sus imágenes. En el nuevo y dinámico panel de ajustes también se incluyen controles de imágenes y una amplia variedad de ajustes preestablecidos.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/panel-de-ajustes.jpg" alt="Panel de Ajustes" width="200" height="150" /></p>
<div>
<h4>Panel de máscaras</h4>
<p>Cree y edite máscaras de forma rápida desde el panel de máscaras. Este panel ofrece todas las herramientas que necesita para crear máscaras basadas en vectores y en píxeles, ajustar la densidad de las máscaras y el calado editables, así como seleccionar fácilmente objetos no contiguos y más.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/panel-de-mascaras.jpg" alt="Panel de máscaras" width="200" height="150" /></p>
<p><span id="more-237"></span></p>
</div>
<div>
<h4>Fusionado de imágenes automático</h4>
<p>Cree fácilmente una sola imagen a partir de una serie de imágenes con puntos focales diferentes mediante el comando Fusionar capas automáticamente, que permite fusionar el color y el sombreado, aumenta la profundidad de campo y corrige automáticamente la distorsión de las viñetas y las lentes.</p>
<h4>Alineación automática de capas</h4>
<p>Cree composiciones más precisas con el comando mejorado Alinear capas automáticamente. Mueva, gire o deforme las capas para alinearlas de manera más precisa que nunca. O utilice la alineación esférica para crear impresionantes panoramas.</p></div>
<div>
<h4>Profundidad de campo ampliada</h4>
<p>Combine varias imágenes de diferente exposición, color y punto focal (con opciones para conservar los tonos y los colores) en una sola imagen de color corregido.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/profundidad-campo.jpg" alt="Profundidad de campo ampliada" width="200" height="150" /></p>
</div>
<div>
<h4>Opciones de impresión más potentes</h4>
<p>Consiga magníficas impresiones con una administración de color superior, mayor integración con modelos de impresoras líderes en el mercado y capacidad para previsualizar áreas de la imagen con colores que se encuentran fuera de la gama. La compatibilidad con la impresión de 16 bits de Mac OS ofrece una mayor profundidad de color y claridad.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/opciones-impresion.jpg" alt="Opciones de impresión más potentes" width="200" height="150" /></p>
</div>
<h4>Integración con otro software de Adobe</h4>
<p>Sea más productivo con la integración mejorada entre Photoshop Extended y otras aplicaciones de Adobe de las que depende, incluido el software Adobe After Effects®, Adobe Premiere® Pro y Adobe Flash Professional.</p>
<div>
<h4>Flujo de trabajo mejorado de Adobe Photoshop Lightroom</h4>
<p>Seleccione varias fotos en Adobe PhotoShop Lightroom® (se vende por separado) y ábralas automáticamente en PhotoShop CS4 para fundirlas en un panorama, una fotografía High Dynamic Range (HDR) o un documento de PhotoShop de varias capas. Y, por último, vuelva sin mayor complicación a Lightroom.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/flujo-trabajo-mejorado.jpg" alt="Flujo de trabajo mejorado de Adobe Photoshop Lightroom" width="200" height="150" /></p>
</div>
<div>
<div>
<h4>Edición de objetos 3D y propiedades</h4>
<p>Edite, mejore y manipule las imágenes 3D en una interfaz optimizada sin cuadros de diálogo. Ajuste la iluminación, las mallas y los materiales. Oriente los objetos fácilmente y coloque la cámara utilizando ejes 3D y un plano de tierra.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/edicion-3d.jpg" alt="Edición de objetos 3D y propiedades" width="200" height="150" /></p>
</div>
<div>
<h4>Rotación fluida del lienzo</h4>
<p>Ahora, sólo tendrá que hacer clic y, de este modo, se girará el lienzo sin problemas para verlo sin distorsiones desde cualquier ángulo. Se acabó el torcer la cabeza mientras pinta.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/rotacion-fluida-lienzo.jpg" alt="Rotación fluida del lienzo" width="200" height="150" /></p>
</div>
<h4>Zoom y acercamiento mejorados</h4>
<p>Vaya fácilmente a cualquier zona de la imagen con las nuevas funciones de zoom y acercamiento, que proporcionan unos resultados excelentes. Mantenga la claridad mientras amplía a píxeles individuales y edite fácilmente con el máximo aumento gracias a la nueva cuadrícula de píxeles.</p>
<div>
<h4>Aplicación de escala basada en el contenido</h4>
<p>Utilice la novedosa y revolucionaria función de aplicación de escala basada en el contenido para recomponer automáticamente una imagen a medida que cambia su tamaño, conservando las áreas vitales de forma inteligente a medida que la imagen se adapta a las nuevas dimensiones. Consiga la imagen perfecta en un paso sin desperdiciar tiempo en recortar y retocar.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/escala-basada-contenido.jpg" alt="Aplicación de escala basada en el contenido" width="200" height="150" /></p>
</div>
<h4>Edición de gráficos en movimiento mejorados</h4>
<p>Edite gráficos en movimiento de forma más eficaz con los nuevos métodos abreviados de una sola tecla; sincronice los efectos visuales con puntos específicos de la pista de audio con los nuevos controles de sincronización; y convierta cualquier objeto 3D en una zona de visualización de vídeo.</p>
<div>
<h4>Procesamiento mejorado de imágenes RAW</h4>
<p>Disfrute de una calidad de conversión superior mientras procesa imágenes RAW con el plugin de Adobe Photoshop Camera Raw 5, líder del sector, que ahora ofrece correcciones en otros idiomas, restauración de las viñetas después de recortarlas, procesamiento de TIFF y JPEG, y es compatible con más de 190 modelos de cámaras.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/mejor-procesamiento-raw.jpg" alt="Procesamiento mejorado de imágenes RAW" width="200" height="150" /></p>
</div>
<div>
<h4>La corrección del color líder del sector</h4>
<p>Disfrute de la corrección de color notablemente mejorada con las herramientas rediseñadas de sobreexposición, subexposición y esponja, que ahora conservan los detalles del color y del tono de forma inteligente.</p>
<p align="center"><img src="http://www.creativastore.com/sp/619/correccion-color.jpg" alt="La corrección del color lider del sector" width="200" height="150" /></p>
</div>
<h4>Opciones de visualización de archivos</h4>
<p>Trabaje fácilmente aun teniendo varios archivos abiertos con la visualización de documentos con fichas o las vistas de n en uno.</p>
<h4>Capacidad de ampliación</h4>
<p>Obtenga y comparta los paneles basados en la tecnología de Adobe Flash® que crean los desarrolladores para realizar las tareas personalizadas. Además, obtenga consejos y trucos de la próspera comunidad mundial de usuarios de PhotoShop mediante el nuevo servicio de ayuda de la comunidad de Adobe.</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/237/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/237/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/237/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=237&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2008/10/20/que-esperar-del-nuevo-photoshop-cs4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ca934790428c412f9979fc32293ce3c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kabarcacr</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/pintura-composicion-3d.jpg" medium="image">
			<media:title type="html">Pintura y composición en 3D revolucionarias</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/panel-de-ajustes.jpg" medium="image">
			<media:title type="html">Panel de Ajustes</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/panel-de-mascaras.jpg" medium="image">
			<media:title type="html">Panel de máscaras</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/profundidad-campo.jpg" medium="image">
			<media:title type="html">Profundidad de campo ampliada</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/opciones-impresion.jpg" medium="image">
			<media:title type="html">Opciones de impresión más potentes</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/flujo-trabajo-mejorado.jpg" medium="image">
			<media:title type="html">Flujo de trabajo mejorado de Adobe Photoshop Lightroom</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/edicion-3d.jpg" medium="image">
			<media:title type="html">Edición de objetos 3D y propiedades</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/rotacion-fluida-lienzo.jpg" medium="image">
			<media:title type="html">Rotación fluida del lienzo</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/escala-basada-contenido.jpg" medium="image">
			<media:title type="html">Aplicación de escala basada en el contenido</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/mejor-procesamiento-raw.jpg" medium="image">
			<media:title type="html">Procesamiento mejorado de imágenes RAW</media:title>
		</media:content>

		<media:content url="http://www.creativastore.com/sp/619/correccion-color.jpg" medium="image">
			<media:title type="html">La corrección del color lider del sector</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP &#8211; Comparaciones</title>
		<link>http://web506.wordpress.com/2008/10/20/php-comparaciones/</link>
		<comments>http://web506.wordpress.com/2008/10/20/php-comparaciones/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 20:40:13 +0000</pubDate>
		<dc:creator>web506</dc:creator>
				<category><![CDATA[PHP & MySQL]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Comparaciones PHP]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=233</guid>
		<description><![CDATA[Los operadores de comparación son usados para comparar valores y así poder tomar decisiones. Operador Nombre Ejemplo Devuelve cierto cuando: == Igual $a == $b $a es igual $b != Distinto $a != $b $a es distinto $b &#60; Menor que $a &#60; $b $a es menor que $b &#62; Mayor que $a &#62; $b [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=233&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Los operadores de comparación son usados para comparar valores y así poder tomar decisiones.</p>
<table border="1" cellspacing="0" cellpadding="5">
<tbody>
<tr>
<td><strong>Operador</strong></td>
<td><strong>Nombre</strong></td>
<td><strong>Ejemplo</strong></td>
<td><strong>Devuelve cierto cuando:</strong></td>
</tr>
<tr>
<td align="center">==</td>
<td>Igual</td>
<td class="codigophp" align="center">$a == $b</td>
<td><span class="codigophp">$a</span> es igual <span class="codigophp">$b</span></td>
</tr>
<tr>
<td align="center">!=</td>
<td>Distinto</td>
<td class="codigophp" align="center">$a != $b</td>
<td><span class="codigophp">$a</span> es distinto <span class="codigophp">$b</span></td>
</tr>
<tr>
<td align="center">&lt;</td>
<td>Menor que</td>
<td class="codigophp" align="center">$a &lt; $b</td>
<td><span class="codigophp">$a</span> es menor que <span class="codigophp">$b</span></td>
</tr>
<tr>
<td align="center">&gt;</td>
<td>Mayor que</td>
<td class="codigophp" align="center">$a &gt; $b</td>
<td><span class="codigophp">$a</span> es mayor que <span class="codigophp">$b</span></td>
</tr>
<tr>
<td align="center">&lt;=</td>
<td>Menor o igual</td>
<td class="codigophp" align="center">$a &lt;= $b</td>
<td><span class="codigophp">$a</span> es menor o igual que <span class="codigophp">$b</span></td>
</tr>
<tr>
<td align="center">&gt;=</td>
<td>Mayor o igual</td>
<td class="codigophp" align="center">$a &gt;= $b</td>
<td><span class="codigophp">$a</span> es mayor o igual que <span class="codigophp">$b</span></td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=233&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2008/10/20/php-comparaciones/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f03f2520adb9d08cab6baa1edc67d4c0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">web506</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP &#8211; Operadores Aritmeticos</title>
		<link>http://web506.wordpress.com/2008/10/20/php-operadores-aritmeticos/</link>
		<comments>http://web506.wordpress.com/2008/10/20/php-operadores-aritmeticos/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 20:38:30 +0000</pubDate>
		<dc:creator>web506</dc:creator>
				<category><![CDATA[PHP & MySQL]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Operadores PHP]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=231</guid>
		<description><![CDATA[Estos son los operadores que se pueden aplicar a las variables y constantes numéricas. Operador Nombre Ejemplo Descripción + Suma 5 + 6 Suma dos números - Resta 7 &#8211; 9 Resta dos números * Multiplicación 6 * 3 Multiplica dos números / División 4 / 8 Divide dos números % Módulo 7 % 2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=231&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Estos son los operadores que se pueden aplicar a las variables y constantes numéricas.</p>
<table style="height:194px;" border="1" cellspacing="0" cellpadding="5" width="485">
<tbody>
<tr>
<td><strong>Operador</strong></td>
<td><strong>Nombre</strong></td>
<td><strong>Ejemplo</strong></td>
<td><strong>Descripción</strong></td>
</tr>
<tr>
<td align="center">+</td>
<td>Suma</td>
<td class="codigophp" align="center">5 + 6</td>
<td>Suma dos números</td>
</tr>
<tr>
<td align="center">-</td>
<td>Resta</td>
<td class="codigophp" align="center">7 &#8211; 9</td>
<td>Resta dos números</td>
</tr>
<tr>
<td align="center">*</td>
<td>Multiplicación</td>
<td class="codigophp" align="center">6 * 3</td>
<td>Multiplica dos números</td>
</tr>
<tr>
<td align="center">/</td>
<td>División</td>
<td class="codigophp" align="center">4 / 8</td>
<td>Divide dos números</td>
</tr>
<tr>
<td align="center">%</td>
<td>Módulo</td>
<td class="codigophp" align="center">7 % 2</td>
<td>Devuelve el resto de dividir ambos números, en este ejemplo el resultado es 1</td>
</tr>
<tr>
<td align="center">++</td>
<td>Suma 1</td>
<td class="codigophp" align="center">$a++</td>
<td>Suma 1 al contenido de una variable.</td>
</tr>
<tr>
<td align="center">&#8211;</td>
<td>Resta 1</td>
<td class="codigophp" align="center">$a&#8211;</td>
<td>Resta 1 al contenido de una variable.</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=231&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2008/10/20/php-operadores-aritmeticos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f03f2520adb9d08cab6baa1edc67d4c0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">web506</media:title>
		</media:content>
	</item>
		<item>
		<title>El uso de las acciones en Photoshop</title>
		<link>http://web506.wordpress.com/2008/10/14/el-uso-de-las-acciones-en-photoshop/</link>
		<comments>http://web506.wordpress.com/2008/10/14/el-uso-de-las-acciones-en-photoshop/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 22:22:44 +0000</pubDate>
		<dc:creator>kabarcacr</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=229</guid>
		<description><![CDATA[¿Dónde están las Acciones Photoshop? Lo primero es identificar donde se encuentran las acciones de Photoshop. Existe una ventana flotante que contiene las acciones, pero es posible que no la veas porque en algún momento la hayas cerrado. Para activarla, entra en el menú Ventana y marca la opción Acciones (Ventana -&#62; Acciones). También puedes [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=229&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>¿Dónde están las Acciones Photoshop?</h2>
<p>Lo primero es identificar donde se encuentran las acciones de Photoshop. Existe una ventana flotante que contiene las acciones, pero es posible que no la veas porque en algún momento la hayas cerrado. Para activarla, entra en el menú Ventana y marca la opción Acciones <strong>(Ventana -&gt; Acciones)</strong>. También puedes hacerlo con la <strong>tecla F9</strong>.</p>
<p>Verás una ventana parecida a esta:</p>
<p><img title="Ventana de Acciones de Photoshop" src="http://www.kuggar.com/dzdn/img/blog/acciones-1.gif" alt="Ventana de Acciones de Photoshop" /><br />
Las acciones se pueden agrupar en Carpetas, y cada acción Photoshop cuenta con uno o varios pasos.</p>
<h2>¿Como se ejecutan las acciones?</h2>
<p>La ventana de acciones cuenta con una <strong>barra de botones</strong> en su parte inferior. Estos botones, por orden, sirven para <strong>Parar</strong>, <strong>Grabar</strong>, <strong>Ejecutar</strong>, <strong>Crear una nueva carpeta</strong> de acciones, <strong>crear una nueva acción</strong>, y <strong>Borrar</strong>.<br />
<img title="Botones de la ventana de Acciones de Photoshop" src="http://www.todovideocamaras.com/dzdn/img/blog/acciones-5.gif" alt="Botones de la ventana de Acciones de Photoshop" /></p>
<p>Se puede borrar un paso, una acción, o una carpeta.</p>
<p>Para <strong>navegar por las acciones</strong>, cada Carpeta o Acción tiene una flecha que apunta hacia la dereecha o hacia abajo. Si apunta hacia la derecha, pinchando sobre la flecha desplegaremos su contenido. <span id="more-229"></span></p>
<p>Para <strong>ejecutar un Acción de Photoshop</strong>, activaremos la acción a ejecutar pinchando con el ratón sobre ella. Cuando una acción está seleccionada, se habilitan los iconos de Guardar y Ejecutar. Pulsando con el puntero del ratón en el icono de Ejecutar, la acción se pondrá en marcha.</p>
<h2>¿Cómo creo mis propias Acciones Photoshop?</h2>
<p>La creación de acciones Photoshop es (casi) tan simple como su ejecución.</p>
<p>Lo primero que debemos hacer es decidir si queremos agruparlas en una carpeta. En nuestro ejemplo, vamos a crear una carpeta para agrupar las acciones que vayamos creando en el blog.</p>
<p>Pulsamos sobre el icono de la carpeta para <strong>crear una nueva agrupación de acciones</strong>. Aparece una ventana emergente que nos pregunta por el nombre que queremos dar a la carpeta. La vamos a llamar &#8220;Acciones dZoom&#8221; (sin las comillas). Al pulsar el botón Aceptar, veremos que se ha creado una nueva carpeta en Acciones que con el nombre de Acciones dZoom.</p>
<p>Antes de crear la acción, vamos a abrir una imagen donde ejecutar la acción para así asegurarnos de que se está realizando apropiadamente. En nuestro ejemplo hemos utilizado la imagen del ejemplo del efecto Velvia.</p>
<p>Ahora vamos a <strong>crear una acción</strong> dentro de la carpeta de acciones que hemos creado. Nos aseguramos de que la carpeta está seleccionada, y pulsamos el botón para crear una nueva acción (el segundo por la derecha).  Nos pedirá un nombre para la acción. Aquí podemos asegurarnos de que estaba seleccionada nuestra carpeta, y si no lo estaba, seleccionarla en la combo con el nombre de &#8220;Conjunto&#8221;. Además, podemos asociar una combinación de teclas a nuestra acción.</p>
<p>Para el ejemplo, vamos a crear una acción que reproduzca los ajustes del efecto Velvia que ya contaramos en otro artículo, en su modalidad suave. Vamos a llamarlo &#8220;Velvia Suave&#8221;.</p>
<p><img title="Botones de la ventana de Acciones de Photoshop" src="http://www.kuggar.com/dzdn/img/blog/acciones-2.gif" alt="Botones de la ventana de Acciones de Photoshop" /></p>
<p>Ejecutamos los comandos correspondientes, y una vez acabado, pulsamos el botón &#8220;Parar&#8221;. Y ya está, ya hemos creado nuestra primera Acción Photoshop.<br />
<img title="Botones de la ventana de Acciones de Photoshop" src="http://www.todovideocamaras.com/dzdn/img/blog/acciones-3.gif" alt="Botones de la ventana de Acciones de Photoshop" /><br />
Para probar que funciona correctamente, basta con abrir una nueva imagen, seleccionar la acción que hemos creado, y ejecutarla. Si todo va bien, se aplicarán los pasos anteriores, pero esta véz mucho más rápido.</p>
<p>Piensa que hemos creado una acción muy sencilla, pero se pueden agrupar pasos más complejos.</p>
<h2>Guardar y cargar las acciones Photoshop en el disco</h2>
<p>Las acciones que creamos en el ordenador quedan almacenadas en Photoshop, pero es posible guardarlas como un fichero independiente. Estos ficheros, con extensíón .ATN en Photoshop CS, nos permiten llevarnos las acciones que hemos creado de un ordenador a otro, así como instalar en Photoshop acciones creadas por otros usuarios. De este modo, podremos descargar de Internet acciones complejas cuyo comportamiento no alcancemos a entender por su complejidad, pero que nos sean de gran utilidad a la hora de realizar los ajustes finales a nuestras fotografías.</p>
<p>Para guardar en disco o cargar acciones en Photoshop, existe un botón un poco escondido en la ventana de acciones.<br />
<img title="Botones de la ventana de Acciones de Photoshop" src="http://www.todovideocamaras.com/dzdn/img/blog/acciones-4.gif" alt="Botones de la ventana de Acciones de Photoshop" /><br />
Pulsando este botón con el ratón, aparece un menú desplegable con varias opciones. Las que nos interesan son<strong> &#8220;Cargar Acciones&#8221;</strong> y <strong>&#8220;Guardar Acciones&#8221;</strong>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/229/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=229&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2008/10/14/el-uso-de-las-acciones-en-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ca934790428c412f9979fc32293ce3c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kabarcacr</media:title>
		</media:content>

		<media:content url="http://www.kuggar.com/dzdn/img/blog/acciones-1.gif" medium="image">
			<media:title type="html">Ventana de Acciones de Photoshop</media:title>
		</media:content>

		<media:content url="http://www.todovideocamaras.com/dzdn/img/blog/acciones-5.gif" medium="image">
			<media:title type="html">Botones de la ventana de Acciones de Photoshop</media:title>
		</media:content>

		<media:content url="http://www.kuggar.com/dzdn/img/blog/acciones-2.gif" medium="image">
			<media:title type="html">Botones de la ventana de Acciones de Photoshop</media:title>
		</media:content>

		<media:content url="http://www.todovideocamaras.com/dzdn/img/blog/acciones-3.gif" medium="image">
			<media:title type="html">Botones de la ventana de Acciones de Photoshop</media:title>
		</media:content>

		<media:content url="http://www.todovideocamaras.com/dzdn/img/blog/acciones-4.gif" medium="image">
			<media:title type="html">Botones de la ventana de Acciones de Photoshop</media:title>
		</media:content>
	</item>
		<item>
		<title>Imágenes para la Web: Formatos de Gráficos</title>
		<link>http://web506.wordpress.com/2008/10/14/imagenes-para-la-web-formatos-de-graficos/</link>
		<comments>http://web506.wordpress.com/2008/10/14/imagenes-para-la-web-formatos-de-graficos/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 22:07:27 +0000</pubDate>
		<dc:creator>kabarcacr</dc:creator>
				<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=227</guid>
		<description><![CDATA[Dada la velocidad en la descarga de información se hace imprescindible la compresión de las imágenes. Los distintos formatos funcionan mejor con unas imágenes que con otras. ¿Cuál funciona mejor con qué imágenes?. JPEG Esquema de compresión de Joint Photographic Experts Group (JPEG). Utiliza 24 bits de colores (true color). Con JPG se puede decidir [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=227&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span class="parrafoindentado">Dada la velocidad en la descarga de información se hace imprescindible la compresión de las imágenes. Los distintos formatos funcionan mejor con unas imágenes que con otras. ¿Cuál funciona mejor con qué imágenes?.</span></p>
<p class="titulo"><strong>JPEG</strong></p>
<p><span class="parrafoindentado">Esquema de compresión de Joint            Photographic Experts Group (JPEG). Utiliza 24 bits de colores (true            color). Con JPG se puede decidir la calidad de la imagen, de 0 a 100,            y por tanto, el tamaño del archivo resultante. Por supuesto,            a menor tamaño del fichero, menor calidad de la imagen. Utiliza            una sofisticada técnica matemática para la compresión            llamada transformación separada del coseno (DCT) con pérdida            de información. Es capaz de conseguir asombrosos tamaños            de ficheros, incluso una décima parte del tamaño original.            DCT elimina información innecesaria según es comprimida.            JPG es la técnica ideal para fotografias, imágenes complejas            y con muchos colores, bordes suaves, degradados de colores y un largo            etcétera.</span> <span id="more-227"></span></p>
<p><img src="http://unclic.net/iarticulos/3a.jpg" alt="Ejemplo de imagen comprimida con JPG calidad 85,11,5kb" width="192" height="144" /> <img src="http://unclic.net/iarticulos/3b.jpg" alt="Ejemplo de imagen comprimida con JPG calidad 60, 5.4kb" width="192" height="144" /> <img src="http://unclic.net/iarticulos/3c.jpg" alt="Ejemplo de imagen comprimida con JPG calidad 30, 2.6kb" width="192" height="144" /><br />
Calidad 85% 11,5Kb                       Calidad 60% 5,4Kb                           Calidad 30% 2,6Kb</p>
<p>Esta compresión produce unos efectos en los bordes de las figuras            que aparecen en las imágenes y que denotan la baja calidad de            éstas. A este fenómeno se le suele llamar &#8220;ruido            jpg&#8221; y se hace más visible en imágenes pequeñas            y con bordes afilados.</p>
<p><img src="http://unclic.net/iarticulos/3d.jpg" alt="Ejemplo de imagen comprimida con JPG con sus efectos secundarios" width="150" height="150" /> <img src="http://unclic.net/iarticulos/3e.jpg" border="1" alt="Ejemplo de imagen comprimida con JPG con sus efectos secundarios" width="247" height="130" /></p>
<p class="titulo2">Nunca comprimas las imágenes originales</p>
<p>Como ya se mencionó antes, JPG es una técnica de compresión            con pérdida de información. Por ello, las imágenes            originales nunca deberían ser comprimidas, pues al perder calidad            las sucesivas copias, a su vez comprimidas, irán perdiendo más            y más calidad que nunca prodrá ser recuperada y el tamaño            irá aumentando, pues para no perder tanta calidad, comprimiríamos            menos las copias. Salva tus originales en otro formato sin pérdida            de información como PSD o TIFF y utiliza JPG para las imágenes            destinadas a publicación web.</p>
<p class="titulo2"><strong>JPEG vs GIF</strong></p>
<p><img src="http://unclic.net/iarticulos/3f.gif" alt="Ejemplo de imagen comprimida con GIF, 32 colores, 3kb" width="190" height="90" /> <img src="http://unclic.net/iarticulos/3g.jpg" alt="Ejemplo de imagen comprimida con JPG, Calidad Alta, 7.11kb" width="190" height="90" /> <img src="http://unclic.net/iarticulos/3h.jpg" alt="Ejemplo de imagen comprimida con JPG, Calidad Baja, 2.8kb" width="190" height="90" /><br />
GIF 32 colores 3,0KB            JPG            Calidad Alta 7,11KB        JPG Calidad            Baja 2,8KB</p>
<p class="titulo"><strong>GIF</strong></p>
<p>Graphic Interchange Format. GIF es el formato más utilizado            actualmente en el WWW. Utiliza un esquema de compresión de 8            bits (256 colores) como máximo. GIF proporciona nuevas características            desde su lanzamiento en los 80 (CompuServe Information Service) como            transparencia y entramado que lo hacen aún más popular.</p>
<p>GIF utiliza el esquema de compresión Lempel Zev Welch (LZW)            que elimina la ineficiencia a la hora de almacenar información            de colores. El esquema LZW es la mejor opción para comprimir            imágenes con no muchos colores y formas con colores muy homogeneos.            Notesé en los siguientes ejemplos la pérdida de calidad            en la imagen comprimida con jpg.</p>
<p><img src="http://unclic.net/iarticulos/3i.gif" alt="Ejemplo de imagen comprimida con GIF, 8 colores, 4kb" width="150" height="150" /> <img src="http://unclic.net/iarticulos/3j.jpg" alt="Ejemplo de imagen comprimida con JPG, calidad 70%, 6.1kb" width="150" height="150" /><br />
GIF 8 colores 4kb        JPG Calidad            Media 70%, 6.1</p>
<p>Sin embargo, para imágenes complejas con muchos colores y texturas            pierde toda su efectividad.</p>
<p><img src="http://unclic.net/iarticulos/3k.gif" alt="Ejemplo imagen GIF, fotografia compleja 256 colores, 16.8kb" width="150" height="150" /> <img src="http://unclic.net/iarticulos/3l.jpg" alt="imagen jpg, fotografia compleja, calidad 40, 6,9kb" width="150" height="150" /><br />
GIF 256 colores, 16.8kb JPG calidad 40, 6.9kb</p>
<p>Como ya se ha podido observar, se puede mejorar la eficiencia de LWZ            minimizando el número de colores utilizados en la imagen. Eliminando            colores que no se utilizan en el gráfico, se reduce el tamaño            de éste y no por ello se tiene que perder calidad como ocurre            en JPG. El rango de colores va desde 256 (máximo) a 2 (mínimo).</p>
<p><img src="http://unclic.net/iarticulos/3m.gif" alt="Ejemplo imagen GIF de 16 colores" width="190" height="90" /> <img src="http://unclic.net/iarticulos/3n.gif" alt="los 16 colores usados en la imagen anterior" width="193" height="13" /><br />
GIF 16 colores, 4.9kb<br />
<img src="http://unclic.net/iarticulos/3o.gif" alt="ejemplo imagen con 128 colores" width="190" height="90" /> <img src="http://unclic.net/iarticulos/3p.gif" alt="los 128 colores usados en la imagen anterior" width="193" height="97" /><br />
GIF 128 colores, 12,5kb</p>
<p class="titulo2"><strong>Transparecia</strong></p>
<p>GIF permite decidir que colores quieres que sean transparentes, esto            es especialmente interesante para el web pues permite separar las imágenes            del fondo de página haciendo más sencillas futuras modificaciones.            La selección de un color para transformar éste a transparente,            hace que todos los píxeles de ese color sean transparentes, estén            donde ésten.</p>
<p><img src="http://unclic.net/iarticulos/3q.gif" border="1" alt="ejemplo gif antes de transparencia" width="150" height="113" /> <img src="http://unclic.net/iarticulos/3r.gif" border="1" alt="ejemplo de gif despues de aplicar transparencia" width="150" height="113" /></p>
<p>Sin embargo, utilizar transparencias puede tener algún efecto            no deseado cuando las imágenes poseen la característica            de antialiasing (Photoshop). Al colocar una forma sobre un fondo, herramientas            como Photoshop, introducen unos píxeles entre la forma y el fondo            para suavizar el borde y la junta con el fondo. Cuando decides hacer            este boder transparente, estos píxeles que no tienen el color            de la forma ni el color del fondo, no se hacen transparentes, produciendo            un efecto bastante desagradable al colocar la imagen en una web sobre            otro fondo.</p>
<p><img src="http://unclic.net/iarticulos/3s.gif" border="1" alt="Ejemplo de efectos de antialiasing en GIF transparente" width="304" height="100" /></p>
<p>Evitar estos efectos no es difícil. Simplemente haz que los            colores que van desde el fondo al color de la forma también sean            transparentes o si la forma es texto, que el programa con el que editas            el gráfico no use suavizado del borde.</p>
<p><img src="http://unclic.net/iarticulos/3t.gif" alt="Gif ejemplo de forma sin antialiasing" width="100" height="100" /> <img src="http://unclic.net/iarticulos/3u.gif" border="1" alt="gif ejemplo de texto con transparencias y antialiasing" width="401" height="83" /></p>
<p class="titulo2"><strong>Entrelazado</strong></p>
<p>El entrelazado se refiere a la manera en que los navegadores, que lo            soporten, tienen de cargar las imágenes cuando son descargadas.            Un GIF convencional, sin entrelazado, se carga y muestra, de linea en            linea desde arriba a abajo, mostrando de esta manera la parte de arriba            de la imagen a toda resolución mientras que la parte de abajo            no se muestra hasta no estar acabada la carga. Las imagenes con entrelazado            hace que el navegador muestre, según carga, una imagen previa            a baja resolución y ésta vaya mejorando mientras se completa            la carga, permitiendo al navegante tener una idea de la imagen antes            de que ésta se carge. Esta técnica es interesante en imágenes            GIF de gran tamaño y no es recomendable en imágenes pequeñas            pues añade uno o un par de kb.</p>
<p class="titulo2"><strong>GIF Animados</strong></p>
<p>Varias imágenes GIF pueden ser combinadas para formar un GIF            Animado. GIF permite crear estas animaciones, sin embargo, no aplica            ninguna compresion entre imágenes. Si usas 5 imágenes            de 10 Kb, la imagen resultante será de 50kb</p>
<p><span class="titulo"> <strong>PNG</strong></span></p>
<p>Portable Network Graphic. PNG es la alternativa no comercial de GIF,            nació de un consorcio de desarrolladores de software de gráficos            pues cada desarrollador que permita salvar en formato GIF debe pagar            los derechos de uso del esquema de compresión LWZ propiedad de            CompusServe y Unisys. PNG fue especificamente creado para la Web. Posee            características como transparencia, entrelazado, completo rango            de profundiades de color, corrección automática del valor            gamma según el monitor y permite añadir una pequeña            descripción de la imagen para que los buscadores en Internet            puedan localizarlas.</p>
<p>Sin embargo, apesar de todas las características de PNG, no            todos los navegadores pueden mostrar éstas imágenes y            los que lo hacen, algunos no pueden utilizar todas sus características.            Esperemos que esto cambie y en un futuro, no muy lejano, todos los navegadores            soporten PNG como ahora lo hacen con GIF y JPG.</p>
<p class="titulo"><strong>Recomendaciones</strong></p>
<p>Salva siempre una copia de las imágenes originales en un formato            que no use compresión con pérdida de información,            a toda resolución y tamaño. Es aconsejable salvar todas            las fases de las imágenes generadas para una Web desde el original            a la final a fin de ahorrar tiempo en las modificaciones posteriores            si el formato elegido no se ajusta a las necesidades posteriores, etc.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/227/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/227/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/227/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=227&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2008/10/14/imagenes-para-la-web-formatos-de-graficos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9ca934790428c412f9979fc32293ce3c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kabarcacr</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3a.jpg" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con JPG calidad 85,11,5kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3b.jpg" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con JPG calidad 60, 5.4kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3c.jpg" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con JPG calidad 30, 2.6kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3d.jpg" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con JPG con sus efectos secundarios</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3e.jpg" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con JPG con sus efectos secundarios</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3f.gif" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con GIF, 32 colores, 3kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3g.jpg" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con JPG, Calidad Alta, 7.11kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3h.jpg" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con JPG, Calidad Baja, 2.8kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3i.gif" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con GIF, 8 colores, 4kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3j.jpg" medium="image">
			<media:title type="html">Ejemplo de imagen comprimida con JPG, calidad 70%, 6.1kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3k.gif" medium="image">
			<media:title type="html">Ejemplo imagen GIF, fotografia compleja 256 colores, 16.8kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3l.jpg" medium="image">
			<media:title type="html">imagen jpg, fotografia compleja, calidad 40, 6,9kb</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3m.gif" medium="image">
			<media:title type="html">Ejemplo imagen GIF de 16 colores</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3n.gif" medium="image">
			<media:title type="html">los 16 colores usados en la imagen anterior</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3o.gif" medium="image">
			<media:title type="html">ejemplo imagen con 128 colores</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3p.gif" medium="image">
			<media:title type="html">los 128 colores usados en la imagen anterior</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3q.gif" medium="image">
			<media:title type="html">ejemplo gif antes de transparencia</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3r.gif" medium="image">
			<media:title type="html">ejemplo de gif despues de aplicar transparencia</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3s.gif" medium="image">
			<media:title type="html">Ejemplo de efectos de antialiasing en GIF transparente</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3t.gif" medium="image">
			<media:title type="html">Gif ejemplo de forma sin antialiasing</media:title>
		</media:content>

		<media:content url="http://unclic.net/iarticulos/3u.gif" medium="image">
			<media:title type="html">gif ejemplo de texto con transparencias y antialiasing</media:title>
		</media:content>
	</item>
		<item>
		<title>Dreamweaver &#8211; Identificar y borrar archivos que no se usen.</title>
		<link>http://web506.wordpress.com/2008/10/14/dreamweaver-identificar-y-borrar-archivos-que-no-se-usen/</link>
		<comments>http://web506.wordpress.com/2008/10/14/dreamweaver-identificar-y-borrar-archivos-que-no-se-usen/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 14:57:52 +0000</pubDate>
		<dc:creator>web506</dc:creator>
				<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Administrar Sitio]]></category>

		<guid isPermaLink="false">http://web506.wordpress.com/?p=224</guid>
		<description><![CDATA[Buscar todos esos archivos que no ocupamos en nuestro sitio y borrarlos sería una muy buena forma de mantener el orden en nuestro sitio y servidor. Seleccione Site &#62; Check Links Sitewide.Dreamweaver le muestra los broken links en el panel de resultados. Seleccione Orphaned Files del menu en el Link Checker panel.Dreamweaver muestra los archivos que [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=224&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h1></h1>
<p><!--googleoff: index--> <!-- END PAGE TITLE --> <!--googleon: index--></p>
<div>
<div class="section">
<p>Buscar todos esos archivos que no ocupamos en nuestro sitio y borrarlos sería una muy buena forma de mantener el orden en nuestro sitio y servidor.</p></div>
<ol>
<li class="stepexpand"><span>Seleccione Site &gt; Check Links Sitewide.</span>Dreamweaver le muestra los broken links en el panel de resultados.</li>
<li class="stepexpand"><span>Seleccione Orphaned Files del menu en el Link Checker panel.</span>Dreamweaver muestra los archivos que no tengan incoming links. Esto significa que ningun archivo esta ligado a estos archivos.</li>
<li class="stepexpand"><span>Seleccione los archivos que desea borrar y toque Delete (Windows) o Command+Delete (Macintosh). </span>
<div class="important"><span class="importanttitle">Importante: </span>Aunque ningun archivo linkea a estos archivos, alguno de estos archivos si podrían linkear a otros archivos. Borre con precausión.</div>
</li>
</ol>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/web506.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/web506.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/web506.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/web506.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/web506.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/web506.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/web506.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/web506.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/web506.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/web506.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/web506.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/web506.wordpress.com/224/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/web506.wordpress.com/224/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/web506.wordpress.com/224/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=web506.wordpress.com&amp;blog=4488828&amp;post=224&amp;subd=web506&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://web506.wordpress.com/2008/10/14/dreamweaver-identificar-y-borrar-archivos-que-no-se-usen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f03f2520adb9d08cab6baa1edc67d4c0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">web506</media:title>
		</media:content>
	</item>
	</channel>
</rss>
