View Single Post
 
Old Jul 22, 2003, 08:27 AM
Liquibyte Liquibyte is offline
New Member
 
Member Since: Jul 2003
Posts: 4
<blockquote><font size=1>In reply to:</font><hr>

# Path to your Web site's main HTML directory (where the oj subdirectory is;
# no trailing slash). This is also known to some people as their FTP directory.

$mydir = ""; #This would put the index page to your www directory. Did you make an oj directory when installed? In that case you would need to find that path and put it in. For instance, on the server I am hosted on you can find your paths by doing this in a browser "domain.netfirms.com/cgi/printenv".

# Complete path to your cgi-bin directory (no trailing slash). This is similar
# to what you put above, except it's to your site's program or cgi-bin directory.

$progdir = "/cgi-bin"; #Same thing as above, just add the /cgi-bin after it

# Name of the OpenJournal directory (oj is default; no trailing slash). If you
# want OJ to manage your main homepage, put nothing between the quotes (like "")
# and edit the index file in the ojtemplates subdirectory to look like your
# homepage (keep the OJ HTML comments in the template file, though!).

$ojdir = ""; #Once again, if you made an oj directory this would be /oj, otherwise you're at the root of www.

<hr></blockquote>