latest SVN keep getting 404 error on management
-
@xsnrg4fr can you check your folder /var/www/
I you don’t see a redirection fog enter the command below.
ln -s /var/www/html/fog/ /var/www/fog
Kind regards,
Johan -
I’m experiencing the same issue…
When you check the page console in chrome, it says that the 404 error is coming from trying to load “http://(FOG IP)/favicon.ico” <-- *** I replaced my actual server IP, with “FOG IP” ***The only change that i’m seeing between the most recent update of /fog/management/index.php is the addition of the following code:
$FOGPageManager = $FOGCore->FOGPageManager = new FOGPageManager();
Could that have something to do with getting a blank page??
-
@BigMan99211 see @jjacobs post below yours.
-
The redirection already exists… I type in my server IP, and it redirects to http://(server IP)/fog/management/index.php
-
@BigMan99211 If you just type in the IP only into a web browser’s address bar, do you get the Apache test page?
-
No. A while back, I added a forwarder that goes straight to the …/fog/management/index.php page. It’s never had a problem.
-
@BigMan99211 Can you delete that file for now? Or rename that file so that it stops working ?
mv OldFileName NewFileName
-
Well, it appears that my forwarder no longer exists. It is connecting to apache though. If I attempt to go to a page that doesn’t exist, I get a 404 error. With the fog management page, I just get a solid white page. If you view the source for the page, this is all I get:
<html> <head></head> <body> <script type="text/javascript">(function () { return window.SIG_EXT = {}; })()</script> </body> </html>
-
PHP error log on Ubuntu:
tail /var/log/php_errors.log
Apache error log on Ubuntu:
sudo tail /var/log/apache2/error.log
-
The PHP error log doesn’t exist…
This is the Apache error log:
-
@BigMan99211 Bringing the @Developers attention to the apache errors.
-
Anyone else see the irony here?.. It’s failing on a portion entitled: “cleanInvalidEntries”…
Edit - Yep… it’s late in the day… lol
-
this is what i had to do to upgrade my Ubuntu 12.04 dev server
manually run:sudo add-apt-repository -y ppa:ondrej/php5-5.6 sudo apt-get update sudo apt-get install php5
allow all config files to be replaced with defaults
re-run fog installer -
@Junkhacker : I tried to install php5, per your instructions, but it’s just saying “php5 is already the newest version.”.
-
@BigMan99211 Then uninstall it, and then try again.
-
@BigMan99211 can you try running the installer with:
If you access fog with http://IPOFFOGHERE/fog
./installfog.sh -y -W /var/www/html/ -D fog/
If you access fog with http://IPOFFOGHERE/
./installfog.sh -y -W /var/www/html/fog -D /
-
OK…
I uninstalled php5, re-installed, re-ran fog install. Still getting the same blank page in Chrome, but in IE, i’m getting a 500 Server Error. And now, the apache log is showing a different error…
-
This seems to be a php issue… Is there anything that’s changed on the FOG side, that would affect this? The previous version of FOG i was on (svn build 3728, I believe) was working just fine. There haven’t been any updates ran through Ubuntu.
-
@BigMan99211 It sounds like you removed php5-mysqlnd. Maybe try reinstalling it?
sudo apt-get install --reinstall php5-mysqlnd; sudo php5enmod mysqlnd
-
@Tom-elliott : I did as you asked, and now i’m back to the same FOGCore error, that I was having in my original screen shot below.