Posted on: 02/22/03 05:40pm
By: Anonymous (punkboy_jerm)
Ive uploaded everything and gone through the installation but now when I go to my site I get a messagew saying:
"Template Error: set_root: /home/punkboy/geeklog/public_html/layout/Yahoo/ is not a directory.
Halted."
http://fighttheoctopus.dr2.net
why is it doing this?
Thanks
Another problem
Posted on: 02/22/03 06:27pm
By: Anonymous (punkboy_jerm)
btw...the link says that in my geeklog folder i have a public_html folder...but i dont so why does it say it?---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/22/03 06:39pm
By: ckier
It sounds like a problem in your config.php file. The public_html folder is the folder that originally contains everything that the public is meant to see. If you moved the files out of this folder to another, you have to make sure you changed the path in your cofig.php. The error seems to be literally saying it can't find the Yahoo theme which seems to be set as the default theme in config.php
Another problem
Posted on: 02/22/03 06:51pm
By: Anonymous (punkboy_jerm)
im really lost...i haven't changed anything in the public_html folder!!!
Im getting really stressed at this...ive been trying to get my site up for three days now!!!---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/22/03 09:41pm
By: Anonymous (Anonymous)
Perhaps you didn't change the contents in public_html, but you said here you don't have a directory by that name. Yet, when you previously posted your paths, you put public_html in at least one of them: $_CONF['path_html'] = $_CONF['path'] . 'home/punkboy/geeklog/public_html/';
Go take take a couple hours off to calm down. Then, come back and report all your configuration paths again. Also post where exactly you put the files from the public_html and and the non-public ones on your server.
This isn't hard. It just seems that way because your stressed out. The problem is just getting the paths right.
Another problem
Posted on: 02/22/03 10:24pm
By: Anonymous (punkboy_jerm)
ok...
On my server I have a public_html folder where i put all my public_html files in that came when i downloaded geeklog.
I also have a geeklog folder where I put everything else...this geeklog folder is not in my public_html folder.
Here are the paths in my config.php file:
Server settings:
$_CONF['path'] = '/home/punkboy/geeklog/'; // C:/inetpub/wwwroot/geeklog/
$_CONF['path'] = '/home/punkboy/geeklog/'; // C:/inetpub/wwwroot/geeklog/
// You only need to change this if you moved or renamed the public_html
// directory. In that case, you should specify the complete path to the
// directory like this (i.e. without the $_CONF['path']):
// $_CONF['path_html'] = '/home/punkboy/public_html/';
$_CONF['path_html'] = $_CONF['path'] . '/home/punkboy/public_html/';
// you shouldn't need to edit the following
$_CONF['path_system'] = $_CONF['path'] . 'system/';
$_CONF['path_log'] = $_CONF['path'] . 'logs/';
$_CONF['path_language'] = $_CONF['path'] . 'language/';
$_CONF['rdf_file'] = $_CONF['path_html'] . 'backend/geeklog.rdf';
$_CONF['backup_path'] = $_CONF['path'] . 'backups/';
Site settings:
/ make sure this is the correct URL to your site (no trailing slash)
$_CONF['site_url'] = 'http://fighttheoctopus.dr2.net';
$_CONF['site_name'] = 'Fight The Octopus';
$_CONF['site_slogan'] = 'Resisting Corporate Media';
$_CONF['site_mail'] = 'punkboy_jerm@canada.com';
$_CONF['theme'] = 'Yahoo'; // default theme
// Some hosting services have a preconfigured admin directory. In that case,
// you need to rename Geeklog's admin directory to something like "myadmin"
// and change the following URL as well. Leave as is until you experience any
// problems accessing Geeklog's admin menu.
$_CONF['site_admin_url'] = $_CONF['site_url'] . '/home/punkboy/public_html/admin';
// you shouldn't need to edit the following
$_CONF['layout_url'] = $_CONF['site_url'] . '/layout/' . $_CONF['theme'];
$_CONF['path_themes'] = $_CONF['path_html'] . 'layout/';
$_CONF['path_layout'] = $_CONF['path_themes'] . $_CONF['theme'] .'/';
I hope this helps
thanks---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/22/03 10:41pm
By: Anonymous (Anonymous)
Hey, wait a minute. You didn't take a chill pill. lol Okay, try these changes here.
You only need to define $_CONF['path'] once not twice. Delete one of the two.
$_CONF['path'] = '/home/punkboy/geeklog/'; // C:/inetpub/wwwroot/geeklog/
$_CONF['path'] = '/home/punkboy/geeklog/'; // C:/inetpub/wwwroot/geeklog/
This path here is wrong:
$_CONF['path_html'] = $_CONF['path'] . '/home/punkboy/public_html/';
As written, it equates to this:
'/home/punkboy/geeklog/home/punkboy/public_html/'
Based on where you said you placed the files, it should be this instead:
$_CONF['path_html'] = '/home/punkboy/public_html/';
This path here is wrong too:
$_CONF['site_admin_url'] = $_CONF['site_url'] . '/home/punkboy/public_html/admin';
As written, it equates to this:
'http://fighttheoctopus.dr2.net/home/punkboy/public_html/admin'
It should be this instead:
$_CONF['site_admin_url'] = $_CONF['site_url'] . '/admin';
Fix these and see if your GL works now.
Another problem
Posted on: 02/22/03 11:01pm
By: Anonymous (punkboy_jerm)
ok ive made the changes but i still get the same problem
I deleted and re-installed my mySQL DB and re-installed GL and still the same problem.
http://fighttheoctopus.dr2.net---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/22/03 11:41pm
By: Anonymous (Anonymous)
Let's try again. You have these two directories on your server:
all public_html files were placed under: /home/punkboy/public_html/
all the other files were placed under: /home/punkboy/geeklog/
Is this right?
After making those changes, please post the exact error message you're getting now.
Another problem
Posted on: 02/23/03 12:43am
By: Anonymous (punkboy_jerm)
yes...that is correct.
here is the error i get when going to http://fighttheoctopus.dr2.net
"Template Error: set_root: /home/punkboy/geeklog//home/punkboy/public_html/layout/Yahoo/ is not a directory.
Halted."---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 02:52am
By: Anonymous (Anonymous)
I don't think you fixed this path here or the file didn't get overwritten with the correct change:
$_CONF['path_html'] = $_CONF['path'] . '/home/punkboy/public_html/';
It needs to be this:
$_CONF['path_html'] = '/home/punkboy/public_html/';
Another problem
Posted on: 02/23/03 05:13am
By: Anonymous (Anonymous)
Go to http://www.macosxhints.com and do a site search for - install geeklog - this will give you a very good idea of what you need to do. Just substitute the names of the directories for the names on your server. I would also suggest starting over from scratch.
Another problem
Posted on: 02/23/03 12:08pm
By: Anonymous (punkboy_jerm)
WOW!!!!
it works!!!!
Thanks alot for the help!---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 12:15pm
By: Anonymous (punkboy_jerm)
ok well there is one thing...
when i go to the front page it says this:
"Warning: fopen(/home/punkboy/geeklog/logs/error.log) [function.fopen]: failed to create stream: Permission denied in /home/punkboy/public_html/lib-common.php on line 1440"
Why is it doing that and what can i do to stop that?
Thanks
btw...you can see what im talking about by going to
http://fighttheoctopus.dr2.net---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 03:00pm
By: Dirk
Another problem
Posted on: 02/23/03 03:03pm
By: Anonymous (Anonymous)
You need to change permissions on the logs directory, error.log file, and access.log file to allow write access.
After you install GL, there's a script named check.php in the same directory (it's probably located at http://fighttheoctopus.dr2.net/admin/install/check.php). Run that script and it will check certain files and directories to make sure you have the proper permissions set. If it says a directory or file is missing then just create an empty one and set the permissions. The script says the directories/files it checks must be set at 775, but I had to set them to 777.
After you get a thumbs up from the script, make sure you remove the install directory from your server.
Another problem
Posted on: 02/23/03 04:51pm
By: Anonymous (punkboy_jerm)
well i actually got my site working
ive been working on it and then for some reason i just got this message:
"1064: You have an error in your SQL syntax near 's') AND ((owner_id = 2 AND perm_owner >= 2) OR (group_id IN (2,4,7,11,5,13,12,10' at line 1"
What is that? what can i do to stop it?
you can see what im talking about here:
http://fighttheoctopus.dr2.net---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 05:27pm
By: Anonymous (punkboy_jerm)
ok...now it says this:
1064: You have an error in your SQL syntax near 's') AND ((perm_anon >= 2))' at line 1---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 06:43pm
By: Anonymous (Anonymous)
What were you doing which resulted in that error?
Another problem
Posted on: 02/23/03 08:26pm
By: Anonymous (punkboy_jerm)
adding another topic.
I cliked submit or whatever to put in the new topic and it just started giving my that message---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 10:14pm
By: Anonymous (punkboy_jerm)
alright im just re doing the whole damn thing!!
This time i know what im doing so it should go by fast---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 10:41pm
By: Anonymous (punkboy_jerm)
IT WORKS IT WORKS!!!---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 10:49pm
By: Anonymous (punkboy_jerm)
dammit!!!
same problem
i was adding topics and then it started showing this:
"1064: You have an error in your SQL syntax near 's') AND ((owner_id = 2 AND perm_owner >= 2) OR (group_id IN (2,4,7,11,5,13,12,10' at line 1"
---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 02/23/03 11:23pm
By: Anonymous (Anonymous)
now its saying:
1064: You have an error in your SQL syntax near 's') AND ((perm_anon >= 2))' at line 1
Another problem
Posted on: 02/23/03 11:35pm
By: Anonymous (Anonymous)
Are you inserting any characters other than A-Z and 0-9 for the Topic Name?
Another problem
Posted on: 02/24/03 10:19am
By: vinny
You can't have appostrophes (') for the topic names. Just letters and numbers.
Be sure to take your time and read the instructions on the different pages before hitting the submit button. This information is given on the topic submission/creation page.
Also, when you post MySQL errors, be sure to also post in your comment the associated error message in the error.log. This lets us troubleshoot things much more quickly. Also, it might be a good idea to get on IRC to get help...
-Vinny
Another problem
Posted on: 02/24/03 11:16am
By: Anonymous (punkboy_jerm)
ok i know what i was doing wrong now.
I put a ' for one of the topic names
i guess illjust have to restart it over...no big deal!
Thanks alot for all the help...ill post a link once I get it running

---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 03/06/03 01:06pm
By: Anonymous (punkboy_jerm)
http://www.fighttheoctopus.com
Thanks again for the help---1234 EAT THE RICH AND FEED THE POOR 5678 ORGINISE AND SMASH THIS STATE - suck la marde
Another problem
Posted on: 04/19/03 09:54pm
By: Anonymous (Anonymous)
thanks... fixed my problem! (needed to delete the $_CONF['path'] in $_CONF['path_html'])