ria pc game
fle game engine -
fle game engine -


Balls and holes PC game / Balls and Holes PC игра
Dragonella игра версия 17.09.2020 браузерная /скачиваемая
Многоликий: dress - hordes win/linux/android/html5 игра браузерная /скачиваемая

30 2024 19:58
   ?


. -9 . , , , . . , - . 0 -1 , , ,
...

, , , , , photshop, php, c++, , delphi, cms,

cms ?

, cms. - - megainformatic cms free

megainformatic cms free !!! my sql . .

cms, my sql - (megainformatic cms, megainformatic cms express ), .

.

- settings, -.

, :

1.)
2.)
3.) settings.php


.

- cms install, install.php .

4:

1) , ( , );

2) ( - , , , ) -

3) ( install.php, );

4) - settings.php, , , . ( install.php settings.php , - , install , . . , ).



, , .

cms install install.php.

install.php -

<?php $install_system_name = 'megainformatic cms express'; ?>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">

<title> <?php echo $install_system_name; ?></title>

<style>

#main {

width: 100%;

margin: 0;

padding: 0;

font-size: 12px;

color: #000000;

background: #ffffff;

font-family: Verdana, Arial, sans-serif;

font-weight: normal;

text-align: center;

}

#container {

width: 800px;

background: #fae3a6;

margin: 0 auto;

}

#desc {

width: 600px;

text-align: left;

margin: 0 auto;

}

#db_connect_form {

width: 480px;

text-align: left;

margin: 0 auto;

background: #cecece;

}

.blue_text {

color: #1c71ad;

}

.orange_bold_text {

color: #ff8e15;

font-weight: bold;

}

.start_install_btn {

color: #ffffff;

border: 2px #ffffff solid;

background: #12be16;

}

</style>

</head>

<body>

<div id="main">

<div id="container">

<?php

///////////////////////////////////

//

function deploy_database_data()

{

$result = 0;

global $dbhost;

global $dbuser;

global $dbpassw;

global $dbsite;

$papers = array();

if ($rc = mysql_connect($dbhost, $dbuser, $dbpassw))

{

mysql_select_db($dbsite);

//$table = PAPERS_TABLE;

/*$sql = 'SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";';

$s = mysql_query($sql);

if ( !$s )

{

die('Invalid query: ' . mysql_error());

return $result;

}*/

$sql = 'CREATE TABLE IF NOT EXISTS papers (

pageid int(11) NOT NULL AUTO_INCREMENT,

pagetitle varchar(255) NOT NULL,

pagefile varchar(255) NOT NULL,

UNIQUE KEY pageid (pageid)

) ENGINE=MyISAM DEFAULT CHARSET=cp1251 AUTO_INCREMENT=10 ;';

$s = mysql_query($sql);

if ( !$s )

{

die('Invalid query: ' . mysql_error());

return $result;

}

mysql_close($rc);

}

if ($rc = mysql_connect($dbhost, $dbuser, $dbpassw))

{

mysql_select_db($dbsite);

$sql = "INSERT INTO papers (pageid, pagetitle, pagefile) VALUES

(1, 'CMS ', 'papers/home.txt'),

(2, ' ', 'papers/maket/maket.txt'),

(3, ' ', 'papers/verstka/verstka.txt'),

(4, ' ', 'papers/modules/modules.txt'),

(5, ' , ', 'papers/content/content.txt'),

(6, ' , ', 'papers/hosting/hosting.txt'),

(7, ' ', 'papers/promo/promo.txt'),

(8, ' - ', 'papers/templates/templates.txt'),

(9, ' -', 'papers/shop/shop.txt');";

$s = mysql_query($sql);

if ( !$s )

{

die('Invalid query: ' . mysql_error());

return $result;

}

mysql_close($rc);

$result = 1;

}

return $result;

}

// settings.php

function create_config()

{

$result = 0;

global $dbhost;

global $dbuser;

global $dbpassw;

global $dbsite;

global $site_url;

$data = '<?php'.PHP_EOL;

$data .= '/* ====================================================='.PHP_EOL;

$data .= 'megainformatic cms express 14.04.2012'.PHP_EOL;

$data .= 'http://www.megainformatic.ru'.PHP_EOL;

$data .= ': (megainformatic)'.PHP_EOL;

$data .= '***************************'.PHP_EOL;

$data .= ' '.PHP_EOL;

$data .= '====================================================

*/'.PHP_EOL;

$data .= '// '.PHP_EOL;

$data .= '$site_url = \''.$site_url.'\'; // '.PHP_EOL;

$data .= '$dbhost = "'.$dbhost.'"; // 127.0.0.1 localhost'.PHP_EOL;

$data .= '$dbsite = "'.$dbsite.'"; // '.PHP_EOL;

$data .= '$dbuser = "'.$dbuser.'"; // - root'.PHP_EOL;

$data .= '$dbpassw = "'.$dbpassw.'"; // , '.PHP_EOL;

$data .= '// '.PHP_EOL;

$data .= '$templates = array(\'magic\', \'orange\', \'green\', \'blue\');'.PHP_EOL;

$data .= '// -'.PHP_EOL;

$data .= '$template_name = "magic";'.PHP_EOL;

$data .= 'if ( isset($_POST[\'template\']) && $_POST[\'template\'] != "" )'.PHP_EOL;

$data .= '{'.PHP_EOL;

$data .= ' if ( in_array($_POST[\'template\'], $templates) )'.PHP_EOL;

$data .= ' $template_name = $_POST[\'template\'];'.PHP_EOL;

$data .= '}'.PHP_EOL;

$data .= '$template_path = "design/".$template_name;'.PHP_EOL;

$data .= '?>'.PHP_EOL;

$config_filename = 'settings.php';

//

$cfg_handler = fopen($config_filename, "w");

$result = fwrite($cfg_handler, $data);

fclose($cfg_handler);

return $result;

}

// -

function create_install_end_flag_file()

{

$result = 0;

global $istall_ended_filename;

$data = 'installation ended ok'.PHP_EOL;

//

$flg_handler = fopen($istall_ended_filename, "w");

$result = fwrite($flg_handler, $data);

fclose($flg_handler);

return $result;

}

///////////////////////////////////

//

/*

0)

1) start_install

2) ,

3) -

4) -

5) settings.php

6) 4 5

install, install install_ended.txt - index.php

install - install

. - index.php

!!!

*/

error_reporting(E_ERROR);

//1) start_install

$start_install_action = isset($_POST['start_install']);

// ( )

$dbhost = $_POST['database_server'];

if ( !isset($dbhost) || $dbhost == "" )

$dbhost = '127.0.0.1';

$dbuser = $_POST['database_user'];

if ( !isset($dbuser) || $dbuser == "" )

$dbuser = 'root';

$dbpassw = $_POST['database_pass'];

if ( !isset($dbpassw) /*|| $dbpassw == ""*/ )

$dbpassw = '';

$dbsite = $_POST['database_name'];

if ( !isset($dbsite) || $dbsite == "" )

$dbsite = 'my_database';

$site_url = $_POST['site_url'];

if ( !isset($site_url) || $site_url == "" )

$site_url = 'http://localhost/megainformatic_cms_express';

if ( $start_install_action )

{

//2) ! ,

$result = TRUE;

$rc = mysql_connect($dbhost, $dbuser, $dbpassw);

if ( !$rc )

{

$result = FALSE;

}

$s = mysql_select_db($dbsite);

if ( !$s )

{

$result = FALSE;

}

if ( !$result )

{

//3) -

echo '<br><span style="color: #ff0000;"> !!! !!!

</span><br><br><br>';

}

else {

mysql_close($rc);

//include_once "includes/constants.php";

//4) -

$result = deploy_database_data();

//5) settings.php

$result = $result && create_config();

//6) install install_ended.txt -

//!!! !!!

$result = $result && create_install_end_flag_file();

echo ' !!! <br><br> - '.'<a href="'.$site_url.'">'.$site_url.'</a><br><br>

<br><span style="color: #ff0000;"> !!! install . . install .</span>';

}

}

//else

//0)

//

if ( !$result )

{

echo '<img src="install/images/installer.png" border="0" alt=" '.$install_system_name.'" title=" '.$install_system_name.'" width="320" height="240">

<br><br>

<strong>'.$install_system_name.'</strong><br><br>

<div id="desc">

1) <span class="blue_text"> </span><br><br>

DENVER ,<br><br> () <span class="blue_text">http://localhost/Tools/phpmyadmin/index.php</span><br><br>



- <a href="http://localhost/Tools/phpmyadmin/index.php" target="_blank">http://localhost/Tools/phpmyadmin/index.php</a><br><br><br>

<span class="orange_bold_text">!!! DENVER !!!<br><br></span>

, , . 1.1 , . . . -.<br><br>

1.1) phpMyAdmin , , <span class="blue_text">my_database</span> <span class="blue_text">cp1251_general_ci</span> <br><br> <img src="install/images/create_new_database.jpg" border="0" alt=" " title=" " width="512" height="353"><br><br>

<span class="blue_text">Create</span><br><br>

2) , , <br><br>

<div id="db_connect_form"><br><br><strong> </strong><br><br>

<form name="site_installer" id="site_installer" action="index.php" method="post">

<strong> :</strong><br> <input type="text" name="database_server" value="'.$dbhost.'" >( <span class="blue_text">localhost</span> <span class="blue_text">127.0.0.1</span>)<br><br>

<strong> :</strong><br> <input type="text" name="database_name" value="'.$dbsite.'" >( , )<br><br>

<strong> :</strong><br><input type="text" name="database_user" value="'.$dbuser.'" > ( DENVER <span class="blue_text">root</span>)<br><br>

<strong>:</strong><br><input type="text" name="database_pass" value="'.$dbpassw.'" > ( DENVER )<br><br>

<strong> </strong><br><br>

<strong> :</strong><br><input type="text" name="site_url" size="60" value="'.$site_url.'" > ( - DENVER <strong>megainformatic_cms_express</strong> <span class="blue_text">http://localhost/megainformatic_cms_express</span>)<br><br>

<input class="start_install_btn" type="submit" name="start_install" value=" "><br><br> </form>

</div><!-- end of #db_connect_form -->

, <strong>settings.php</strong>

.<br><br>

</div><!-- end of #desc -->';

}

?>

</div><?php /* end of #container */ ?>

</div><?php /* end of #main */ ?>

</body>

</html>

4 .

2 - 1 , - .

install/images/

, install.php .

, - , index.php cms.

index.php , .

index.php -

//

// ?

$istall_ended_filename = 'install/install_ended.txt';

if ( file_exists($istall_ended_filename ) )

{

//! install

echo '
<span style="color: #ff0000;"> !!! install . <br><br> . install .</span>';

exit();

}

else {

//!

$installer = 'install/install.php';

if ( file_exists($installer ) )

{

require_once $installer;

}

}

//

.

- ( , ) .

, index.php - .

install - install install.php .

- .

, install.php .

install. - , .

install, .

, .

!

, , cms.

megainformatic cms express , .

:
0
!
0
 !


     
  -, godot,
#442  / stranger girl - -
  godot 3.4
: dress
   
     
     
  : dress - hordes 1 4
: dress - hordes  1 - win/linux/android/html5  free ,   ,
: dress - hordes  2 - win/linux/android/html5  free ,   ,
: dress - hordes  3 - win/linux/android/html5  free ,   ,
: dress - hordes  4 - win/linux/android/html5  free ,   ,
   
     
  ,
enterra   java libgdx -
enterra 3d   godot 3.5.1 -
   2023
: dress - hordes win/linux/android/html5 version -
/
   
     
     
     
     
  ,
Kate Ryan - Ella Elle L'a
sexonix
: dress - hordes pc  free  -
: dress -   - parallel reality -  -   Win, Linux,   android
   
     
     
     
  , , 2020 - ,
  gdess 2 -
ciao 2020 -  2020 -
One Way The Elevator     Dr. Perec !!!
   
     
     
  , , , .
          -   ,   ( delphi, c++, html5), ,    ,        -   1  -    14
    2006
  -      -
   
     
     
 
Witches Trainer 1.6 and Innocent Witches 0.1 -      -
Futa in the Police Academy -
gdess c
gdess2
   
     
 
Prince of Persia , , , adventure
Dreams Reality
Little Office Trouble
Tetris
   
     
     
 
Neon Battle Tank 2
Robocop
Robocop (Ocean )
Karateka ,
   
     
     
 
Prehistorik 2 -
    15 -   The Dreik, megainformatic, ,
  Mega game
Black planet   -   ,
   
     
     
 
Teenage Mutant Ninja Turtles II
2 nights
Wolfenstein 3D -
Golden Axe -
   
     
     
  (3), (1)
Aladdin
Surprise! Adlib Tracker 2 (sadt 2)
Lamborghini ,
Risky Woods
   
     
     
 
Black Box horror
  logic
Fire power
Red Ball Forever
   
     
     
 
Teresa - dos
Shadow Knights
-0010.01
0010.01 - !
The Cycles - International Grand Prix Racing
   
     
     
 
Fantastic Dizzy adventure
Ugh!
Budokan: The Martial Spirit - fighting
Vida -
   
     
     
  (3), (1)
 Starcraft
Inspace
Key shield
Team Ninja Unkende 4 - Ninja Gaiden 4   pc
   
     
     
 
Laser Adventures - fast hardcore shooter
      !!!
Ninjuzi -  neo shooter
Plants vs Zombies 3 tower defence
   
     
  ,
Shmupnage - cosmos shooter
Undercat pc
Cold station - shooter, survival
Cut the rope - ,
   
     
     
 
Crown Dungeon 2
dragonella
crush shooter
grievous medical shooter
   
     
     
 
Foxyland 2
Foxyland 2
quidget 2
quidget 2
  ,  !
Pigglet   , english
   
     
  ,
Google Media Grabber -
Anova
anova
A Knots Story
A Knots Story
Sabotage
sabotage
   
     
  ,
24500 .
satellite /  -
ria pc game robocop
star inheritance    zx spectrum
   
     
  ,
ria pc game - pink dreams come true -
/
      24.09.2019
     - megainformatic live chat
5500 .
Game Builder -
   
     
  , ,
     6
      ?
 -
150 .
   
     
  , ,
   -    -   (kk hny) -
  -   -   (kk scp) -
  2013  megainformatic  ru
    -
   
     
  , , cms,
 freeware     / Balls on lif +    / How make a game
250 .
   megainformatic cms admin files  mysql
1250 .
   -     -   (akk hiss)
350 .
   
     
  ,
dream world -  2d    fle game engine - c++  directx 9
  -   (kk kz) -
  -
   fle game engine - Simple game
   
     
  , , ria xxl , fly snow 3d , . -
    -    PC / Balls and Holes - Green Ball Holidays PC game
ria xxl -  4.09.2019
150 .
fle game generator - fle   - fly snow 3d    1.0.3.1  13.12.2016 -
350 .
 
     
  fle game engine -
fle game engine         Windows Directx 9c -
800 .
 PC  / Ria PC game
240 ./
     1   / Balls on Lift Level 1 Run The Lift  0.9.2 05.10.2016 / version 0.9.2 05.10.2016
 
     
  - / megainformatic cms express files -
 /
700 .
1250 .
larry xxl     4.09.2019
150 .
   -04     7.07.2019
500 .
 
     
  Flash, Flash - .
 Flash
 flash
    cms
2500 .
megainformatic cms rs
14000 .
 
     
  (multi lang), , . - (megainformatic cms social), megainformatic cms groupon, keywords gen + , .
500 .
megainformatic cms social
12000 .
megainformatic cms groupon
14000 .
 -

megainformatic.ru/webjob/ - -

 
 

megainformatic.ru/webjob/

megainformatic.ru/webjob/
webjob
template selector
350 .
megainformatic cms express files +  slider
300 .

megainformatic.ru/webjob/ - -

 
     
 

,

megainformatic cms admin
1250 .
 delphi direct x 3d
megainformatic cms seo
550 .
megainformatic cms stat kit
500 .

megainformatic cms admin -

 
     
 
megainformatic cms express
350 .
megainformatic cms e-mailer
5800 .
megainformatic cms e-shop
3000 .
megainformatic cms e-pro
500 .
 
 
 
 
     
     
 

megainformatic cms free - Photoshop

megainformatic cms free
 photoshop
650 .
 photoshop -  !
700 .
 photoshop -
750 .

, Adobe Photoshop. , - GIMP, Corel Photo Paint .

 

 
 
     
 

2d 3d, , !

  ,  !
300 .
Donuts 3D
:

. , , !!! ( , ! ).

 
     
 
 
 
     
 

, : -

  -
350 .
  -
510 .
   ?
fle game engine
:  -

- , , , . - - : -

 
     
 
 
 
     
 

, 3ds max, photoshop, c++, directx, delphi php.

 3ds max
 c++  directx
 php
 3d   delphi directx
500 .
300 .

, .

.

 
     
 
 
 
     
     
 

   , !  delphi directx
  CJ andy -    mp3
 Photoshop free ( )
megainformatic cms express -     php + my sql
400 .

Photoshop free, delphi directx - , !, mp3 - , megainformatic cms express - php + my sql.

 
     
 
 
 
     
 

,

450 .
 Delphi Directx 8.1
   3d studio max
   FL Studio

, delphi directx 8.1 ( 3d ), 3d studio max, - Fruity Loops Studio

 
     
 
 
 
     
     
     
 
megainformatic cms express files

- megainformatic cms express files

megainformatic cms express files - , . mysql. . php, my sql.

- !!!

3 , , .

...

 
 
fle game engine -
fle game engine -


Something: Unexplained 2 captive of desires / :  2
     - 6 , 81 , 220 mp3
Quidget 2    -  , english
megainformatic
megainformatic live chat
X
: 0,1650