You are looking for the serendipity_config table (if godaddy leaves the prefix standard). But I'm not familiar with godaddy's setup, so hopefully someone with some direct experience can help out.
If you have access to the database in some way I would suggest using something like
Code: Select all
SELECT name FROM serendipity_config
to see what fields exist.
If you get a "Cannot write to directory" error when you access the webpage then you are probably looking for serendipityPath, so something like
Code: Select all
SELECT * FROM serendipity_config where name='serendipityPath'
will show you what it is currently set to.
Once you know that is what you want you can do something like
Code: Select all
UPDATE serendipity_config SET value='your/path/here/' WHERE name='serendipityPath';
Like I said, I don't know what tools godaddy gives you, so I'm not sure if there is an easy way to fix the problem, but if you post what you know I'll try to help (or maybe someone will post who knows more).[/code]