top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Hi everybody I've a problem and hope someone here can help That.

+2 votes
296 views

To import the large file of the database I need to increase the size of the variable upload_max_filesize in php.ini setting via phpmyadmin in my remote server (Host 's name == HELM) ... it's easy to do locally by changing the value of the upload_max_filesize variable but when you import the file I met the problem(the file size is large and max = 2.04 M) and I looked everywhere in the forum but unfortunately I can't solve the problem ...
is there a solution without having to contact the hosting provider?

posted Apr 16, 2014 by Rahul Mehra

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+3 votes

Given a 2d array, u need to sort the 2 diagonals independently.
And the elements in diagonal should remain in diagonal only.

INPUT =>
24 2 3 4 7

6 13 8 5 10

11 12 9 14 15

16 21 18 25 20

17 22 23 24 1

OUTPUT =>
1 2 3 4 5

6 7 8 9 10

11 12 13 14 15

16 17 18 19 20

21 22 23 24 25

...