Can't access the FOG web management inteface
- 
 [FONT=Verdana][COLOR=#333333]Before trying to open the FOG management webpage [/COLOR][/FONT] 
 [FONT=Verdana][COLOR=#333333]Install PHPMYADMIN (this makes database management easy)[/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Open //localhost/phpmyadmin [/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Create a new user and give them ALL permissions for ALL HOSTS (basically they should be the same as ROOT[/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Check the user is there and the permissions are set correctly. [/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Go into the PERMISSIONS tab and remove the password for ROOT under localhost & 127.0.0.1[/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Open the FOG webmanagement page[/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Set up the users in FOG[/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Go back to PHPMyAdmin and make sure FOG has been added as a database. You will need to log on as the ‘new user’ above[/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Reset the root password to something secure (as per pre install???)[/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Open the FOG database[/COLOR][/FONT]
 [FONT=Verdana][COLOR=#333333]Go to Permissions and BLANK the root password for localhost & 127.0.0.1[/COLOR][/FONT]
- 
 sorry but how do i do that? my mind has gone blank. 
- 
 irontamoor, Did you set a mysql password when you performed the installation? If you did set a password, do you remember that password? The line: PHP Warning: mysql_connect(): Access denied for user ‘root’@‘localhost’ (using password: NO) in /var/www/fog/lib/db/MySql.db.class.php on line 51 It’s telling you it can’t connect to the database. Probably because the mysql password is not set on your /var/www/fog/commons/config.php. 
- 
 Yes I did set a password don’t know why it would say that as I havnt been able to get in at all. 
 I’ve used fog in so many places never had problem untill now.
- 
 Did you check that the password was set in /var/www/fog/commons/config.php? 
- 
 Yes. 
 The problem is the website won’t download when I right click and view source. Nothing, no code nothing
- 
 Can you refresh the screen, I know it’ll be blank, then run: 
 [code]tail -20 /var/log/apache2/error.log[/code]Copy and paste the output of that here. 
- 
 Sorry dudes been busy: here you go. [CODE][Fri Feb 14 17:25:47 2014] [notice] Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u7 configured – resuming normal operations 
 [Fri Feb 14 18:09:37 2014] [notice] Graceful restart requested, doing restart
 [Fri Feb 14 18:09:37 2014] [error] (9)Bad file descriptor: apr_socket_accept: (client socket)
 apache2: Could not reliably determine the server’s fully qualified domain name, using 192.168.2.101 for ServerName
 [Fri Feb 14 18:09:37 2014] [notice] Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u7 configured – resuming normal operations
 [Fri Feb 14 18:09:48 2014] [notice] Graceful restart requested, doing restart
 [Fri Feb 14 18:09:48 2014] [error] (9)Bad file descriptor: apr_socket_accept: (client socket)
 apache2: Could not reliably determine the server’s fully qualified domain name, using 192.168.2.101 for ServerName
 [Fri Feb 14 18:09:48 2014] [notice] Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u7 configured – resuming normal operations
 [Fri Feb 14 18:14:25 2014] [notice] caught SIGTERM, shutting down
 [Fri Feb 14 18:14:26 2014] [notice] Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u7 configured – resuming normal operations
 [Fri Feb 14 18:16:37 2014] [error] [client 192.168.2.1] PHP Parse error: syntax error, unexpected ‘DB_TYPE’ (T_STRING) in /var/www/fog/commons/config.php on line 54
 [Fri Feb 14 18:16:37 2014] [error] [client 192.168.2.1] File does not exist: /var/www/favicon.ico
 [Fri Feb 14 18:27:38 2014] [error] [client 192.168.2.1] PHP Parse error: syntax error, unexpected ‘DB_TYPE’ (T_STRING) in /var/www/fog/commons/config.php on line 54
 [Fri Feb 14 18:27:40 2014] [error] [client 192.168.2.1] PHP Parse error: syntax error, unexpected ‘DB_TYPE’ (T_STRING) in /var/www/fog/commons/config.php on line 54
 [Fri Feb 14 18:49:29 2014] [notice] caught SIGTERM, shutting down
 [Tue Feb 18 18:09:09 2014] [notice] Apache/2.2.22 (Debian) PHP/5.4.4-14+deb7u7 configured – resuming normal operations
 [Tue Feb 18 18:12:01 2014] [error] [client 192.168.2.1] PHP Parse error: syntax error, unexpected ‘DB_TYPE’ (T_STRING) in /var/www/fog/commons/config.php on line 54
 [Tue Feb 18 18:12:02 2014] [error] [client 192.168.2.1] File does not exist: /var/www/favicon.ico
 [Tue Feb 18 18:12:31 2014] [error] [client 192.168.2.1] PHP Parse error: syntax error, unexpected ‘DB_TYPE’ (T_STRING) in /var/www/fog/commons/config.php on line 54[/CODE]
- 
 What does the file say for line 54? [quote]/var/www/fog/commons/config.php on line 54[/quote] 
- 
 define( “DB_TYPE”, “mysql” ); 
- 
 This post is deleted!
- 
 What version of FOG are you running? 
- 
 0.32 
- 
 Check the line: 
 [code]define( “MYSQL_PASSWORD”, “” );[/code] has a semicolon at the end of it.You need the ( ); as well as the “MYSQL_PASSWORD”, “PASSWORD”. 
- 
 like this: define( “MYSQL_DATABASE”, “fog” ); 
 define( “MYSQL_USERNAME”, “root” );
 define( “MYSQL_PASSWORD”, "password” );
 define( “DB_TYPE”, “mysql” );
 define( “DB_HOST”, MYSQL_HOST );
 define( “DB_NAME”, MYSQL_DATABASE );
 define( “DB_USERNAME”, MYSQL_USERNAME );
 define( “DB_PASSWORD”, MYSQL_PASSWORD );
- 
 Yes, just like that. 
- 
 What happens if you go to url: [url]http://192.168.2.101/commons/schemaupdater/index.php?redir=1[/url] 
- 
 404 error 
- 
 Add the Error Logs? 
- 
 

