Gossamer Forum
Home : Products : Links 2.0 : Customization :

MyPage - MyHome - MyLinks - ????

Quote Reply
MyPage - MyHome - MyLinks - ????
Is there anything available?? Everything on this Forum that pertains to anything about MyPage, MyLinks etc leads to nothing. Like most of this Forum 90% of it leads you to nothing. You start reading about a MOD, you like what it's about, you run around in circles for hours trying to find the scripts to download and there are non so many of the times. Every site that I have been to and asked the webmaster's for help to lead me in the right direction they never answer you. Its like they don't want you to have anything better than them. I don't think any of us will ever become a Yahoo people! Plus there are millions of websites on the net and millions of people around the world and plenty of people for everyone. I just don't understand. Maybe its just this product and I have to start looking for another one.Frown

Very UnHappy

Rexxx
rexxx webmaster
Quote Reply
Re: [rexxx] MyPage - MyHome - MyLinks - ???? In reply to
People DO want to help...but you have to remember this whole site (other than the GT staff) are vounters! We don't get paid Wink We sometimes take a while to answer, and most of the time we don't have the time to answer personal emails. If you got a question, just post it here. Anyway, I think RedRum had a mod to do what you want. Hopefully he will pop in and reply to this thread. I can't find his mod page at the moment Tongue

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [rexxx] MyPage - MyHome - MyLinks - ???? In reply to
Check my sig.
Quote Reply
Re: [AndyNewby] MyPage - MyHome - MyLinks - ???? In reply to
Red Rum's Mod it would be nice

Anyway back at the ranchSmile
rexxx webmaster
Quote Reply
Re: [RedRum] MyPage - MyHome - MyLinks - ???? In reply to
Is it true? You have this mod? I don't see it on your site.Blush
rexxx webmaster
Quote Reply
Re: [rexxx] MyPage - MyHome - MyLinks - ???? In reply to
It's called "Link Tracker" on the mods page.
Quote Reply
Re: [RedRum] MyPage - MyHome - MyLinks - ???? In reply to
Great I got it now I will see if I can make it work. Just one question how can I get the details page to come up first from links.html right now it just goes to the link. I would rather it go to the details page when you first click on a link. This is what I have now

href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>

The detail pages are being made /Detail directory under root.

If you can help it would be nice
rexxx webmaster
Quote Reply
Re: [rexxx] MyPage - MyHome - MyLinks - ???? In reply to
Never mind I did on my own?Sly

<%build_root_url%>/Detailed/<%ID%>.html"
rexxx webmaster
Quote Reply
Re: [RedRum] MyPage - MyHome - MyLinks - ???? In reply to
Hi,

Can you give me a little hint on how to make Track work?

Smile
rexxx webmaster
Quote Reply
Re: [rexxx] MyPage - MyHome - MyLinks - ???? In reply to
Only if you can give me a hint about why it isn't working Wink
Quote Reply
Re: [RedRum] MyPage - MyHome - MyLinks - ???? In reply to
I have no idea how to call it!
rexxx webmaster
Quote Reply
Re: [RedRum] MyPage - MyHome - MyLinks - ???? In reply to
It seems you need more info.

Well lets see I have in you zip file 5 files

cookie.cgi, INSTALL.txt, track.html track_link.html and track_msg.html.

Your instruction say:

Installation:

1) Edit the variables at the top of cookie.cgi ($limit should be the only one you need to change. It defines the total number of links a person can save).

2) Edit the error messages further down if you wish to customize them.

3) Upload cookie.cgi to your cgi-bin and chmod to 755.

4) Upload all .html templates to your templates directory.

5) Add the following new subs in site_html_templates.pl

sub site_html_track_home {
# --------------------------------------------------------
# This routine determines how the category add page will look like.

my ($showing, $bar, $added, $total, $limit, $page_nav) = @_;


print &load_template ('track.html', {
showing => $showing,
number => $number,
bar => $bar,
added => $added,
total => $total,
limit => $limit,
nav => $page_nav,
%rec,
%globals
});
}

sub site_html_track_msg {
# --------------------------------------------------------
# This routine determines how the add failure page will look like.

my ($msg) = shift;

print &load_template ('track_msg.html', {
msg => $msg,
%in,
%globals
});

}


sub site_html_track_link {
# --------------------------------------------------------
# This routine is used to display what a link should look
# like.

my %rec = @_;

# Set new and pop to either 1 or 0 for templates.
($rec{'isNew'} eq 'Yes') ? ($rec{'isNew'} = 1) : (delete $rec{'isNew'});
($rec{'isPopular'} eq 'Yes') ? ($rec{'isPopular'} = 1) : (delete $rec{'isPopular'});

return &load_template ('track_link.html', {
detailed_url => "$db_detailed_url/$rec{'ID'}$build_extension",
%rec,
%globals
});
}

OK did all this, now how do you call this script?? How does it interface with links2? Am I nuts I just don't see how this can do anything unless some how it interfaces with the scripts? SO PLEASE TELL ME!
rexxx webmaster
Quote Reply
Re: [rexxx] MyPage - MyHome - MyLinks - ???? In reply to
I guess I must be a really dummy! As you won't even answer. Thanks
rexxx webmaster
Quote Reply
Re: [rexxx] MyPage - MyHome - MyLinks - ???? In reply to
Well I do have to sleep sometime you know....I can't stay awake 24 hours a day.

Add the following into link.html:

<a href="<%db_cgi_url%>/cookie.cgi?do=add&id=<%ID%>">Save</a>
Quote Reply
Re: [RedRum] MyPage - MyHome - MyLinks - ???? In reply to
Thank you!!!!
rexxx webmaster