Posts: 5
Threads: 2
Joined: Nov 2010
Reputation:
0
On Modules page I installed the modules for Export Manager, Pages and Swift Mailer and they installed ok except that I cannot get to any settings when I click on the "Select" link it loads a blank page. This happens for all three. I uninstalled all three and reinstalled them to no effect. Any Ideas of what I did wrong? Thanks
Posts: 2,456
Threads: 39
Joined: Dec 2008
Reputation:
6
Hi netraider,
Hmm... interesting one. I remember that this was a bug a long, long while back... just wish I could remember the details...!
Does your server have any error logs? If you're getting a blank page, chances are an error is being thrown and logged somewhere. I'd maybe start with that.
Let me know how it goes -
Ben
Posts: 2,456
Threads: 39
Joined: Dec 2008
Reputation:
6
Nov 12th, 2010, 1:29 PM
(This post was last modified: Nov 12th, 2010, 1:29 PM by Ben.)
Heya,
Yeah - error logs are usually full of stuff.
This is nice and clear, though: it simply can't find the folder to call the function. And since it doesn't work for you for any module, that suggests the $g_root_dir path in your /global/config.php file is wrong.
Take a look at it - does it look right? Have your hosting provider moved you to a new server or anything?
What I often do to find out the value is upload a file with this in it:
PHP Code:
<?php print_r($_SERVER); ?>
That outputs the contents of the $_SERVER global - a few of the settings will include some server paths. You can use that to compare with what you have in the $g_root_dir value.
Let me know how it goes!
- Ben