Register question

01/04/2010 15:50 EliteWarrior#1
Can some one tell me how to host the registration page on my webhost without having it forwarding you to a page with for example:

[Only registered and activated users can see links. Click Here To Register...]


I want it all in one frame so when i visit [Only registered and activated users can see links. Click Here To Register...]

It stays at mydekaron.com without going to [Only registered and activated users can see links. Click Here To Register...] well visibly.

EDIT:let me make question more easier,how to succesfull host registerpage at webhost?


Cant find a answer to it
01/04/2010 18:05 l2zeo#2
Quote:
Originally Posted by EliteWarrior View Post
Can some one tell me how to host the registration page on my webhost without having it forwarding you to a page with for example:

[Only registered and activated users can see links. Click Here To Register...]


I want it all in one frame so when i visit [Only registered and activated users can see links. Click Here To Register...]

It stays at mydekaron.com without going to [Only registered and activated users can see links. Click Here To Register...] well visibly.


Cant find a answer to it
This ... See how
Should I use hamachi?

Not Found
The requested URL /register was not found on this server.
01/04/2010 18:07 EliteWarrior#3
Quote:
Originally Posted by l2zeo View Post
This ... See how
Should I use hamachi?

Not Found
The requested URL /register was not found on this server.


Ehm those ips are not real its an example
01/04/2010 20:29 freeskier4lif3#4
Just make a page on your main site like [Only registered and activated users can see links. Click Here To Register...] and use the following code on it.

Code:
<iframe src="http://5.5.68.84/register/register.php" frameborder="0" width="x" height="y" scrolling="no"></iframe>
01/04/2010 20:42 EliteWarrior#5
Ok i made a html page with that code inside of it but a hyperlink to the register page is still needed right?

EDIT:

Thanks it worked i just googled alittle bit about iframe and succes! for the ones that want that to here is the link [Only registered and activated users can see links. Click Here To Register...]


But is there anyway to remove ip from viewing? When i view source of page ui can see the iframe code.
01/04/2010 21:25 janvier123#6
Quote:
If a hacker is able to change the URL an iframe points to on your site then the iframe is not the problem, your code is.

Any web site could serve up malware, but you have indicated that the hacker has attacked your site and changed the src attribute of the iframe, not the site serving the iframe contents. Even if you replaced an iframe with something else the fact that an attacker has managed to get to the data behind your web site used to generate the page means that they could not limit themselves to iframes, but embed other tactics, such as a redirect, or a hidden link which is clicked by javascript or any other type of common nasty.
DONT use a iframe !
learn PHP and use
PHP Code:
include "http://www.dkunderground.org/somefile.php"
or
PHP Code:
file_get_contents  string $filename  [, int $flags 0  [, resource $context  [, int $offset = -1  [, int $maxlen = -1  ]]]] ) 
Example:
PHP Code:
$somthing file_get_contents("http://www.dkunderground.org/somefile.php");
echo (
$somthing); 
01/04/2010 21:35 freeskier4lif3#7
[Only registered and activated users can see links. Click Here To Register...]

Lovely little site gives you a short domain to cover the IP. Although anyone can still find the IP of your server anyways through your client.
01/04/2010 23:10 EliteWarrior#8
I dont get,u see with iframe i can acces the register page while going to [Only registered and activated users can see links. Click Here To Register...] it then goes directly to [Only registered and activated users can see links. Click Here To Register...] At adressbar u still see [Only registered and activated users can see links. Click Here To Register...] wich is good for me to not view ip adress.

I dont get the code u gave me what to do and what to put in a test php file so i can go directly to the ip register page: [Only registered and activated users can see links. Click Here To Register...]
Sorry im still noob at php.

janvier123 answer if u can please.