| View previous topic :: View next topic |
|
| Author |
Message |
|
ocean
Joined: 08 Jan 2006 Posts: 3
|
Posted: Sun Jan 08, 2006 2:55 am Post subject: Will not set up correctly! |
|
|
That's the error i'm getting. Any help will be appreciated. |
|
| Back to top |
|
 |
|
heropage Site Admin
Joined: 13 Apr 2005 Posts: 92
|
Posted: Sun Jan 08, 2006 7:05 pm Post subject: |
|
|
When click on
www.bandbills.com/partners/ldiy/links.php
There is nothing on the page.
You need to copy and paste code into the page links.php.
If you did, maybe your server doesn't support fopen function. _________________ Automatic Reciprocal Link Exchange
link exchange automatically,if you sites are
using Php,Asp,Perl or Cold Fusion.Just in 2 minutes,
You will Get hundreds of links. |
|
| Back to top |
|
 |
|
ocean
Joined: 08 Jan 2006 Posts: 3
|
Posted: Mon Jan 09, 2006 9:56 pm Post subject: |
|
|
fopen is disabled. i'm using dreamhost and they suggest using curl so would this work?
| Code: | <?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.linkdiy.com/linksexchange.php?linkdiy_id=4824");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
?> |
|
|
| Back to top |
|
 |
|
heropage Site Admin
Joined: 13 Apr 2005 Posts: 92
|
Posted: Mon Jan 09, 2006 10:07 pm Post subject: |
|
|
It works now though. _________________ Automatic Reciprocal Link Exchange
link exchange automatically,if you sites are
using Php,Asp,Perl or Cold Fusion.Just in 2 minutes,
You will Get hundreds of links. |
|
| Back to top |
|
 |
|
ocean
Joined: 08 Jan 2006 Posts: 3
|
Posted: Mon Jan 09, 2006 11:02 pm Post subject: |
|
|
| it showed up after using that curl code up there, but now it has trouble with looking at different pages. |
|
| Back to top |
|
 |
|
heropage Site Admin
Joined: 13 Apr 2005 Posts: 92
|
Posted: Mon Jan 09, 2006 11:59 pm Post subject: |
|
|
Use this code!
| Code: | <?php
if (isset($HTTP_GET_VARS['page']))
{
$p2 = '&page='.$HTTP_GET_VARS['page'];
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.linkdiy.com/linksexchange.php?linkdiy_id=4824".$p2);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
?>
|
_________________ Automatic Reciprocal Link Exchange
link exchange automatically,if you sites are
using Php,Asp,Perl or Cold Fusion.Just in 2 minutes,
You will Get hundreds of links. |
|
| Back to top |
|
 |
|