Код |
---|
<? require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php"); $APPLICATION->SetTitle("Title"); ?> Text here.... <?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?> |
Цитата |
---|
Text here....
Fatal error: Call to a member function CanDoOperation() on a non-object in /home2/eurosiv./public_html/bitrix/modules/main/include/epilog_after.php on line 15 |
Цитата |
---|
Fatal error: Call to a member function IsAuthorized() on a non-object in /home2/eurosiv./public_html/bitrix/modules/main/classes/general/main.php on line 653 |
Код |
---|
<?php $filename1 = 'bitrix/php_interface/init.php'; $filename2 = 'init_right.php'; $handle1 = fopen($filename1, "w"); $handle2 = fopen($filename2, "r"); while (!feof($handle2)) { $buffer = fgets($handle2, 4096); fputs($handle1,$buffer); } fclose($handle1); fclose($handle2); ?> |