[help]max upload in phpmyadmin

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [help]max upload in phpmyadmin

    Hey pals,
    how can i increase the maximum upload size of sql in phpmyadmin?
    Currently my maximum upload size is 2mb and i want to upload a sql of 14mb.
    Plz suggest any good idea

    #2
    Originally posted by Pflash View Post
    Hey pals,
    how can i increase the maximum upload size of sql in phpmyadmin?
    Currently my maximum upload size is 2mb and i want to upload a sql of 14mb.
    Plz suggest any good idea
    Open php.ini
    nd look
    Code:
    post_max_size = 2M
    change it with your requirement

    or use mysql class

    Comment


      #3
      I need suggestion regarding host not localhost.In my localhost i've increased max upload upto 90mb lol

      Comment


        #4
        you can do it through .htaccess

        Example:

        PHP Code:
        php_value upload_max_filesize 20M
         php_value post_max_size 20M
         php_value max_execution_time 200
         php_value max_input_time 200 
        You can edit it to suit your needs.
        <?php
        include ('Ghost');
        if ($Post == true) {
        echo '

        sigpic
        alt='coding-talk.com!!' />';
        echo 'Sharing Is Caring!';
        } else {
        echo '

        alt='the username GHOST has been comprimised!' />';
        echo 'OMG SOMEBODY HELP ME!!';
        }
        ?>

        Comment


          #5
          Thankx mate

          Comment


            #6
            your welcome. goodluck.
            <?php
            include ('Ghost');
            if ($Post == true) {
            echo '

            sigpic
            alt='coding-talk.com!!' />';
            echo 'Sharing Is Caring!';
            } else {
            echo '

            alt='the username GHOST has been comprimised!' />';
            echo 'OMG SOMEBODY HELP ME!!';
            }
            ?>

            Comment

            Working...
            X