How to increase the php file upload limits

How to increase the php file upload limits

PHP has several configuration options to limit resources consumed by scripts. By default, PHP is set to allow uploads of files with a size of 2MB or less. Now you can change these configuaration. Follow these steps Step 1: open your server root directory Step 2: open the php directory Step 3: open the php.ini file Try increasing the following values...
How to increase the import file size in phpmyadmin

How to increase the import file size in phpmyadmin

In general phpmyadmin allows to import file size Max: 2,048KiB By default you get a 2mb limit of import size in phpmyadmin.It is impossible to import larger files. You can increase the allowed import size of phpmyadmin by editing your server's php.ini configuration file. Usually it is located at {Server}/Php/php.ini. Here Server is WAMP, XAMPP, VERTRIGO. Step...
How to register the facebook account with out your original information

How to register the facebook account with out your original information

Today I will explain how to register a Facebook account with out your original email address and mobile number. This tutorial is only for educational purpose. Don't misuse this technique. Do you know about any disposable email systems? . What do you mean by the disposable email? It is temporary email address you can get very easily and when you create...
How to block the particular weekdays in the jquery datepicker

How to block the particular weekdays in the jquery datepicker

Generally Datepicker allows to click the all weekdays do you want to block any weekdays for example : a company has holidays on saturday and sunday. We can appointment with the company except these holidays. In this case we want to block the saturdays and sundays in the datepicker We already know about how to integrate the jquery datepicker. Datepicker...
How to integrate the jquery datepicker

How to integrate the jquery datepicker

The datepicker is tied to a standard form input field. Focus on the input (click, or use the tab key) to open an interactive calendar in a small overlay. Choose a date, click elsewhere on the page (blur the input), or hit the Esc key to close. If a date is chosen, feedback is shown as the input's value. To integrate the jquery datepicker we need...