Posts

Showing posts from May, 2012

upload large file on server

Write this code in the .htaccess file ----code----------------------------------- suPHP_ConfigPath  /home/sdman007/public_html    <Files php.ini>    order allow,deny    deny from all    </Files> --------------------------------------- Create php.ini file in your root path  ----code---------------------------------- ;;;;;;;;;;;;;;;; ; File Uploads ; ;;;;;;;;;;;;;;;; ; Maximum allowed size for uploaded files10mb  ( You can change it) upload_max_filesize = 10M post_max_size = 10M max_execution_time=300              ;This is exicution time 300 like as 5 min max_input_time =300 ------------------------------------- After do that login ur cpanel again . Now you can see php configuration using the <? echo phpinfo() ; ?> function.

URL Rewriting- Top 5 Ways of PHP URL Rewriting

Introduction In this era of technology enhancement, Internet has become the major source of information. If we need any kind of information, we usually consult from the Search Engines (particularly Google). Why? Because of the reason, Search Engine’s increased searching capabilities. Thus every website owner wants now online visibility on top search engines. And for this you need to follow search engine guidelines. These are the guidelines which are helpful in the Search engine optimization of your website. URL Rewriting is one of the good techniques followed in Search Engine Optimization. Consider more understanding of URL Rewriting and its importance: Static URLS Vs Dynamic URLS Static URL’s are more to be recognizable than dynamic URL’s for the number of reasons: Static URL’s generally rank better in Search Engines. Search Engines Crawls the Content of the static URLs much faster as compare to the dynamic URL. Static URL looks pretty or friendlier to the end-user.