Welcome to Geeklog, Anonymous Sunday, December 22 2024 @ 03:00 am EST
Geeklog Forums
installation errors
S. Ogle
Anonymous
I am trying to install, but I keep getting this message:
It is just a standard error, but what do I do to fix it? I have very little experience with this sort of thing, so any help would be appreciated.
Warning: main(): open_basedir restriction in effect. File(/home/htdocs/geeklog/system/databases/mysql.class.php) is not within the allowed path(s): (/nfsn/content/me1337:/nfsn/apps/php/lib/php:/nfsn/content/content/nfsn) in /nfsn/content/me1337/htdocs/geeklog/system/lib-database.php on line 114
Warning: main(/home/htdocs/geeklog/system/databases/mysql.class.php): failed to open stream: Operation not permitted in /nfsn/content/me1337/htdocs/geeklog/system/lib-database.php on line 114
Fatal error: main(): Failed opening required '/home/htdocs/geeklog/system/databases/mysql.class.php' (include_path='.:/nfsn/apps/php/lib/php/') in /nfsn/content/me1337/htdocs/geeklog/system/lib-database.php on line 114
Warning: main(/home/htdocs/geeklog/system/databases/mysql.class.php): failed to open stream: Operation not permitted in /nfsn/content/me1337/htdocs/geeklog/system/lib-database.php on line 114
Fatal error: main(): Failed opening required '/home/htdocs/geeklog/system/databases/mysql.class.php' (include_path='.:/nfsn/apps/php/lib/php/') in /nfsn/content/me1337/htdocs/geeklog/system/lib-database.php on line 114
It is just a standard error, but what do I do to fix it? I have very little experience with this sort of thing, so any help would be appreciated.
9
10
Quote
Status: offline
1000ideen
Forum User
Full Member
Registered: 08/04/03
Posts: 1298
Looks like these are the allowed paths:
/nfsn/content/me1337
/nfsn/apps/php/lib/php
/nfsn/content/content/nfsn
Now this file
/nfsn/content/me1337/htdocs/geeklog/system/lib-database.php
wants to call
/home/htdocs/geeklog/system/databases/mysql.class.php
And this is NOT part of the allowed paths. So check your paths in the config.php and lib-common.php again
/nfsn/content/me1337
/nfsn/apps/php/lib/php
/nfsn/content/content/nfsn
Now this file
/nfsn/content/me1337/htdocs/geeklog/system/lib-database.php
wants to call
/home/htdocs/geeklog/system/databases/mysql.class.php
And this is NOT part of the allowed paths. So check your paths in the config.php and lib-common.php again
8
9
Quote
S. Ogle
Anonymous
Thanks, that worked perfectly and I was able to istall the tables, but when I performed the install check, it said the permissions were wrong. I tried chmod 775 and 777, but neither of them worked.
10
11
Quote
be0wu1f
Anonymous
How do I check that?
7
10
Quote
Status: offline
be0wu1f
Forum User
Newbie
Registered: 12/28/05
Posts: 3
Location:Loveland, CO
Testing backend directory /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/backend/ ...
Could not open the RDF file /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/backend/geeklog.rdf for writing.
Please check that you have set both the backend directory and the geeklog.rdf file in that directory to chmod 775.
Current permissions for backend: 0
Current permissions for geeklog.rdf: 0
Testing userphotos directory /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/images/userphotos/ ...
Could not write to /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/images/userphotos/.
Please make sure this directory exists and is set to chmod 775.
Current permissions for userphotos: 0
Testing articles directory /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/images/articles/ ...
Could not write to /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/images/articles/.
Please make sure this directory exists and is set to chmod 775.
Current permissions for articles: 0
Could not open the RDF file /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/backend/geeklog.rdf for writing.
Please check that you have set both the backend directory and the geeklog.rdf file in that directory to chmod 775.
Current permissions for backend: 0
Current permissions for geeklog.rdf: 0
Testing userphotos directory /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/images/userphotos/ ...
Could not write to /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/images/userphotos/.
Please make sure this directory exists and is set to chmod 775.
Current permissions for userphotos: 0
Testing articles directory /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/images/articles/ ...
Could not write to /nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/images/articles/.
Please make sure this directory exists and is set to chmod 775.
Current permissions for articles: 0
This is the error message I get. I checked and the permissions are set to 777 on those three.
11
11
Quote
Status: offline
1000ideen
Forum User
Full Member
Registered: 08/04/03
Posts: 1298
There seems to be one more error with the paths.
This doesn`t work:
/nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/backend/geeklog.rdf
Should be this:
/nfsn/content/me1337/htdocs/www/backend/geeklog.rdf
Check the config.php again
$_CONF['path'] = '/nfsn/content/me1337/htdocs/geeklog/';
$_CONF['path_html'] = '/nfsn/content/me1337/htdocs/www/';
And check lib-common.php
require_once( '/nfsn/content/me1337/htdocs/geeklog/config.php' );
Text Formatted Code
This doesn`t work:
/nfsn/content/me1337/htdocs/geeklog//nfsn/content/me1337/htdocs/www/backend/geeklog.rdf
Should be this:
/nfsn/content/me1337/htdocs/www/backend/geeklog.rdf
Check the config.php again
$_CONF['path'] = '/nfsn/content/me1337/htdocs/geeklog/';
$_CONF['path_html'] = '/nfsn/content/me1337/htdocs/www/';
And check lib-common.php
require_once( '/nfsn/content/me1337/htdocs/geeklog/config.php' );
8
12
Quote
All times are EST. The time is now 03:00 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