Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
I am stumped. Here is my dir layout. /home/u3/mattlter/ /geeklog All geeklog files here /html All public geeklog here aka public_html Here is my config and lib-common config $_CONF[\'path\'] = \'/home/u3/mattlter/geeklog/\'; $_CONF[\'path_html\'] = $_CONF[\'path\'] . \'home/u3/mattlter/html/\'; lib-common require_once( \'/home/u3/mattlter/geeklog/config.php\' ); I have gone over all the perms in logs html/backend html/images/articles html/userphotos and made them all 777 Here is the issue, When I run the check.php it looks like the paths are being shown with symbolics links. An example is, Could not open the RDF file /home/u3/mattlter/geeklog/home/u3/mattlter/html/backend/geeklog.rdf for writing. See how the script seem to be going to geeklog then back up to home. I assume its my paths but for the last 2 days I have read every post I could find about paths with no luck. I also have tried all diffrent variations of my path, only the above path statements get check.php to run. Any help would be great, Geeklog looks cool, I would love to get it running. Thanks Matt Alter mattalter@yahoo.com

Patrick

Anonymous
Change this: $_CONF[\'path_html\'] = $_CONF[\'path\'] . \'home/u3/mattlter/html/\'; to this: $_CONF[\'path_html\'] = \'home/u3/mattlter/html/\'; Regards, Patrick

Patrick

Anonymous
Quote by Patrick:to this: $_CONF[\'path_html\'] = \'home/u3/mattlter/html/\';
sorry, put a \"/\" in front of home: $_CONF[\'path_html\'] = \'/home/u3/mattlter/html/\'; single line off course. stupid forum breaks up the line.

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Or simply $_CONF[\'path_html\'] = $_CONF[\'path\'] . \'html/\'; bye, Dirk

Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
Nice, thanks for the heads up, been banging my head for hours on this. Got it install and running. Thanks for the help!

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Just for the record: My above answer was incorrect. Do as Patrick suggested. Note to self: Read post carefully even if the answer seems obvious. bye, Dirk

Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
awake
Well got it kinda working. Got the install completed page, looks great. When I click home I get, Premature end of script headers: /home/com/aconsensus/html/index Any ideas? txs for all your help.

Status: offline

samstone

Forum User
Full Member
Registered: 09/29/02
Posts: 820
angelic
Did you change and layout headers? Sam

Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
Did not change anything except the config.php and the lib-common.php. txs

Status: offline

samstone

Forum User
Full Member
Registered: 09/29/02
Posts: 820
angelic
Could you post the upper section, the part that you need to change, of your config.php. Also, what path did you put in your lib-common.php? Sam

Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
My config $_CONF[\'path\'] = \'/home/u3/mattlter/geeklog/\'; $_CONF[\'path_html\'] = \'/home/u3/mattlter/html/\'; $_CONF[\'site_url\'] = \'http://www.aconsensus.com\'; my lib-common.php require_once( \'/home/u3/mattlter/geeklog/config.php\' );

Status: offline

DTrumbower

Forum User
Moderator
Registered: 01/08/03
Posts: 507
Ther error messages is pointing to /home/com instead of /home/u3. This might be the problem.

Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
I know, put I don\'t see that path set up anywhere? Any ideas?

Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
It seems that at my host the html dir is also an aliais for com. I guess I could create a sub dir called html to see if that helps.

Status: offline

DTrumbower

Forum User
Moderator
Registered: 01/08/03
Posts: 507
In the install directory there is file called check.php, run it and see what it brings back for errors.

Status: offline

DTrumbower

Forum User
Moderator
Registered: 01/08/03
Posts: 507
Quote by mattalter: It seems that at my host the html dir is also an aliais for com. I guess I could create a sub dir called html to see if that helps.
Thats not what the messages are saying. It might be an alias for u3 but not html.

Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
I already removed my install dir, but used the check.php to resolve my path issue, all tests were sucsessful. I assume this is not a rights issue but a path issue, and with my host not how geeklog is setup.

Status: offline

DTrumbower

Forum User
Moderator
Registered: 01/08/03
Posts: 507
On the surface the geeklog setup looks ok. You might want to talk with the host.

Status: offline

mattalter

Forum User
Newbie
Registered: 08/20/03
Posts: 12
Ok with all your help and more picking around, I found what it was. Of course it was a path issue. Here is my config $_CONF[\'path\'] = \'/home/com/aconsensus/geeklog/\'; $_CONF[\'path_html\'] = \'/home/com/aconsensus/html/\'; I had to change my path, orginaly it was /home/u3/mattlter/html, this is what my host told me what is was, but after seeing the error after my last install in the index.php page, this lead me to this. Thanks for all your help, I hope this thread may help someone else!

Status: offline

DTrumbower

Forum User
Moderator
Registered: 01/08/03
Posts: 507
silly
Quote by mattalter: Of course it was a path issue.
It always is. Razz

Page navigation