I'm trying to import database (MySQL) in MAMP's PhpMyAdmin to injection in my table database 'city', The entry have 77000 data. It's post code with several information.
here my tables in my main DB:
captcha
city
province
sub_country
....
....
etc
here current table what I mean:
in table city
city_id
poscode
kelurahan
kecamatan
city_name
provience_id
here my MySQL structure, postcode.sql (This is database for the import) :
insert into `city`(`city_id`,`poscode`,`kelurahan`,`kecamatan`,`city_name`,`province_id`) values (1,'80571','Kedewatan','Ubud','Gianyar',1),(2,'80571','Lodtunduh','Ubud','Gianyar',1),(3,'80571','Mas','Ubud','Gianyar',1),(4,'80571','Peliatan','Ubud','Gianyar',1),(5,'80571','Petulu','Ubud','Gianyar',1)
..........................
..........................
..........................
until
(77013,'22461','Sibalanga','Adian Koting','Tapanuli Utara',33);
I'm trying to edit php.ini in /Applications/MAMP/bin/php/php5.4.10/conf/php.ini
With Some configuration, here:
max_execution_time = 0
But it's doesn't change anything. When I try import my database to injection in my table database 'city" in MAMP's PhpMyAdmin, Page just blank, And entry nothing insert in my table. (Max 32 MiB). What should I do, please Help.
Thanks in Advance.