Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

about articles...

Asked Modified Viewed 3,241 times
B
Blooddarkness
B
  • Junior Member, joined since
  • Contributed 12 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
asked
Junior Member

hi there,

are there any way to encryp the links on the articles??
0 replies

10 posts

S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
answered
Veteran Member

Hmm, can you describe further what exactly you mean with "encrypt" the links ?

You can easily make it so guests can't access the articles, if that's what you mean ?

- if yes, then try to search on "restricted". ;)
0 replies
B
Blooddarkness
B
  • Junior Member, joined since
  • Contributed 12 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Junior Member

no because a, member can come and copy the link on the articles, i want to encryp a link...
0 replies
B
Basti
B
Basti 10
[PHP-Fusion Crew Member & Admin from June 2008 - December 2010]

http://basti2web.de - Support Site for my infusions
  • Veteran Member, joined since
  • Contributed 1,099 posts on the community forums.
  • Started 32 threads in the forums
answered
Veteran Member

If you encrypt a link, nobody can use the link.
So there is no sense at all to do this.
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

You could, theoretically, although it would not be very efficient in practice.

You could send it to a page on your website that has an encrypted $_REQUEST variable, and have that page interpret/make use of it, and include that page on pagename.php using an include statement in PHP. Although this would be very hard, and an encryption algorithm would be simple to crack if you used $_GET. But I don't think it would be possible to cover it up by using $_POST, because of the limitations that a text link have.

Good luck though trying..
0 replies
B
Blooddarkness
B
  • Junior Member, joined since
  • Contributed 12 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Junior Member

well... i just want to hide, the links, so it just work on my web. Any idea?
0 replies
G
googlebot
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

Quote

blooddarkness wrote:
well... i just want to hide, the links, so it just work on my web. Any idea?

Above post, or

don't post them in the first place

It's almost impossible to do what you want. By almost, I mean my above post is one of the few (if not only, exceptions are variations) ways to accomplish it.

It's just how the internet works.
0 replies
B
Basti
B
Basti 10
[PHP-Fusion Crew Member & Admin from June 2008 - December 2010]

http://basti2web.de - Support Site for my infusions
  • Veteran Member, joined since
  • Contributed 1,099 posts on the community forums.
  • Started 32 threads in the forums
answered
Veteran Member

Maybe you should first explain why you want to hide a link?
I think, that this does not make sense at all.

If you want to hide a link, then don't publish the link on your website.

At the latest when the people visit the website of the link, they know the website/link.
0 replies
B
Blooddarkness
B
  • Junior Member, joined since
  • Contributed 12 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Junior Member

i want to hide the link so i can protect it for the members, fot it can not... be stolen and maybe use on another web.
0 replies
W
WEC
W
WEC 10
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 5 threads in the forums
answered
Veteran Member

You could use custom pages and then code links something like this:

<?php
if (stristr($_SERVER['HTTP_REFERER'], "your_site.com")){
echo "<a href='http://google.com' target='_blank'>Local link only visible from pages within domain</a>";
}
else {
echo "Nananana nahhhhh";
}
?>
0 replies
B
Blooddarkness
B
  • Junior Member, joined since
  • Contributed 12 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
answered
Junior Member

and what this supose to do?... just in a custom page?
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 10 posts
  • Votes 0 votes
  • Topic users 5 members

5 participants

W
W
WEC 10
  • Veteran Member, joined since
  • Contributed 946 posts on the community forums.
  • Started 5 threads in the forums
S
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
B
B
Basti 10
[PHP-Fusion Crew Member & Admin from June 2008 - December 2010]

http://basti2web.de - Support Site for my infusions
  • Veteran Member, joined since
  • Contributed 1,099 posts on the community forums.
  • Started 32 threads in the forums
B
B
  • Junior Member, joined since
  • Contributed 12 posts on the community forums.
  • Started 3 threads in the forums
  • Started this discussions
G
G
Visit the new home of the merge between Hacking Vs. Security and Security Override!
My copyright removal has been switched over from HvS to SecurityOverride.
  • Senior Member, joined since
  • Contributed 638 posts on the community forums.
  • Started 28 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet