Install is not getting past Step 6.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Vega
    Senior Member
    • Mar 2004
    • 155
    • 3.5.x

    Install is not getting past Step 6.

    Hi there,

    just installed local, went fine, now i tried to install it on the server, everything went smooth, except for Step 6. Here is my phpinfo:

  • Ken Iovino
    Senior Member
    • Jan 2003
    • 463
    • 3.7.x

    #2
    What was the error message?
    Ken Iovino
    Full Time PHP, Ruby and iOS Developer

    Comment

    • Vega
      Senior Member
      • Mar 2004
      • 155
      • 3.5.x

      #3
      There was no error message:

      Step 6) Importing Language

      Importing vbulletin-language.xml

      Master Language

      Please Wait





      and then the browser didn't do anything.

      Comment

      • Mike Sullivan
        Former vBulletin Developer
        • Apr 2000
        • 13327
        • 3.6.x

        #4
        Reported already. Up your memory limit to fix it.

        Comment

        • Vega
          Senior Member
          • Mar 2004
          • 155
          • 3.5.x

          #5
          works now. thanks!

          Comment

          • zetetic
            Member
            • Apr 2004
            • 83
            • 3.6.x

            #6
            Originally posted by Mike Sullivan
            Reported already. Up your memory limit to fix it.
            Can you be more specific?

            Ah, figured it out. Memory limit in php.ini...
            Last edited by zetetic; Thu 9 Jun '05, 12:17pm.

            Comment

            • aberg
              Senior Member
              • Jul 2004
              • 165

              #7
              Is this the same problem?:

              Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 676 bytes) in /home/site8/fst/var/www/html/forum/includes/adminfunctions_language.php on line 512

              I have a delicate server and if i must update php.ini where can i find this file? and how must i do this?

              Comment

              • zetetic
                Member
                • Apr 2004
                • 83
                • 3.6.x

                #8
                Yep, that's the problem.

                On my server I had to edit /etc/php4/apache/php.ini and change: memory_limit = 8M, to memory_limit = 10M, then restart the webserver by typing /etc/init.d/apache restart on the command line.

                It might be different for you, though. I'm not a UNIX expert... good luck!

                Comment

                • Mr_Bob
                  Senior Member
                  • Sep 2004
                  • 438

                  #9
                  I have access to my php.ini file (WOOHHOOO just found it ), but I can't restart the Apache server due to the fact I am on a shared server. Is there any way to apply the new setting without having to restart, or do I need to wait for my host to restart Apache for some reason?

                  Comment

                  • TalkMilitary
                    Senior Member
                    • Mar 2003
                    • 351

                    #10
                    Just ask you web host to restart apache.

                    Comment

                    • Mr_Bob
                      Senior Member
                      • Sep 2004
                      • 438

                      #11
                      Originally posted by sb-host
                      Just ask you web host to restart apache.
                      Ok, I just sent them a ticket. When I downloaded my file too I discovered the possible solution to another problem of mine http://www.vbulletin.com/forum/showthread.php?t=141913. Just so Steve knowns I found the mail path ""/usr/sbin/sendmail -t -i" when acording to their information on the mail path should be ""/usr/sbin/sendmail -t". Heh . Sorry for the bit of off topic, but I gave them more then one reason to restart Apache .

                      Comment

                      • pauloo
                        Member
                        • Nov 2004
                        • 79
                        • 3.7.x

                        #12
                        Originally posted by Vega
                        There was no error message:

                        Step 6) Importing Language

                        Importing vbulletin-language.xml

                        Master Language

                        Please Wait





                        and then the browser didn't do anything.

                        For this probleme, see this post:
                        Visit my board Astunet.net

                        Comment

                        • Kier
                          Former Lead Developer, vBulletin
                          • Sep 2000
                          • 8179

                          #13
                          Actually, you don't need to edit your php.ini file at all. You can actually set the memory limit at run time using a PHP script. The reasons for this are baffling, but there it is.

                          To temporarily up your memory limit to 16M for the language install, open up includes/class_xml.php and add this just after the error_reporting line.

                          PHP Code:
                          ini_set('memory_limit'16777216); 

                          Comment

                          • Vega
                            Senior Member
                            • Mar 2004
                            • 155
                            • 3.5.x

                            #14
                            Originally posted by pauloo
                            Actually.... Why should I go to another forum, and may have to register there to get information I need, when the answer to the problem is within this thread?

                            Comment

                            • Vman
                              Senior Member
                              • Apr 2004
                              • 128
                              • 3.0.1

                              #15
                              Originally posted by Kier
                              Actually, you don't need to edit your php.ini file at all. You can actually set the memory limit at run time using a PHP script. The reasons for this are baffling, but there it is.

                              To temporarily up your memory limit to 16M for the language install, open up includes/class_xml.php and add this just after the error_reporting line.

                              PHP Code:
                              ini_set('memory_limit'16777216); 

                              That did the trick for me, install we smooth after that on my test site!...thanks for that little string...

                              Comment

                              Related Topics

                              Collapse

                              Working...