Tag Archives: phpMyAdmin

phpMyAdmin – SQL import timeout

If you have problem on importing the SQL in phpMyAdmin. First, try increasing the following two values in php.ini.

  • max_execution_time
  • max_input_time

 

Second, Add the following line in the phpMyAdmin config.inc.php.

$cfg['ExecTimeLimit'] = 0;

 

Done =)

Reference: Best way to import large .sql files to PHPmyAdmin via WAMP

Advertisement

Run Drupal 7 in Nginx

After so many days we have talked about setting up Nginx, PHP-FPM, MariaDB and some PHP caching. We can now try to run a Drupal instance on them. Before we starts, let me listed out all the previous posts.

 

It’s time to start the Drupal installation.
Continue reading Run Drupal 7 in Nginx

MAMP – Introduction

MAMP is Apache, MySQL and PHP runs on Mac. For Mac users, it is very convenient to use the MAMP package such that they don’t need to install the those application one by one. Moreover, MAMP package also bundled with some other useful programs as well as libraries such as phpMyAdmin and the PHP GD library. For more information, you can refer to the MAMP website.

During the installation, you can include the MAMP control panel into you Mac Dashboard. This is quite helpful for you to start and stop the server. you can also pick either PHP4 or PHP5 by switching to the back panel by clicking the i button which is located under the Apache label on the front panel.

Continue reading MAMP – Introduction