Hi again, yes that worked a treat, the result was:
/home/
goliven/public_html/snippetmaster - not /home/
golive.net.au/public_html/snippetmaster as I had presumed.
I made the changes to config.inc.php, then typed
http://www.golive.net.au/snippetmaster into my browser and it works! Thanks for your help with this I really appreciate it.
If you're reading this to try and work out your own config problem, then the procedure that I have just followed is the place to start. Points to remember about this:
1. The path (to your files on the server) is not neccesarily what you see in say your ftp client (mine just showed the file structure as golive.net.au/public_html/snippetmaster, so I used that in my config.inc.php.
2. Different server applications / webhosts may use different naming conventions when creating your account and file structure. From what I have seen here in the forums though, the /home seems to be a common beginning to the path (would you agree Jenkinhill? please correct me if I'm wrong)
3. One thing that confused me in the begining, when reading through the instructions, is the term 'web root', what would my web root therefore be, goliven? and is it preferable to upload snippetmaster into the web root rather than public_html as I have done? can someone perhaps post an explanation / examples of these definitions, file structures / paths to help us newbies at the begining of our foray into the snippetmaster world, if you could actually map it out visually it would be even better, or if you want to pass a few examples on to me then I will do it?
When I set up this web site on my server (running apache server) the Web Host Manager software automatically assigned a username to the account based on the domain name. In this case my domain name golive.net.au was turned into the username goliven. Then it created the following directory set up based on this username
/home/goliven/ and that contains (along with some other directories) the
public_html directory, which is where I upload my actual web site to. public_html is also where I uploaded snippetmaster to.
So the following is what is correct for my particular server set up, the bold text is what I had to correct based on the result I received from the path.php file that I ran as a test (as reccomended by Jenkinhill in the previous post)
// NOTE: If you put SnippetMaster in your "web root" directory, the $ROOT and
// $PATH settings will then be the same. DO NOT add a trailing slash.
$PATH = "/home/
goliven/public_html/snippetmaster";
// This is the FULL path to the directory where your website files are
// located on your server (Your web root). DO NOT add a trailing slash.
$ROOT = "/home/
goliven/public_html";
// Set to the full url to access the value you set for $ROOT
$PREVIEW = "
http://www.golive.net.au";
[font=Verdana]I also got this bit below wrong and just had to add /snippetmaster to the url[/font]
// Set to the full url to access the value you set for $PATH.
$URL = "
http://www.golive.net.au/snippetmaster";