A tumblelog CMS built on AJAX, PHP and MySQL.

update.php 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. if(!defined('entry') || !entry) die('Not a valid page');
  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. echo "<p><em>Finished!</em></p>";
  30. echo "<p>Now you are running on the new <strong>0.90</strong> version!!!</p>";
  31. ?>