Error installing / running WampServer 2.5

4

I installed WampServer 2.5 64bits and during installation there was no error, but the following message appears in the run.

  

The configuration file contains a syntax error on line 325: [EParseError] Parameter "Service" specifies an unknown service

Theconfigurationfileonthislinecontainsthisinformation:

What modification should be made to this line in order for Wamp to run smoothly?

Windows 7 SP1 - 64bit

edit

part of the file

324 [switchApache2.2.22]
325 Action: service; Service: ; ServiceAction: stop; Flags: ignoreerrors waituntilterminated
326 Action: run; FileName: "c:/wamp/bin/apache/apache2.2.22/bin/httpd.exe"; Parameters: "-n wampapache -k uninstall"; ShowCmd: hidden; Flags: ignoreerrors waituntilterminated

Looking at GitHub I could see that my file is missing the information in the service, but I'm not sure what information to add to this location. > Follow the search link

    
asked by anonymous 01.09.2014 / 19:49

3 answers

1

Try adding the Apache service:

324 [switchApache2.2.22]
325 Action: service; Service: wampapache; ServiceAction: stop; Flags: ignoreerrors waituntilterminated
326 Action: run; FileName: "c:/wamp/bin/apache/apache2.2.22/bin/httpd.exe"; Parameters: "-n wampapache -k uninstall"; ShowCmd: hidden; Flags: ignoreerrors waituntilterminated
    
22.10.2014 / 03:18
1

I make the following recommendation:

  • Back up the c:\wamp\www
  • Backup tables by using cmd (change the mysql5.5.24 folder as needed)

    • First look at the tables with the command:

      cd C:\wamp\bin\mysql\mysql5.5.24\bin\
      mysql -u root -p -e "select table_name"
      
    • Then back up the tables you created using the following command:

      cd C:\wamp\bin\mysql\mysql5.5.24\bin\
      mysqldump NOME_DA_TABELA > c:\Users\Nome do usuario\Desktop\nome_da_tabela.sql
      
  • Remove wamp completely

  • Download it again via the link link
  • Restore the www folder and saved% with% you can restore by phpmyadmin.
  • 21.06.2015 / 15:39
    0

    Normally installing Wampserver both 32bits and 64bits should not present a problem at the time of its execution. The problem may be some antivirus or virus or the two together. If your pc has Baiddu or Hao123 or toolbars you do not know where it comes in browsers and sometimes even multiple installed anti-virus clashing. you also have to see if you are not trying to install 64bit software on a 32bit operating system.

    Depending on the software versions, you may have problems with ports also between Skype and Wampserver trying to connect to the same port.

        
    01.09.2014 / 19:57