A tumblelog CMS built on AJAX, PHP and MySQL.

update.php 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. require('entry.php');
  13. global $configFile, $db;
  14. if (!file_exists($configFile)) {
  15. $mensaje = "
  16. <h3 class=\"important\">Error reading configuration file</h3>
  17. <p>There doesn't seem to be a <code>config.php</code> file. I need this before we can get started.</p>
  18. <p>This either means that you did not rename the <code>config-sample.php</code> file to <code>config.php</code>.</p>";
  19. die($mensaje);
  20. } else {
  21. require($configFile);
  22. }
  23. $sqlStr = "INSERT INTO `".Table_prefix."options` VALUES ('shorten_links', '0');";
  24. $db->ejecutarConsulta($sqlStr);
  25. $sqlStr = "INSERT INTO `".Table_prefix."options` VALUES ('rss_import_frec', '5 minutes');";
  26. $db->ejecutarConsulta($sqlStr);
  27. $sqlStr = "CREATE TABLE `".Table_prefix."feeds` (
  28. `id_feed` int(11) NOT NULL auto_increment,
  29. `url` varchar(255) NOT NULL,
  30. `title` varchar(255) NOT NULL,
  31. `type` tinyint(4) NOT NULL default '1',
  32. `updated_at` datetime NOT NULL,
  33. `error` tinyint(1) NOT NULL default '0',
  34. `credits` int(1) NOT NULL default '0',
  35. `site_url` varchar(255) NOT NULL,
  36. `id_user` int(10) NOT NULL,
  37. PRIMARY KEY (`id_feed`)
  38. ) ENGINE=MyISAM ;";
  39. $db->ejecutarConsulta($sqlStr);
  40. if(!is_dir('upload/CACHE')){
  41. @mkdir('upload/CACHE');
  42. @chmod('upload/CACHE',777);
  43. }
  44. echo "<p><em>Finished!</em></p>";
  45. echo "<p>Now you are running on the new <strong>gelato cioccolato</strong> version!!!</p>";
  46. ?>