Announcement

Collapse
No announcement yet.

Install is not getting past Step 6.

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

  • 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:


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

    Comment


    • #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


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

        Comment


        • #5
          works now. thanks!

          Comment


          • #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


            • #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


              • #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


                • #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


                  • #10
                    Just ask you web host to restart apache.

                    Comment


                    • #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


                      • #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


                        • #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


                          • #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


                            • #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...
                              X