Hello,
Thank you for your reply.
I’ll specialize the question.
At page
http://www.interlit2001.com/contact-1.htm there are two scripts:
<?php
define('_SAPE_USER', 'e4e81a2de78ebc730e6903a8823e97ca');
require_once('/home/account/public_html/'._SAPE_USER.'/sape.php');
require_once('/home/account/public_html/'._SAPE_USER.'/linklink.php'); $sape = new SAPE_client();
$linklink = new LinkLink_client();
echo $sape->return_links(3).' ';
echo $linklink->return_links(3);
?>
And
<?php
echo $sape->return_links().' ';
echo $linklink->return_links();
?>
All displayed OK with non standard lines (red).
At page
http://www.interlit2001.com/contact-1b.htm there are two scripts:
<?php
define('_SAPE_USER', 'e4e81a2de78ebc730e6903a8823e97ca');
require_once($_SERVER['DOCUMENT_ROOT'].'/'._SAPE_USER.'/sape.php');
require_once($_SERVER['DOCUMENT_ROOT'].'/'._SAPE_USER.'/linklink.php'); $sape = new SAPE_client();
$linklink = new LinkLink_client();
echo $sape->return_links(3).' ';
echo $linklink->return_links(3);
?>
and
<?php
echo $sape->return_links().' ';
echo $linklink->return_links();
?>
With standard lines (red) non displayed links in blue rectangle.
At page
http://www.interlit2001.com/contact-1a.htm there is one script:
<?php
echo $sape->return_links().' ';
echo $linklink->return_links();
?>
All bottom of page non displayed.
This is how .htaccess currently looks like:
-----------------------------------------
DirectoryIndex index.htm index.php
ErrorDocument 404 /404.html
AddType x-httpd-php .php .htm .html
CHMOD on folder and executable scripts is 755.
Forum vBulletin 3.6.2 (PHP4) and other scripts had worked normally.
Note:These scripts at the previous hosting had worked normally with standard lines.