Status
Not open for further replies.

webi

Customer
I have a small forum the problem if there is a link with 403 Forbidden begins, which comes it to the error listed below.

There are repeatedly posted files with this URL there.

Code:
Fatal error: Out of memory (allocated 61865984) (tried to allocate 47960101 bytes) in /home/www/doc/19521/dcp195210177/atemio4you.com/www/dbtech/dbseo/includes/class_core.php on line 5411

Regards
 
Can you tell me what's on line 5411? The Lite version has different line numbers from the Pro version it seems.
 
Line 5411
PHP:
list($page['header'], $page['content']) = explode("\r\n\r\n", curl_exec($ch), 2);

Complete 5404 - 5412
PHP:
			if ($ch = curl_init())
			{
				// This was not a supported internal URL				
				curl_setopt($ch, CURLOPT_URL, $urlContents);
				curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
				curl_setopt($ch, CURLOPT_VERBOSE, 1);
				curl_setopt($ch, CURLOPT_HEADER, 1);
				list($page['header'], $page['content']) = explode("\r\n\r\n", curl_exec($ch), 2);
			}
 
Same Problem in v1.0.12

Code:
Fatal error: Out of memory (allocated 61079552) (tried to allocate 47960101 bytes) in /home/www/doc/19521/dcp195210177/atemio4you.com/www/dbtech/dbseo/includes/class_core.php on line 5428
Line 5428
PHP:
list($page['header'], $page['content']) = explode("\r\n\r\n", curl_exec($ch), 2);

Complete
PHP:
if ($ch = curl_init())
{
	// This was not a supported internal URL				
	curl_setopt($ch, CURLOPT_URL, 				$urlContents);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 	1);
	curl_setopt($ch, CURLOPT_VERBOSE, 			1);
	curl_setopt($ch, CURLOPT_HEADER, 			1);
	curl_setopt($ch, CURLOPT_TIMEOUT, 			5);
	list($page['header'], $page['content']) = explode("\r\n\r\n", curl_exec($ch), 2);
}
 
I would recommend adding that domain to your external URL blacklist, as there doesn't appear to be a way to account for this.
 
Status
Not open for further replies.

Legacy DragonByte SEO

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
7,169
Customer rating
5.00 star(s) 1 ratings
Back
Top