Welcome to Geeklog, Anonymous Thursday, March 28 2024 @ 06:38 am EDT

Geeklog Forums

Errors during install

Page navigation


Brian

Anonymous
embarrassed
Quote by: Dirk

Quote by: Brian

So this is how I have my paths now...


I hope not. Since this contains the same mistake as above again (changing the name of a $_CONF variable).

Poking around on what I assume your website is, you should have
Text Formatted Code
$_CONF['site_url'] = 'http://www.socalstandup.com/signup';

That URL seems to work, only it's giving a blank page now, probably due to the above mistake. Fix that, then try again.

bye, Dirk



Wow, I'm seriously feeling STUUUUPID...

Still not coming up. I put the paths in the quote areas not next to CONF and I still must be putting them wrong. I'm sorry I'm really not trying to be lame... I'll paste what I have now... I'm trying to follow instructions but I guess I'm just not grasping it.

// This should point to the directory where your config.php file resides.
$_CONF['path'] = '/var/www/vhosts/socalstandup.com/httpdocs/oasis/'; // should end in a slash

// 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 (i.e. without the $_CONF['path']) like this:
// $_CONF['path_html'] = '/path/to/your/public_html/';
$_CONF['path_html'] = $_CONF['path'] . '/var/www/vhosts/socalstandup.com/httpdocs/signup/';

Thanks again... Sorry about taking up so much space and time, I really appreciate your help.
 Quote

Brian

Anonymous
By the way, this is how I have my site settings area... Think it's right but that could be off too...
$_CONF['site_admin_url'] = $_CONF['site_url'] . '/admin';

// This is the return address for all email sent by Geeklog and contact info
// displayed in syndication feeds:
$_CONF['site_mail'] = 'info@socalstandup.com';
 Quote

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
Quote by: Brian

Wow, I'm seriously feeling STUUUUPID...


Don't worry, you're just a bit confused now with all the back and forth. I've seen this before. About time we get the next release with the new install script finished ...


Quote by: Brian


// 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 (i.e. without the $_CONF['path']) like this:
// $_CONF['path_html'] = '/path/to/your/public_html/';
$_CONF['path_html'] = $_CONF['path'] . '/var/www/vhosts/socalstandup.com/httpdocs/signup/';


Since you quoted them, you may as well read those comments again carefully ...

Try this:
Text Formatted Code
$_CONF['path_html']         = '/var/www/vhosts/socalstandup.com/httpdocs/signup/';


If you're still getting a blank page then, look here: Blank page

bye, Dirk
 Quote

Brian

Anonymous


Try this:
Text Formatted Code
$_CONF['path_html']         = '/var/www/vhosts/socalstandup.com/httpdocs/signup/';


If you're still getting a blank page then, look here: Blank page

bye, Dirk[/p]


I think that's the line that has totally been confusing me...

This is what it looks like before you edit anything...

$_CONF['path_html'] = $_CONF['path'] . 'public_html/';

it's not formatted like the 'path' line is before you edit anything...

$_CONF['path'] = '/path/to/geeklog/'; // should end in a slash

So, I'm not sure what i can and can't take out there or what to replace... So whould I totally take out the = $_CONF['path'] . 'public_html/'; and replace it with = '/var/www/vhosts/socalstandup.com/httpdocs/signup/ ?

Thanksssssss
 Quote

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
A little bit of PHP knowledge would probably help understand this line:
Text Formatted Code
$_CONF['path_html'] = $_CONF['path'] . 'public_html/';

So what this does is take the value of $_CONF['path'] (that you gave it a few lines above), appends "public_html/" and uses the result as the value for $_CONF['path_html'].

So if $_CONF['path'] = "blah", the result would be "blah/public_html/".

We've put it in there like that to save you from having to type the full path again. Of course, if your setup is different from the standard case (as in yours, where you put the stuff outside of public_html into a different directory), that concatenation would result in the wrong path. So you have to drop the $_CONF['path'] and assign the full path directly instead.

Which is what the comment above that line was trying to say.

HTH

bye, Dirk
 Quote

Brian

Anonymous
Makes sense... I altered it to how I think you meant and still the same issue. By the way, I don't see a blank screen. I see an HTTP 500 - website cannot display the page.

This is what I have now.

$_CONF['path'] = '/var/www/vhosts/socalstandup.com/httpdocs/oasis/'; // should end in a slash

// 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 (i.e. without the $_CONF['path']) like this:
// $_CONF['path_html'] = '/path/to/your/public_html/';
$_CONF['path_html'] = '/var/www/vhosts/socalstandup.com/httpdocs/signup/';

Thanks for your patience... is that what you meant?
 Quote

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
Looks okay to me now.

Yeah, your server sends a 500 with the blank page. Your browser must be displaying its own error page for that (Firefox doesn't).

Try the "Blank page" link from above anyway. Or if you have access to the server's error_log, check that first.

bye, Dirk
 Quote

Brian

Anonymous
I do have access to my error log... Of course I'm not really sure what we're looking for in it.

Here are some lines from it... and it continues to repeat over and over again...

[client 216.207.124.226] PHP Warning: main(DB.php) [function.main]: failed to open stream: No such file or directory in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib/DBEngine.class.php on line 24
[client 216.207.124.226] PHP Warning: main() [function.include]: Failed opening 'DB.php' for inclusion (include_path='.:.:'Wink in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib/DBEngine.class.php on line 24
[client 216.207.124.226] PHP Notice: Undefined index: tool in /var/www/vhosts/socalstandup.com/httpdocs/signup/admin.php on line 16
[client 216.207.124.226] PHP Fatal error: Class 'DB' not found in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib/DBEngine.class.php on line 71
[client 216.207.124.226] PHP Warning: main(DB.php) [function.main]: failed to open stream: No such file or directory in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib/DBEngine.class.php on line 24
[client 216.207.124.226] PHP Warning: main() [function.include]: Failed opening 'DB.php' for inclusion (include_path='.:.:'Wink in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib/DBEngine.class.php on line 24
[client 216.207.124.226] PHP Notice: Undefined index: tool in /var/www/vhosts/socalstandup.com/httpdocs/signup/admin.php on line 16


Thanks
 Quote

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
That's not something that's coming from Geeklog - at least not from the core code. Did you install any add-ons already?

bye, Dirk
 Quote

Brian

Anonymous
Quote by: Dirk

That's not something that's coming from Geeklog - at least not from the core code. Did you install any add-ons already?

bye, Dirk



I have not... There's a few logs from today in there... Maybe this is it? It keeps going on and on too... here's a sample...

69.36.158.38 - - [16/Mar/2008:09:19:12 -0800] "GET /robots.txt HTTP/1.1" 404 474 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:13 -0800] "GET / HTTP/1.1" 200 10973 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:16 -0800] "GET /signup HTTP/1.1" 301 564 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:18 -0800] "GET /signup/ HTTP/1.1" 500 195 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:19 -0800] "GET /lines HTTP/1.1" 404 469 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:20 -0800] "GET /poll HTTP/1.1" 404 468 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:21 -0800] "GET /contact HTTP/1.1" 301 566 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:23 -0800] "GET /contact/ HTTP/1.1" 200 9349 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:24 -0800] "GET /?p=1 HTTP/1.1" 200 11073 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:25 -0800] "GET /?cat=1 HTTP/1.1" 200 10995 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
69.36.158.38 - - [16/Mar/2008:09:19:27 -0800] "GET /site/privacy_policy.html HTTP/1.1" 404 488 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12; ips-agent) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7"
 Quote

Brian

Anonymous
Actually, this is the most updated log and I just tried to go to the page, so I think it might be in here... Thanks!

67.49.2.127 - - [16/Mar/2008:13:20:00 -0800] "GET /mainbanner.jpg HTTP/1.1" 304 148 "http://www.socalstandup.com/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:13:20:00 -0800] "GET /stylesheet.css HTTP/1.1" 304 147 "http://www.socalstandup.com/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:13:20:01 -0800] "GET /style.css HTTP/1.1" 304 147 "http://www.socalstandup.com/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:13:20:01 -0800] "GET /wp-content/themes/mmau/style.css HTTP/1.1" 304 148 "http://www.socalstandup.com/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
84.161.33.145 - - [16/Mar/2008:13:44:22 -0800] "GET /signup/ HTTP/1.1" 500 195 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12"
84.161.33.145 - - [16/Mar/2008:13:44:23 -0800] "GET /favicon.ico HTTP/1.1" 200 2803 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.12) Gecko/20080201 Firefox/2.0.0.12"
84.161.33.145 - - [16/Mar/2008:13:45:42 -0800] "GET /signup/ HTTP/1.1" 500 195 "-" "-"
84.161.33.145 - - [16/Mar/2008:13:46:03 -0800] "GET /signup/ HTTP/1.1" 500 195 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; de-de) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15"
84.161.33.145 - - [16/Mar/2008:13:46:03 -0800] "GET /favicon.ico HTTP/1.1" 200 2803 "http://www.socalstandup.com/signup/" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X; de-de) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15"
67.49.2.127 - - [16/Mar/2008:13:52:43 -0800] "GET /signup HTTP/1.1" 301 564 "http://www.socalstandup.com/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - kilerb [16/Mar/2008:13:52:44 -0800] "GET /signup/ HTTP/1.1" 500 195 "http://www.socalstandup.com/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:14:40:40 -0800] "GET /signup HTTP/1.1" 301 564 "http://www.socalstandup.com/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:14:40:40 -0800] "GET /signup/ HTTP/1.1" 500 195 "http://www.socalstandup.com/" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:14:40:45 -0800] "GET /signup HTTP/1.1" 301 564 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:14:40:45 -0800] "GET /signup/ HTTP/1.1" 500 195 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:14:40:47 -0800] "GET /signup HTTP/1.1" 301 564 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
67.49.2.127 - - [16/Mar/2008:14:40:47 -0800] "GET /signup/ HTTP/1.1" 500 195 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)"
 Quote

Brian

Anonymous
Sorry.... It might be this too. I'm so naive to a lot of this.



[Sun Mar 16 15:36:04 2008] [error] [client 67.49.2.127] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting 'Wink' in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib-common.php on line 1867
[Sun Mar 16 15:36:08 2008] [error] [client 67.49.2.127] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting 'Wink' in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib-common.php on line 1867
[Sun Mar 16 15:36:09 2008] [error] [client 67.49.2.127] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting 'Wink' in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib-common.php on line 1867
[Sun Mar 16 15:36:09 2008] [error] [client 67.49.2.127] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting 'Wink' in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib-common.php on line 1867
[Sun Mar 16 15:36:10 2008] [error] [client 67.49.2.127] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting 'Wink' in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib-common.php on line 1867
[Sun Mar 16 15:36:11 2008] [error] [client 67.49.2.127] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting 'Wink' in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib-common.php on line 1867
 Quote

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
Quote by: Brian

[Sun Mar 16 15:36:04 2008] [error] [client 67.49.2.127] PHP Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting 'Wink' in /var/www/vhosts/socalstandup.com/httpdocs/signup/lib-common.php on line 1867


Now that's a common case. Your editor messed up a part of the Code in lib-common.php. Use a fresh copy of that file and a different text editor, then make the one required change (the path to your config.php) again.

bye, Dirk
 Quote

Brian

Anonymous
magical
Dirk!

Thanks so much for your patience and help with this. Not sure what I did wrong with that lib file the first time. I FTP'd it the first time and maybe I had the path incorrect, then did just edit/upload it just now with front page and that does not work, so I did it with notepad and cuteftp and the site worked!

I'll check the instructions and see what to do next... I do have a couple of questions one of which might sound pretty lame after all this install trouble... Ha...

I literally installed this because I need that event planner on your partners site mentioned above. What do most people install Geeklog for? I have not read much about it and only got it for the plugin I need. I see it's the ultimate weblog system at the top, so is it primarily used to make blogs?

Also, What is the best way to get hold of your partner? He hasn't answered that paypal email I sent him. I'd love to get that plugin ASAP and it seems that his site is not setup on an instant pay/download system. Is there a quicker email to reach hiim at?

Thanks again for all your help, and sorry I used more space on your forum than anyone up until now. hahaha...

Brian
 Quote

Status: offline

Dirk

Site Admin
Admin
Registered: 01/12/02
Posts: 13073
Location:Stuttgart, Germany
Glad to hear you got it working.

I'm actually not too happy with the site slogan but haven't been able to come up with a better one :wink:

Yeah, you can use Geeklog as a blog, but I'd like to think of it more as a small CMS. The company I work for, for example, are using it for their regular homepage. When you need to post some sort of "news", be it press releases or what you had for lunch, you can do it with Geeklog. And you can easily expand from there with the available plugins.

Since I've just updated the introduction in the wiki docs somewhat, let me point you there.

As for Blaine, I pointed him to this thread. He'll probably get in contact in one form or another soonish.

bye, Dirk
 Quote

Brian

Anonymous
Okay, after browsing through the program, I understand more about what the program is for.

Totally awesome by the way...

I did run into 1 problem... Trying to change my password. First it said the permissions were not writable at a certain driectory, so i went in and changed it from 775 to 777. Now when I try to change the password it just takes me back to the change password screen and says you must enter original password. Which I have done each time I've tried it. It lets me change other things like my user name etc, but not a new password.

Also, this system is so big and powerful and customizable, I almost feel like I should have it on my main page, not just at /signup... would that be a total pain for me to change at this poiint or later down the line?

Thanks...

Brian
 Quote

Brian

Anonymous


I'm actually not too happy with the site slogan but haven't been able to come up with a better one :wink:


How about "The land where geeks log, and logs geek..." Hahahah....



Were you ever able to get hold of Blaine? I'm really excited to get that event plugin from Blaine. I wish I could pay and get it instantly. Your free help is faster than their help and their products cost money.... Ha...

I emailed his paypal email address, and I filled out that form on their site 2 days ago. I would just pay for the plugin, but I figure if they don't check their paypal email very often I would rather not be annoyed by paying for something and having to wait a week. Any advice? I'm sure he's just busy with important projects, but that plugin is the sole reason I got this going in the first place. Thanks!

Again, I appreciate all the help and time you've spent on me... Still trying to change my password too. I was thinking maybe I should change EVERY 775 to 777 on that list of folders/files. I only did the 2 that the system complained about. Figured I'd wait to hear from you first.

Thanks!
 Quote

Status: offline

Blaine

Forum User
Moderator
Registered: 07/16/02
Posts: 1232
Location:Canada
Quote by: Brian

Were you ever able to get hold of Blaine? I'm really excited to get that event plugin from Blaine. I wish I could pay and get it instantly. Your free help is faster than their help and their products cost money.... Ha...

Pretty easy to get ahold of me but when your anonymous, it makes it a bit hard to reply to you. Maybe you want to register on this site or my site :shock:
Geeklog components by PortalParts -- www.portalparts.com
 Quote

Status: offline

buckwildbill

Forum User
Chatty
Registered: 06/16/05
Posts: 47
You can download Blaine's plugins instantly. Take a look at the instructions on this page:
http://www.portalparts.com/paypal/index.php
 Quote

Brian

Anonymous
Quote by: Blaine

Quote by: Brian

Were you ever able to get hold of Blaine? I'm really excited to get that event plugin from Blaine. I wish I could pay and get it instantly. Your free help is faster than their help and their products cost money.... Ha...

Pretty easy to get ahold of me but when your anonymous, it makes it a bit hard to reply to you. Maybe you want to register on this site or my site :shock:



Sorry Blaine... I wasn't being anonymous intentionally, never even seen a forum that allows that til now so figured what the hell Smile

I do have a login on your site. I made it a couple days ago. I just purchased the plugin and it did not seem to be an instant download like the other person posted. What happens now?

Thanks!
Brian
 Quote

Page navigation

All times are EDT. The time is now 06:38 am.

  • Normal Topic
  • Sticky Topic
  • Locked Topic
  • New Post
  • Sticky Topic W/ New Post
  • Locked Topic W/ New Post
  •  View Anonymous Posts
  •  Able to post
  •  Filtered HTML Allowed
  •  Censored Content