A tumblelog CMS built on AJAX, PHP and MySQL.

update.php 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. if(!defined('entry')) define('entry',true);
  3. /* ===========================
  4. gelato CMS - A PHP based tumblelog CMS
  5. development version
  6. http://www.gelatocms.com/
  7. gelato CMS is a free software licensed under the GPL 2.0
  8. Copyright (C) 2007 by Pedro Santana <pecesama at gmail dot com>
  9. =========================== */
  10. ?>
  11. <?php
  12. $configFile = dirname(__FILE__).DIRECTORY_SEPARATOR."config.php";
  13. if (!file_exists($configFile)) {
  14. $mensaje = "
  15. <h3 class=\"important\">Error reading configuration file</h3>
  16. <p>There doesn't seem to be a <code>config.php</code> file. I need this before we can get started.</p>
  17. <p>This either means that you did not rename the <code>config-sample.php</code> file to <code>config.php</code>.</p>";
  18. die($mensaje);
  19. } else {
  20. require($configFile);
  21. }
  22. $db = new Conexion_Mysql(DB_name, DB_Server, DB_User, DB_Password);
  23. /*$sqlStr = "INSERT INTO `".Table_prefix."options` VALUES ('allow_comments', '0');";
  24. $db->ejecutarConsulta($sqlStr);
  25. $sqlStr = "INSERT INTO `".Table_prefix."options` VALUES ('offset_city', 'Mexico/General');";
  26. $db->ejecutarConsulta($sqlStr);
  27. $sqlStr = "INSERT INTO `".Table_prefix."options` VALUES ('offset_time', '-6');";
  28. $db->ejecutarConsulta($sqlStr);
  29. $sqlStr = "INSERT INTO `".Table_prefix."options` VALUES ('shorten_links', '0');";
  30. $db->ejecutarConsulta($sqlStr);
  31. AFTER v0.90 */
  32. $sqlStr = "INSERT INTO `".Table_prefix."options` VALUES ('rss_import_frec', '5 minutes');";
  33. $db->ejecutarConsulta($sqlStr);
  34. $sqlStr = "CREATE TABLE `".Table_prefix."feeds` (
  35. `id_feed` int(11) NOT NULL auto_increment,
  36. `url` varchar(255) NOT NULL,
  37. `title` varchar(255) NOT NULL,
  38. `type` tinyint(4) NOT NULL default '1',
  39. `updated_at` datetime NOT NULL,
  40. `error` tinyint(1) NOT NULL default '0',
  41. `credits` int(1) NOT NULL default '0',
  42. `site_url` varchar(255) NOT NULL,
  43. `id_user` int(10) NOT NULL,
  44. PRIMARY KEY (`id_feed`)
  45. ) ENGINE=MyISAM ;";
  46. $db->ejecutarConsulta($sqlStr);
  47. if(!is_dir('upload/CACHE')){
  48. mkdir('upload/CACHE');
  49. chmod('upload/CACHE',777);
  50. }
  51. echo "<p><em>Finished!</em></p>";
  52. echo "<p>Now you are running on the new <strong>After 0.90</strong> version!!!</p>";
  53. ?>