<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6296519212278563040</id><updated>2012-02-16T14:18:59.989-08:00</updated><category term='Php Security'/><category term='Php'/><category term='Search Engine Optimizer'/><category term='Tips Trick'/><title type='text'>Smart Webs</title><subtitle type='html'>Informations of web science</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://smart-webs.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://smart-webs.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Business Internet</name><uri>http://www.blogger.com/profile/07163430825912644893</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6296519212278563040.post-9066923405618076573</id><published>2009-11-25T22:09:00.000-08:00</published><updated>2009-11-25T22:10:31.399-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Php'/><title type='text'>What is new in php 5.3 ?</title><content type='html'>With last week's announcement of RC4, the final release of PHP 5.3 is imminent. So what can we expect in this version? Here I'll outline the biggest and most interesting changes and additions. This is definitely not exhaustive since there are tons of minor changes and improvements in this version, but these are some of the ones I found interesting.&lt;br /&gt;Namespaces&lt;br /&gt;&lt;br /&gt;Namespaces are a way to separate classes and functions to avoid naming collisions. Using namespaces prevents problems with using classes with the same name but different functionality. You can declare a namespace using the namespace keyword. You can also use the use keyword to set the namespace for all future calls to classes or functions without specifying the path each time.&lt;br /&gt;&lt;br /&gt;PHP Manual on Namespaces&lt;br /&gt;MySQL Native Driver&lt;br /&gt;&lt;br /&gt;PHP 5.3 comes with a native MySQL driver designed specifically for PHP called mysqlnd, replacing the external libmysql driver. This should increase performance with MySQL functions.&lt;br /&gt;&lt;br /&gt;PHP Manual on the MySQL Native Driver&lt;br /&gt;Class Constants&lt;br /&gt;&lt;br /&gt;It is now possible to declare constants within the context of a class. You declare constants the same way you declare normal variables, except you use the const keyword.&lt;br /&gt;&lt;br /&gt;PHP Manual on Class Constants&lt;br /&gt;Late Static Bindings&lt;br /&gt;&lt;br /&gt;Late static binding causes static calls to methods within a class to use the latest version of that method if it was overridden. To use this, you use the static keyword instead of self. It's best shown as an example, which you can find at the link below.&lt;br /&gt;&lt;br /&gt;PHP Manual on Late Static Bindings&lt;br /&gt;The goto Operator&lt;br /&gt;&lt;br /&gt;An interesting addition to the PHP language is the goto operator, which allows you to jump to a named section of you code to start executing. You name a section with a label followed by a colon (section:) and you move to it using goto followed by the label (goto section;). This might be useful in some very strange circumstances, but it should probably be avoided.&lt;br /&gt;&lt;br /&gt;PHP Manual on goto&lt;br /&gt;Other Points of Interest&lt;br /&gt;&lt;br /&gt;    * Native support for the math functions: asinh(), acosh(), atanh(), log1p(), and expm1()&lt;br /&gt;    * Pixelation support using the GD imagefilter() function&lt;br /&gt;    * Blowfish and extended DES support for crypt()&lt;br /&gt;    * Deprecated all ereg_ functions (use PCRE preg_ functions instead)&lt;br /&gt;    * SQLite3 support&lt;br /&gt;    * Several new classes and methods&lt;br /&gt;    * Much more...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6296519212278563040-9066923405618076573?l=smart-webs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smart-webs.blogspot.com/feeds/9066923405618076573/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://smart-webs.blogspot.com/2009/11/what-is-new-in-php-53.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/9066923405618076573'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/9066923405618076573'/><link rel='alternate' type='text/html' href='http://smart-webs.blogspot.com/2009/11/what-is-new-in-php-53.html' title='What is new in php 5.3 ?'/><author><name>Business Internet</name><uri>http://www.blogger.com/profile/07163430825912644893</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6296519212278563040.post-3494734223089332249</id><published>2009-11-25T21:53:00.000-08:00</published><updated>2009-11-25T22:00:49.379-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Php Security'/><title type='text'>5 Basic PHP Security Tips</title><content type='html'>Security should be a top concern throughout the development of any PHP web application. There are some very simple measures you can take to protect your application from potential abuse. This post will cover some of the basics of PHP security. For more detailed explanations of good security practices, check out the PHP Security Guide.&lt;br /&gt;&lt;br /&gt;I do not consider myself a PHP security expert, but these are things that every developer should know. Also keep in mind that security is a process and not a result.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;1. Input Filtering&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Assume everything is dirty until proven clean. Filtering all data from external sources is probably the most important security measure you can take. This can be as easy as running some simple built-in functions on your variables.&lt;br /&gt;&lt;br /&gt;When it comes to accepting user input, never directly use anything in $_GET or $_POST. Check each value to make sure it is something expected and assign it to a local variable for use.&lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;// input filtering examples&lt;br /&gt; &lt;br /&gt;// Make sure it is an integer&lt;br /&gt;$integer = intval($_POST['variable_name']);&lt;br /&gt; &lt;br /&gt;// Make it safe to use in a URL&lt;br /&gt;$url_string = urlencode($_POST['variable_name']);&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;You can also check a value against a list of acceptable values. Here are two methods of doing this:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;$page = 'home'; // initialize the variable&lt;br /&gt; &lt;br /&gt;// Check input against a white-list of known options&lt;br /&gt;$valid_options = array();&lt;br /&gt;$valid_options[] = 'home';&lt;br /&gt;$valid_options[] = 'downloads';&lt;br /&gt;$valid_options[] = 'about';&lt;br /&gt; &lt;br /&gt;if(in_array($_GET['page'], $valid_options))&lt;br /&gt;{&lt;br /&gt;   $page = $_GET['page'];&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;// OR this also works&lt;br /&gt;switch($_GET['page'])&lt;br /&gt;{&lt;br /&gt;   case 'home':&lt;br /&gt;   case 'downloads':&lt;br /&gt;   case 'about':&lt;br /&gt;      $page = $_GET['page'];&lt;br /&gt;      break;&lt;br /&gt;}&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;PHP as of version 5.2 provides a set of filtering functions designed just for the purpose of filtering user data. The filter_input() function is used to access a filtered version of input variables. This way you never have to touch the raw input via the $_GET or $_POST arrays.&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;// filter_input examples&lt;br /&gt; &lt;br /&gt;// Make sure it is an integer&lt;br /&gt;$integer = filter_input(INPUT_POST, 'variable_name', FILTER_SANITIZE_NUMBER_INT);&lt;br /&gt; &lt;br /&gt;// Make it safe to use in a URL&lt;br /&gt;$url_string = filter_input(INPUT_POST, 'variable_name', FILTER_SANITIZE_ENCODED);&lt;br /&gt; &lt;br /&gt;// Make sure it is a valid URL&lt;br /&gt;$url = filter_input(INPUT_POST, 'variable_name', FILTER_VALIDATE_URL);&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;2. Output Filtering&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It is also important to filter what comes out of your applications. You want to avoid outputting the wrong characters and breaking the page rendering. This is also important in order to block certain attacks involving JavaScript injected by malicious users. There are a few functions to know for cleaning up text to display to the user:&lt;br /&gt;&lt;br /&gt;    * htmlspecialchars(): Converts special HTML characters to entities&lt;br /&gt;    * htmlentities(): Converts all possible characters to HTML entities&lt;br /&gt;    * strip_tags(): Remove all HTML tags from a string (you can also selectively allow tags using the second optional parameter)&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;$text = '&lt;a href="test"&gt;Test&lt;/a&gt;';&lt;br /&gt;echo htmlspecialchars($text); // &amp;lt;a href=&amp;quot;test&amp;quot;&amp;gt;Test&amp;lt;/a&amp;gt;&lt;br /&gt;echo strip_tags($text); // Test&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;3. Database Queries&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;If your application uses a database to store data, this is another source of potential vulnerabilities. SQL Injection is a very common attack that involves maliciously crafted user input designed to change the logic of a query. This potentially allows the user to run any kind of query or bypass security measures. Stopping it is usually as easy as properly escaping data, or using prepared statements.&lt;br /&gt;&lt;br /&gt;Escape functions:&lt;br /&gt;&lt;br /&gt;    * mysql_real_escape_string(): For use with the mysql_* functions&lt;br /&gt;    * mysqli::escape_string(): For use with the MySQLi extension/class&lt;br /&gt;    * pg_escape_string(): For use with PostgreSQL&lt;br /&gt;    * addslashes(): This is a generic escape function to use only if your database engine does not have a specific function&lt;br /&gt;&lt;br /&gt;Here is an example using each function:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;// $db refers to database connection resource/object&lt;br /&gt;$name = "O'reilly"; // Contains a quote that will break the query&lt;br /&gt; &lt;br /&gt;// MySQL via mysql_*&lt;br /&gt;$safe = mysql_real_escape_string($name, $db);&lt;br /&gt; &lt;br /&gt;// MySQL via MySQLi&lt;br /&gt;$safe = $db-&gt;escape_string($name); // OOP Style&lt;br /&gt;$safe = mysqli_real_escape_string($db, $name); // Procedural Style&lt;br /&gt; &lt;br /&gt;// PostgreSQL&lt;br /&gt;$safe = pg_escape_string($db, $name);&lt;br /&gt; &lt;br /&gt;// Generic (last resourt)&lt;br /&gt;$safe = addslashes($name);&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;4. Hide Your Errors&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;It's never a good idea to show the world your errors. Not only does it make you look bad, it also might give malicious users another clue to help them break your site. You should always have display_errors disabled in a production environment, but continue logging errors with log_errors for your own information.&lt;br /&gt;&lt;br /&gt;These PHP configuration directives are suitable for a production server:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;display_errors 0&lt;br /&gt;log_errors 1&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;5. Use POST for Dangerous Actions&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;There are two common methods used to send data to a PHP application, GET and POST. GET works by adding variables to the end of URL's (eg. http://www.example.com/process.php?action=delete&amp;id=123). POST works by sending variables in the body of the request (normal users will not see them). It is important to carefully consider which method to use for a certain task.&lt;br /&gt;&lt;br /&gt;You should generally stick to POST when you are performing a potentially dangerous action (like deleting something). The reason is that is is much easier to trick a user into accessing a URL with GET parameters than it is to trick them into sending a POST request. Take this example:&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&lt;img src="http://www.example.com/process.php?action=delete&amp;id=123" /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;If a user with an active session on your site visits another web page with the above image tag, the user's browser will quietly send a request to your site telling it to delete record 123.&lt;br /&gt;&lt;br /&gt;Keep in mind that other precautions should also be taken to ensure requests are legitimate under a secure session. It is also easily possible to create a form that does the same as above using a POST request, so don't assume that method is "safe" either. See sections 2 and 4 of the PHP Security Guide for more information on form and session security.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&lt;br /&gt;Conclusion&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;This article is just a general overview of PHP security practices. For more detailed explanations if the topics covered here as well as some not covered, see the PHP Security Guide by the PHP Security Consortium. There are also many other articles and books on the topic that you may be interested in.&lt;br /&gt;&lt;br /&gt;Of course there may be some that disagree with some of the details in this post. Don't hesitate to post a comment if you have any corrections, improvements, or additions!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;this articel from : http://www.ultramegatech.com&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6296519212278563040-3494734223089332249?l=smart-webs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smart-webs.blogspot.com/feeds/3494734223089332249/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://smart-webs.blogspot.com/2009/11/5-basic-php-security-tips.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/3494734223089332249'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/3494734223089332249'/><link rel='alternate' type='text/html' href='http://smart-webs.blogspot.com/2009/11/5-basic-php-security-tips.html' title='5 Basic PHP Security Tips'/><author><name>Business Internet</name><uri>http://www.blogger.com/profile/07163430825912644893</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6296519212278563040.post-8509682422094104755</id><published>2009-11-25T21:48:00.000-08:00</published><updated>2009-11-25T21:49:46.120-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Search Engine Optimizer'/><title type='text'>How Search Engines Work</title><content type='html'>The first basic truth you need to learn about SEO is that search engines are not humans. While this might be obvious for everybody, the differences between how humans and search engines view web pages aren't. Unlike humans, search engines are text-driven. Although technology advances rapidly, search engines are far from intelligent creatures that can feel the beauty of a cool design or enjoy the sounds and movement in movies. Instead, search engines crawl the Web, looking at particular site items (mainly text) to get an idea what a site is about. This brief explanation is not the most precise because as we will see next, search engines perform several activities in order to deliver search results – crawling, indexing, processing, calculating relevancy, and retrieving. &lt;br /&gt;First, search engines crawl the Web to see what is there. This task is performed by e piece of software, called a crawler or a spider (or Googlebot, as is the case with Google). Spiders follow links from one page to another and index everything they find on their way. Having in mind the number of pages on the Web (over 20 billion), it is impossible for a spider to visit a site daily just to see if a new page has appeared or if an existing page has been modified. Sometimes crawlers will not visit your site for a month or two, so during this time your SEO efforts will not be rewarded. But there is nothing you can do about it, so just keep quiet. &lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;What you can do is to check what a crawler sees from your site. As already mentioned, crawlers are not humans and they do not see images, Flash movies, JavaScript, frames, password-protected pages and directories, so if you have tons of these on your site, you'd better run the Spider Simulator below to see if these goodies are viewable by the spider. If they are not viewable, they will not be spidered, not indexed, not processed, etc. - in a word they will be non-existent for search engines. &lt;br /&gt;After a page is crawled, the next step is to index its content. The indexed page is stored in a giant database, from where it can later be retrieved. Essentially, the process of indexing is identifying the words and expressions that best describe the page and assigning the page to particular keywords. For a human it will not be possible to process such amounts of information but generally search engines deal just fine with this task. Sometimes they might not get the meaning of a page right but if you help them by optimizing it, it will be easier for them to classify your pages correctly and for you – to get higher rankings. &lt;br /&gt;When a search request comes, the search engine processes it – i.e. it compares the search string in the search request with the indexed pages in the database. Since it is likely that more than one pages (practically it is millions of pages) contains the search string, the search engine starts calculating the relevancy of each of the pages in its index to the search string. &lt;br /&gt;There are various algorithms to calculate relevancy. Each of these algorithms has different relative weights for common factors like keyword density, links, or metatags. That is why different search engines give different search results pages for the same search string. What is more, it is a known fact that all major search engines, like Yahoo!, Google, MSN, etc. periodically change their algorithms and if you want to keep at the top, you also need to adapt your pages to the latest changes. This is one reason (the other is your competitors) to devote permanent efforts to SEO, if you'd like to be at the top. &lt;br /&gt;The last step in search engines' activity is retrieving the results. Basically, it is nothing more than simply displaying them in the browser – i.e. the endless pages of search results that are sorted from the most relevant to the least relevant sites.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6296519212278563040-8509682422094104755?l=smart-webs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smart-webs.blogspot.com/feeds/8509682422094104755/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://smart-webs.blogspot.com/2009/11/how-search-engines-work.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/8509682422094104755'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/8509682422094104755'/><link rel='alternate' type='text/html' href='http://smart-webs.blogspot.com/2009/11/how-search-engines-work.html' title='How Search Engines Work'/><author><name>Business Internet</name><uri>http://www.blogger.com/profile/07163430825912644893</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6296519212278563040.post-9161204727779880313</id><published>2009-11-25T21:46:00.000-08:00</published><updated>2009-11-25T21:47:12.776-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Search Engine Optimizer'/><title type='text'>What Is SEO</title><content type='html'>Search Engine Optimization (SEO) is often considered the more technical part of Web marketing. This is true because SEO does help in the promotion of sites and at the same time it requires some technical knowledge – at least familiarity with basic HTML. SEO is sometimes also called SEO copyrighting because most of the techniques that are used to promote sites in search engines deal with text. Generally, SEO can be defined as the activity of optimizing Web pages or whole sites in order to make them more search engine-friendly, thus getting higher positions in search results. &lt;br /&gt;One of the basic truths in SEO is that even if you do all the things that are necessary to do, this does not automatically guarantee you top ratings but if you neglect basic rules, this certainly will not go unnoticed. Also, if you set realistic goals – i.e to get into the top 30 results in Google for a particular keyword, rather than be the number one for 10 keywords in 5 search engines, you will feel happier and more satisfied with your results. &lt;br /&gt;&lt;br /&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Although SEO helps to increase the traffic to one's site, SEO is not advertising. Of course, you can be included in paid search results for given keywords but basically the idea behind the SEO techniques is to get top placement because your site is relevant to a particular search term, not because you pay. &lt;br /&gt;SEO can be a 30-minute job or a permanent activity. Sometimes it is enough to do some generic SEO in order to get high in search engines – for instance, if you are a leader for rare keywords, then you do not have a lot to do in order to get decent placement. But in most cases, if you really want to be at the top, you need to pay special attention to SEO and devote significant amounts of time and effort to it. Even if you plan to do some basic SEO, it is essential that you understand how search engines work and which items are most important in SEO.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6296519212278563040-9161204727779880313?l=smart-webs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smart-webs.blogspot.com/feeds/9161204727779880313/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://smart-webs.blogspot.com/2009/11/what-is-seo.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/9161204727779880313'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/9161204727779880313'/><link rel='alternate' type='text/html' href='http://smart-webs.blogspot.com/2009/11/what-is-seo.html' title='What Is SEO'/><author><name>Business Internet</name><uri>http://www.blogger.com/profile/07163430825912644893</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6296519212278563040.post-2816352543812392446</id><published>2009-11-21T00:09:00.000-08:00</published><updated>2009-11-25T21:51:22.398-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips Trick'/><title type='text'>Trik Mudah Percepat Kinerja Firefox</title><content type='html'>Berikut cara mempercepat kinerja Firefox :&lt;br /&gt;1.    Pada Address Bar. Anda harus mengetik “about:config” lalu jalankan dengan cara menekan Enter&lt;br /&gt;2.    Cari ke bawah tulisan “browser.tabs.showSingleWindowsModePrefs ”, lalu atur settingannya menjadi True&lt;br /&gt;3.    Cari lagi tulisan “network.http.pipelining”, lalu atur settingannya menjadi True.&lt;br /&gt;4.    Cari lagi tulisan “network.http.pipelining.maxrequests&amp;rdq uo;, lalu ubah angkanya yang muncul di Pop-up menjadi 60, lalu Enter (OK).&lt;br /&gt;5.    Lalu tutup  atau restart Firefox Anda kemudian nikmati hasilnya.&lt;br /&gt;6.    Cara lain adalah dengan menggunakan add-on yang terdapat pada Firefox, namanya “Fasterfox”. Setelah meng-instal, bisa langsung di-restart.&lt;br /&gt;&lt;br /&gt;sumber : beritanet.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6296519212278563040-2816352543812392446?l=smart-webs.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smart-webs.blogspot.com/feeds/2816352543812392446/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://smart-webs.blogspot.com/2009/11/trik-mudah-percepat-kinerja-firefox.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/2816352543812392446'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6296519212278563040/posts/default/2816352543812392446'/><link rel='alternate' type='text/html' href='http://smart-webs.blogspot.com/2009/11/trik-mudah-percepat-kinerja-firefox.html' title='Trik Mudah Percepat Kinerja Firefox'/><author><name>Business Internet</name><uri>http://www.blogger.com/profile/07163430825912644893</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
