I'm trying to get my visitor when they visit my site to auto connect to the other site once

I did put this

<?php require_once("http://webtoconnect.com");  ?>

but I guess this code wouldn't work it just give me an error something like this

Warning: require_once() [function.require-once]: URL file-access is disabled in the server configuration in /home/yoursn0w/public_html/tv/index.php on line 1

so I wonder how can I do to get my visitor stay in the same page but auto connect once to the site I want?

link|improve this question

What do you mean with 'auto connect'? – Quasdunk Aug 12 '11 at 7:51
1  
you should look into cURL maybe – Ibu Aug 12 '11 at 7:51
3  
This is very bad practice - if the remote site is down, your script will time out. It will also slow down your script considerably even if everything works out well. What are you trying to achieve with this? – Pekka Aug 12 '11 at 7:52
the thing is that there is a videos on my site and the site that need to be connect once required to be visit once but don't need to stay or anything just connect even 1 second – Ali Aug 12 '11 at 7:54
@ John Green - PageSpike means if you are on my website but you already visit to the other site without you even know... – Ali Aug 12 '11 at 7:56
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

I'm not sure of what you mean by auto connect to the other site but if your goal is to include a remote page in php code you configuration should have the directive :

allow_url_include = On

in your php.ini (available since PHP 5.2.0. Note that directive is set to off by default due to security reason. By using this directive in a none safe environement (typically internet) you will be exposed to major security risk , be aware of that.

If your goal is just display a remote site to you visitor you can simply use an iframe like this :

<iframe src="http://google.fr" height="250" width="350"></iframe> 
link|improve this answer
1  
I wish the OP will never open up remote inclusion. This is very bad. – Shef Aug 12 '11 at 7:57
thanks for the tip about the php.ini file that I have to enable but what if I don't want them to even know that they connected to that site? like I want them to stay on my site still? – Ali Aug 12 '11 at 7:57
@grunk I have this option allow_url_fopen and it was enable by it defaults???? – Ali Aug 12 '11 at 8:01
@Shef , i'm agree with you, i said in my answer that it was not safe, beyond that it's not my concern :P – grunk Aug 12 '11 at 8:01
@Ali allow_url_fopen is different from allow_url_include. it allow you to do fopen(google.com) – grunk Aug 12 '11 at 8:02
show 3 more comments
feedback

maybe you just need this:

<?php file_get_contents('http://webtoconnect.com'); ?>

I'm not sure what you realy need :D

link|improve this answer
there is no more error when I put that but when I check on the firewall isn't connected to the site? – Ali Aug 12 '11 at 8:12
1  
there is connection between servers user does not see that.. you can read more at php.net/file_get_contents – Vytautas Aug 12 '11 at 8:20
thanks I will take a look at the site you gave me :D – Ali Aug 12 '11 at 8:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.