Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

Virtual Ave Install Error

Quote Reply
Virtual Ave Install Error
i had install links2 to several service, but when it come to virtual ave, i gave up. here is my admin.cgi
http://www.khmerkrom.com/cgi-bin/admin/admin.cgi
i did upload it in ascci.
any help is appreciated, r.t
Quote Reply
Re: Virtual Ave Install Error In reply to
I use virtualave.net and I was able to get it to work Smile What I found was that the directory path is actualy "/u/{sitename}/cgi-bin/" This is what I used to get it to work.

I have found virtualave to be a challenge, but I am starting to figure them out.
Quote Reply
Re: Virtual Ave Install Error In reply to
link to my links.cfg

http://www.khmerkrom.com/cgi-bin/admin/links.cfg

Quote Reply
Re: Virtual Ave Install Error In reply to
You've got too many double-qoutes on a few things in links.cfg:

Code:
$db_script_path = ""/u/thachret/cgi-bin/admin";

$build_root_path = ""/u/thachret/pages";
Quote Reply
Re: Virtual Ave Install Error In reply to
did took off the quotes, but still struggle. Smile
Quote Reply
Re: Virtual Ave Install Error In reply to
did you look at this thread:

www.gossamer-threads.com/scripts/forum/resources/Forum2/HTML/001722.html

and VirtualAve's FAQ for CGI?
www.virtualave.net/faqcgi.html

I downloaded you admin.cgi, and found this:
Code:
Error including libraries: Can't locate /u/thachret/cgi-bin/admin/db.pl in @INC (@INC contains: /usr/libdata/perl/5.00502/mach /usr/libdata/perl/5.00502 /usr/local/lib/perl5/site_perl/5.005/i386-freebsd /usr/local/lib/perl5/site_perl/5.005 .) at admin.cgi line 28.

Make sure they exist, permissions are set properly, and paths are set correctly.

I'm positive you need to change anything that begins with "/u/thachret" to "/home/thachret" or "/home/thachret/public_html"

[This message has been edited by lordmouse (edited November 25, 1999).]
Quote Reply
Re: Virtual Ave Install Error In reply to
thank you, i got it to now.


# -------------
# Links
# -------------
# Links Manager
#
# File: links.cfg
# Description: Contains all the setup variables.
# Author: Alex Krohn
# Email: alex@gossamer-threads.com
# Web: http://www.gossamer-threads.com/
# Version: 2.0
#
# (c) 1998 Gossamer Threads Inc.
#
# This script is not freeware! Please read the README for full details
# on registration and terms of use.
# =====================================================================

# Paths and URL's to Important Stuff
# --------------------------------------------------------
# PATH and URL of Admin CGI directory. No Trailing Slash.
$db_script_path = "/home/my_log_in_name/public_html/cgi-bin/admin";
$db_dir_url = "http://my_site/cgi-bin/admin";

# URL of User CGI directory. No Trailing Slash.
$db_cgi_url = "http://my_site/cgi-bin";

# PATH and URL of Pages to be built. No Trailing Slash.
$build_root_path = "/home/my_log_in_name/public_html/pages/";
$build_root_url = "http://my_site/pages/";

# PATH and URL of What's New page. No Trailing slash.
$build_new_path = "$build_root_path/New";
$build_new_url = "$build_root_url/New";

# PATH and URL of What's Cool page. No Trailing slash.
$build_cool_path = "$build_root_path/Cool";
$build_cool_url = "$build_root_url/Cool";

# PATH and URL of What's Rating page. No Trailing slash.
$build_ratings_path = "$build_root_path/Ratings";
$build_ratings_url = "$build_root_url/Ratings";

# Database Options
# --------------------------------------------------------

Quote Reply
Re: Virtual Ave Install Error In reply to
DealTime -->

Looking at your links.cfg I notice that you're using trailing slashes.
Off course your link to your home-linking-page works this way, but now your not being able to open your New, Cool etc. pages.

I've edited all my templates and removed all the slashes after the <%build_root_url%> and <%build_root_path%>,
but still some pages won't open the right way and I'm send to s19.virtualave.net Frown

Anyone an idea?

[This message has been edited by Scarface (edited November 26, 1999).]