Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1331079
index.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 10, 1:54 PM
Size
673 B
Mime Type
text/x-php
Expires
Mon, Jan 12, 1:54 PM (12 h, 6 m)
Engine
blob
Format
Raw Data
Handle
860874
Attached To
rINP In-Portal
index.php
View Options
<?php
$start
=
getmicrotime
();
define
(
'FULL_PATH'
,
realpath
(
dirname
(
__FILE__
)));
if
(!
file_exists
(
FULL_PATH
.
'/core/kernel/application.php'
))
{
die
(
'Please re-checkout _inportal_kernel4 cvs module into the root directory ('
.
FULL_PATH
.
') and remove kernel/kernel4 folder. Make sure to checkout correct branch (RC or HEAD).'
);
}
include_once
(
FULL_PATH
.
'/core/kernel/startup.php'
);
$application
=&
kApplication
::
Instance
();
$application
->
Init
();
$application
->
Run
();
$application
->
Done
();
$end
=
getmicrotime
();
//print_pre(get_included_files());
function
getmicrotime
()
{
list
(
$usec
,
$sec
)
=
explode
(
" "
,
microtime
());
return
((
float
)
$usec
+
(
float
)
$sec
);
}
?>
Event Timeline
Log In to Comment