Webmastersite.net
Register Log In

Missing @ in filefunctions.php
Missing @ in line 126 filefunctions.php

Comments on Missing @ in filefunctions.php

Dagge
Member

Usergroup: Customer
Joined: Oct 24, 2004
Location: Sweden

Total Topics: 5
Total Comments: 12
Dagge
Posted Jun 02, 2005 - 12:34 PM:

Found that a @ is missing on line 126 filefunctions.php

$filecontents = file_get_contents($url);
shoud be
$filecontents = @file_get_contents($url);
(As it was in earlier versions for example 3.12)

This causes errors in get META description and Dead link checks.
Paul
developer

Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California

Total Topics: 61
Total Comments: 7868
Paul
Posted Jun 03, 2005 - 1:26 AM:

You're simply surpressing the error with that. It doesn't do anything about the problem. Probably fopen url wrapper aren't enabled so you can't grab remote pages.

I'll be looking into curl support in the future.
Dagge
Member

Usergroup: Customer
Joined: Oct 24, 2004
Location: Sweden

Total Topics: 5
Total Comments: 12
Dagge
Posted Jun 03, 2005 - 4:03 AM:

Now I'm grabbing remote pages just fine and downcheck doesn't produce warnings of errors in filefunctions.php line 126.

But only after I've added the curl.
Paul
developer

Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California

Total Topics: 61
Total Comments: 7868
Paul
Posted Jun 03, 2005 - 11:02 AM:

And how did you add the curl? raised eyebrow Didn't appear that simple at a glance.
Dagge
Member

Usergroup: Customer
Joined: Oct 24, 2004
Location: Sweden

Total Topics: 5
Total Comments: 12
Dagge
Posted Jun 04, 2005 - 5:21 AM:

Added @ in filefunctions.php line 126:

$filecontents = @file_get_contents($url);

(As it was in earlier versions for example 3.14)
Paul
developer

Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California

Total Topics: 61
Total Comments: 7868
Paul
Posted Jun 06, 2005 - 10:18 AM:

That doesn't do anything, @ is simply error supression. The curl library -- if your host supports it -- would be the only way to do do link checks or anything else that requries grabbing a remote url when your host has disabled fopen url wrappers. And surely if your host does support them, it wouldn't give an error.
Dagge
Member

Usergroup: Customer
Joined: Oct 24, 2004
Location: Sweden

Total Topics: 5
Total Comments: 12
Dagge
Posted Jun 06, 2005 - 11:17 AM:

Well the Get META function works well with @ in that place. Without the @, it doesn't. I have no idea why, just thought reporting this could be helpful in some way.
Search thread for
Download thread as
  • 0/5
  • 1
  • 2
  • 3
  • 4
  • 5



This thread is closed, so you cannot post a reply.