Gossamer Forum
Home : Products : Links 2.0 : Customization :

pannel control frame error

Quote Reply
pannel control frame error
I read about run the links gossamer in the local machine, with xitami and perl. I installed and run ok, but

In the first time when i add a in the control pannel a category in the database, when push send button to add , appear in the same frame the pannel of control, and no insert the category in the database.

What I can do to resolve this !!


Quote Reply
Re: pannel control frame error In reply to
Most likely you have not configured the $db_dir_url variable.

Try setting the variable with the following examples:

Code:

$db_dir_url = "http://localhost/links/cgi-bin/admin";


OR

Code:

$db_dir_url = "http://127.0.0.1/cgi-bin/links/admin";


Good luck!

Regards,

Eliot Lee
Quote Reply
Re: pannel control frame error In reply to
My variable is ok: See this:
# PATH and URL of Admin CGI directory. No Trailing Slash.
$db_script_path = "C:/xitami/cgi-bin/links/admin";
$db_dir_url = "http://127.0.0.1/cgi-bin/links/admin";

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

# PATH and URL of Pages to be built. No Trailing Slash.
$build_root_path = "C:/xitami/webpages/links/pages";
$build_root_url = "http://127.0.0.1/links/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";