NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

<?php
header("content-Type: text/html; charset=UTF-8");


/*
* http://www.orumcekoyun.com
* Ücretsiz Flash Oyun Scripti
* Free Flash Game Site Script
*****************************************************************************
**************************** STEP 2 *****************************************
*****************************************************************************
TR: Bu bölümde gerekli dosyaların varlığını ve yazma izinlerini kontrol edecez
EN: At this step we will check all needed directories exists
*/

if ( basename($_SERVER['PHP_SELF'] ) == "step2.php" ) {
echo'<script>location.href = "index.php";</script>';
exit();
}

if (isset($_POST['submit'])) {

if ( file_exists('lang/'.$_POST['lang'].'.php')) {
include('lang/'.$_POST['lang'].'.php');
echo '<center><span class="step">'.$install_lang['step'].' - 2</span><div class="cleared"></div>';
} else {
echo '<center><span class="step">STEP - 2</span><div class="cleared"></div>';
die('TR: Seçilen dil dosyası bulunamıyor <br/> EN: Selected language file not found');
}

if($_POST['form_token'] != $_SESSION['form_token']) {
die($install_lang['follow_steps']);
}

} else {
die('TR: Lütfen kurulum adımlarını sırayla izleyiniz <br/> EN: Please follow installation steps');
}
?>

<p>
<?php echo $install_lang['file_control'];
$errpermission = 0;
$errexists = 0;
$_SESSION["form_token"] = md5(rand(time (), true)) ;

?>
</p>
<p>
<table>
<tr>
<td class="tablecell" width="200"><strong><?php echo $install_lang['filefolder'] ?></strong></td>
<td class="tablecell" width="150" style="text-align:center"><strong><?php echo $install_lang['isexists'] ?></strong></td>
<td class="tablecell" width="250" style="text-align:center"><strong><?php echo $install_lang['permission'] ?></strong></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>avatar</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../avatar') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../avatar')), -3)==755 ) { echo '<span class="green">755</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../avatar')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">755</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>cache</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../cache') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../cache')), -3)==755 ) { echo '<span class="green">777</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../cache')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">777</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>includes</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../includes') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../includes')), -3)==755 ) { echo '<span class="green">755</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../includes')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">755</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>lang</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../lang') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../lang')), -3)==755 ) { echo '<span class="green">755</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../lang')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">755</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>libs</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../libs') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1;} ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../libs')), -3)==755 ) { echo '<span class="green">755</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../libs')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">755</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>moduller</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../moduller') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../moduller')), -3)==755 ) { echo '<span class="green">755</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../moduller')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">755</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>oyunlar</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../oyunlar') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../oyunlar')), -3)==755 ) { echo '<span class="green">777</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../oyunlar')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">777</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>panel</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../panel') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../panel')), -3)==755 ) { echo '<span class="green">755</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../panel')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">755</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>temalar</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../temalar') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../temalar')), -3)==755 ) { echo '<span class="green">755</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../temalar')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">755</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>templates_c</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../templates_c') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../templates_c')), -3)==755 ) { echo '<span class="green">777</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../templates_c')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">777</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>uye</strong> <?php echo $install_lang['directory'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( is_dir('../uye') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../uye')), -3)==755 ) { echo '<span class="green">755</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../uye')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">755</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>ayarlar.php</strong> <?php echo $install_lang['file'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( file_exists('../ayarlar.php') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../ayarlar.php')), -3)==644 ) { echo '<span class="green">644</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../ayarlar.php')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">644</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>fonksiyon.php</strong> <?php echo $install_lang['file'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( file_exists('../fonksiyon.php') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../fonksiyon.php')), -3)==644 ) { echo '<span class="green">644</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../fonksiyon.php')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">644</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>fonksiyon2.php</strong> <?php echo $install_lang['file'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( file_exists('../fonksiyon2.php') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../fonksiyon2.php')), -3)==644 ) { echo '<span class="green">644</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../fonksiyon2.php')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">644</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>index.php</strong> <?php echo $install_lang['file'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( file_exists('../index.php') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../index.php')), -3)==644 ) { echo '<span class="green">644</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../index.php')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">644</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>rss.php</strong> <?php echo $install_lang['file'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( file_exists('../rss.php') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../rss.php')), -3)==644 ) { echo '<span class="green">644</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../rss.php')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">644</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>sessioncheck.php</strong> <?php echo $install_lang['file'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( file_exists('../sessioncheck.php') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../sessioncheck.php')), -3)==644 ) { echo '<span class="green">644</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../sessioncheck.php')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">644</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>sitemap.xml</strong> <?php echo $install_lang['file'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( file_exists('../sitemap.xml') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../sitemap.xml')), -3)==644 ) { echo '<span class="green">777</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../sitemap.xml')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">777</span> )'; $errpermission=1; } ?></td>
<tr>
<tr>
<td class="tablecell" width="200"><strong>smartydefine.php</strong> <?php echo $install_lang['file'] ?></td>
<td class="tablecell" width="150" style="text-align:center"><?php if ( file_exists('../smartydefine.php') ) { echo '<span class="green">'.$install_lang['exists'].'</span>'; } else { echo '<span class="red">'.$install_lang['notexists'].'</span>'; $errexists = 1; } ?></td>
<td class="tablecell" width="250" style="text-align:center"><?php if ( substr(sprintf('%o', fileperms('../smartydefine.php')), -3)==644 ) { echo '<span class="green">644</span>'; } else { echo $install_lang['active'].' <span class="red">'.substr(sprintf('%o', fileperms('../smartydefine.php')), -3).'</span> ('; echo $install_lang['needed'].'<span class="green">644</span> )'; $errpermission=1; } ?></td>
<tr>
</table>
<form id="file_control_form" method="post" action="index.php?step=3">
<input type="hidden" name="lang" value="<?php echo $_POST['lang'] ?>" />
<input type="hidden" name="form_token" value="<?php echo $_SESSION['form_token']; ?>" />
<input id="submit" name="submit" type="submit" value="<?php echo $install_lang['next'] ?>">
</form>
</p>
</center>
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.