elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Guía rápida para descarga de herramientas gratuitas de seguridad y desinfección


+  Foro de elhacker.net
|-+  Foros Generales
| |-+  Foro Libre
| | |-+  ¿Identi no puedo sacarlo de mantenimiento ayuda?
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: ¿Identi no puedo sacarlo de mantenimiento ayuda?  (Leído 3,241 veces)
Weeken

Desconectado Desconectado

Mensajes: 291


piensa en gratis


Ver Perfil WWW
¿Identi no puedo sacarlo de mantenimiento ayuda?
« en: 21 Abril 2013, 17:24 pm »

pero lo estuve probando y no puedo lo puedo sacar de matenimiento es spirate modificado.



en el localhost con XAMPP

http://sourceforge.net/projects/xampp/

Settings.php

Código
  1. <?php
  2.  
  3. $verify_menciones=0;//Aqui lo cambie a 0 estaba en 1 y no puedo sacarlo de mateniemiento
  4. $maintenance = 0;
  5. $mtitle = 'Actualización del Sitio';
  6. $mmessage = 'Identi estará nuevamente operativo dentro de unas horas.';
  7. $mbname = 'Identi';
  8. $language = 'spanish';
  9. $limit_posts = '20';
  10. $boardurl = 'http://localhost';
  11. $url = 'http://localhost/';
  12. $chatid = '43220954'; // ID de tu chat de xat.com
  13. $widget = 'Novedades en Identi'; // Lo que saldrá en el título del widget
  14. $slogan = 'Tus descargas en mediafire'; // lo que saldrá en el título de tu web, no pongas el nombre
  15. $no_avatar = '/images/def/avatar.png';
  16. $webmaster_email = 'seruji0@hotmail.com';
  17. $cookiename = 'SMFCookie11';
  18. $db_server = 'localhost';
  19. $db_name = '';
  20. $db_user = 'root';
  21. $db_passwd = '';
  22. $db_prefix = 'smf_';
  23. $db_persist = 0;
  24. $db_error_send = 1;
  25. $boarddir = 'C:\\xampp\htdocs';
  26. $sourcedir = 'C:\\xampp\htdocs/Sources';
  27. $db_last_error = 1335835390;
  28. if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources'))
  29.   $sourcedir = $boarddir . '/Sources';
  30. $db_character_set = 'UTF-8';
  31. $test=true;
  32. ?>
  33.  

index.php

Código
  1.  
  2. <?php
  3. if(!isset($_COOKIE['desa12'])){
  4.  
  5. if(isset($_POST['pass']) && $_POST['pass']=='bender'){
  6. setcookie('desa12',1,time()+86400);
  7. header('Location: /');}
  8. echo'<form method="post">Pass: <input type="text" name="pass">
  9. <input type="submit" value="Entrar"></form>';
  10. }
  11.  
  12. $forum_version = 'Identi v.2';
  13. define('SMF', 1);
  14. $time_start = microtime();
  15. // Make sure some things simply do not exist.
  16. foreach (array('db_character_set') as $variable)
  17. if (isset($GLOBALS[$variable]))
  18. unset($GLOBALS[$variable]);
  19.  
  20. // Load the settings...
  21. require_once(dirname(__FILE__) . '/Settings.php');
  22. require_once($sourcedir . '/QueryString.php');
  23. require_once($sourcedir . '/Subs.php');
  24. require_once($sourcedir . '/Errors.php');
  25. require_once($sourcedir . '/Load.php');
  26. require_once($sourcedir . '/Security.php');
  27. if (@version_compare(PHP_VERSION, '4.2.3') != 1)
  28. require_once($sourcedir . '/Subs-Compat.php');
  29. if (!empty($maintenance) && $maintenance == 2)
  30. db_fatal_error();
  31. if (empty($db_persist))
  32. $db_connection = @mysql_connect($db_server, $db_user, $db_passwd);
  33. else
  34. $db_connection = @mysql_pconnect($db_server, $db_user, $db_passwd);
  35.  
  36. if (!$db_connection || !@mysql_select_db($db_name, $db_connection))
  37. db_fatal_error();
  38. reloadSettings();
  39.  
  40.  
  41. // Unserialize the array of pretty board URLs
  42. $context = array('pretty' => array(
  43. 'action_array' => unserialize($modSettings['pretty_action_array']),
  44. 'board_urls' => unserialize($modSettings['pretty_board_urls']),
  45. 'db_count' => 0,
  46. ));
  47. // Clean the request variables, add slashes, etc.
  48. cleanRequest();
  49.  
  50. // Seed the random generator?
  51. if (empty($modSettings['rand_seed']) || mt_rand(1, 250) == 69)
  52. smf_seed_generator();
  53.  
  54. // Determine if this is using WAP, WAP2, or imode.  Technically, we should check that wap comes before application/xhtml or text/html, but this doesn't work in practice as much as it should.
  55. if (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'application/vnd.wap.xhtml+xml') !== false)
  56. $_REQUEST['wap2'] = 1;
  57. elseif (isset($_SERVER['HTTP_ACCEPT']) && strpos($_SERVER['HTTP_ACCEPT'], 'text/vnd.wap.wml') !== false)
  58. {
  59. if (strpos($_SERVER['HTTP_USER_AGENT'], 'DoCoMo/') !== false || strpos($_SERVER['HTTP_USER_AGENT'], 'portalmmm/') !== false)
  60. $_REQUEST['imode'] = 1;
  61. else
  62. $_REQUEST['wap'] = 1;
  63. }
  64. if (!defined('WIRELESS'))
  65. define('WIRELESS', isset($_REQUEST['wap']) || isset($_REQUEST['wap2']) || isset($_REQUEST['imode']));
  66. if (WIRELESS)
  67. {
  68. define('WIRELESS_PROTOCOL', isset($_REQUEST['wap']) ? 'wap' : (isset($_REQUEST['wap2']) ? 'wap2' : (isset($_REQUEST['imode']) ? 'imode' : '')));
  69. $modSettings['enableCompressedOutput'] = '0';
  70. $modSettings['defaultMaxMessages'] = 5;
  71. $modSettings['defaultMaxTopics'] = 9;
  72.  
  73. if (WIRELESS_PROTOCOL == 'wap')
  74. header('Content-Type: text/vnd.wap.wml');
  75. }
  76. if (!empty($modSettings['enableCompressedOutput']) && !headers_sent() && ob_get_length() == 0)
  77. {
  78. if (@ini_get('zlib.output_compression') == '1' || @ini_get('output_handler') == 'ob_gzhandler' || @version_compare(PHP_VERSION, '4.2.0') == -1)
  79. $modSettings['enableCompressedOutput'] = '0';
  80. else
  81. ob_start('ob_gzhandler');
  82. }
  83. if (empty($modSettings['enableCompressedOutput']))
  84.  
  85. set_error_handler('error_handler');
  86. loadSession();
  87. call_user_func(smf_main());
  88. obExit(null, null, true);
  89. function smf_main()
  90. {
  91.  
  92. global $modSettings, $settings, $user_info, $board, $topic, $maintenance, $sourcedir;
  93. if (isset($_GET['action']) && $_GET['action'] == 'keepalive')
  94. die;
  95. loadUserSettings();
  96. loadBoard();
  97. loadTheme();
  98. is_not_banned();
  99. loadPermissions();
  100. // Referrals Mod - Check For Referrals
  101. if (isset($_GET['referredby']) || isset($_COOKIE['smf_referrals']))
  102. loadReferral();
  103. if (empty($_REQUEST['action']) || !in_array($_REQUEST['action'], array('dlattach', 'jsoption', '.xml')))
  104. {
  105. writeLog();
  106. if (!empty($modSettings['hitStats']))
  107. trackStats(array('hits' => '+'));
  108. }
  109. // twitter mod -->
  110. if (include_once($sourcedir . '/twitter.php'))
  111. twitter_cron();
  112. // <-- twitter mod
  113. if (!empty($maintenance) && !allowedTo('admin_forum'))
  114. {
  115. if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'login2' || $_REQUEST['action'] == 'logout'))
  116. {
  117. require_once($sourcedir . '/LogInOut.php');
  118. return $_REQUEST['action'] == 'login2' ? 'Login2' : 'Logout';
  119. }
  120. else
  121. {
  122. require_once($sourcedir . '/Subs-Auth.php');
  123. return 'InMaintenance';
  124. }
  125. }
  126. elseif (empty($modSettings['allow_guestAccess']) && $user_info['is_guest'] && (!isset($_REQUEST['action']) || !in_array($_REQUEST['action'], array('coppa', 'login', 'login2', 'register', 'register2', 'reminder', 'activate', 'smstats', 'help', 'verificationcode'))))
  127. {
  128. require_once($sourcedir . '/Subs-Auth.php');
  129. return 'KickGuest';
  130. }
  131. elseif (empty($_REQUEST['action']))
  132. {
  133. if (empty($board) && empty($topic))
  134. {
  135. require_once($sourcedir . '/Recent.php');
  136. return 'RecentPosts';
  137. }
  138. elseif (empty($topic))
  139. {
  140. require_once($sourcedir . '/MessageIndex.php');
  141. return 'MessageIndex';
  142. }
  143. else
  144. {
  145. require_once($sourcedir . '/Display.php');
  146. return 'Display';
  147. }
  148. }
  149. $actionArray = array(
  150.  
  151. 'url' => array('url.php', 'url_main'),
  152.  
  153. 'activate' => array('Register.php', 'Activate'),
  154. 'admin' => array('Admin.php', 'Admin'),
  155.  
  156. 'ban' => array('ManageBans.php', 'Ban'),
  157. 'boardrecount' => array('Admin.php', 'AdminBoardRecount'),
  158.        'favoritos' => array('Favoritos.php', 'Favoritos'),
  159. 'cleanperms' => array('Admin.php', 'CleanupPermissions'),
  160. 'convertentities' => array('Admin.php', 'ConvertEntities'),
  161. 'convertutf8' => array('Admin.php', 'ConvertUtf8'),
  162. 'coppa' => array('Register.php', 'CoppaForm'),
  163. 'contactenos' => array('Contactenos.php', 'ShowHelp'),
  164. 'deletemsg' => array('RemoveTopic.php', 'DeleteMessage'),
  165. 'detailedversion' => array('Admin.php', 'VersionDetail'),
  166. 'display' => array('Display.php', 'Display'),
  167. 'dumpdb' => array('DumpDatabase.php', 'DumpDatabase2'),
  168.  
  169. 'featuresettings' => array('ModSettings.php', 'ModifyFeatureSettings'),
  170. 'featuresettings2' => array('ModSettings.php', 'ModifyFeatureSettings2'),
  171. 'findmember' => array('Subs-Auth.php', 'JSMembers'),
  172.  
  173. 'terminos-y-condiciones' => array('terminos-y-condiciones.php', 'ShowHelp'),
  174.  
  175. 'protocolo' => array('Protocolo.php', 'ShowHelp'),
  176. 'comunidades' => array('comunidades2.php', 'comunidades_main'),
  177. 'im' => array('PersonalMessage.php', 'MessageMain'),
  178.  
  179. 'lock' => array('LockTopic.php', 'LockTopic'),
  180. 'login' => array('LogInOut.php', 'Login'),
  181. 'login2' => array('LogInOut.php', 'Login2'),
  182. 'logout' => array('LogInOut.php', 'Logout'),
  183. 'maintain' => array('Admin.php', 'Maintenance'),
  184. 'manageattachments' => array('ManageAttachments.php', 'ManageAttachments'),
  185. 'manageboards' => array('ManageBoards.php', 'ManageBoards'),
  186. 'managecalendar' => array('ManageCalendar.php', 'ManageCalendar'),
  187. 'managesearch' => array('ManageSearch.php', 'ManageSearch'),
  188. 'markasread' => array('Subs-Boards.php', 'MarkRead'),
  189. 'membergroups' => array('ManageMembergroups.php', 'ModifyMembergroups'),
  190. 'mergetopics' => array('SplitTopics.php', 'MergeTopics'),
  191. 'mlist' => array('Memberlist.php', 'Memberlist'),
  192. 'modifycat' => array('ManageBoards.php', 'ModifyCat'),
  193. 'modifykarma' => array('Karma.php', 'ModifyKarma'),
  194. 'hist-mod' => array('Modlog.php', 'ViewModlog'),
  195. 'movetopic' => array('MoveTopic.php', 'MoveTopic'),
  196. 'movetopic2' => array('MoveTopic.php', 'MoveTopic2'),
  197. 'movetopic3' => array('MoveTopic.php', 'MoveTopic3'),
  198.  
  199. 'optimizetables' => array('Admin.php', 'OptimizeTables'),
  200. 'packageget' => array('PackageGet.php', 'PackageGet'),
  201. 'packages' => array('Packages.php', 'Packages'),
  202. 'permissions' => array('ManagePermissions.php', 'ModifyPermissions'),
  203. 'pgdownload' => array('PackageGet.php', 'PackageGet'),
  204. 'pm' => array('PersonalMessage.php', 'MessageMain'),
  205. 'post' => array('Post.php', 'Post'),
  206. 'agregar' => array('Agregar.php', 'Agregar'),
  207. 'agregar2' => array('Agregar.php', 'Agregar2'),
  208. 'post2' => array('Post.php', 'Post2'),
  209. 'postsettings' => array('ManagePosts.php', 'ManagePostSettings'),
  210.  
  211. /* 'profile' => array('Profile.php', 'ModifyProfile'),
  212. 'profile2' => array('Profile.php', 'ModifyProfile2'), */
  213. 'quotefast' => array('Post.php', 'QuoteFast'),
  214. 'quickmod' => array('Subs-Boards.php', 'QuickModeration'),
  215. 'quickmod2' => array('Subs-Boards.php', 'QuickModeration2'),
  216. 'index' => array('Recent.php', 'RecentPosts'),
  217. 'regcenter' => array('ManageRegistration.php', 'RegCenter'),
  218. 'registrarse' => array('Register.php', 'Register'),
  219. 'register2' => array('Register.php', 'Register2'),
  220. 'reminder' => array('Reminder.php', 'RemindMe'),
  221. 'removetopic2' => array('RemoveTopic.php', 'RemoveTopic2'),
  222. 'removeoldtopics2' => array('RemoveTopic.php', 'RemoveOldTopics2'),
  223. 'repairboards' => array('RepairBoards.php', 'RepairBoards'),
  224. 'requestmembers' => array('Subs-Auth.php', 'RequestMembers'),
  225. 'search' => array('Search.php', 'PlushSearch1'),
  226. 'search2' => array('Search.php', 'PlushSearch2'),
  227. 'serversettings' => array('ManageServer.php', 'ModifySettings'),
  228. 'serversettings2' => array('ManageServer.php', 'ModifySettings2'),
  229.        'saveme' => array('Protocolo.php', 'ShowHelps'),
  230.  
  231. 'smileys' => array('ManageSmileys.php', 'ManageSmileys'),
  232. 'splittopics' => array('SplitTopics.php', 'SplitTopics'),
  233. 'TOPs' => array('Stats.php', 'DisplayStats'),
  234. 'sticky' => array('LockTopic.php', 'Sticky'),
  235. 'rz' => array('Acciones.php', 'Acciones'),
  236. 'theme' => array('Themes.php', 'ThemesMain'),
  237. 'trackip' => array('Profile.php', 'trackIP'),
  238. 'viewErrorLog' => array('ManageErrors.php', 'ViewErrorLog'),
  239. 'viewmembers' => array('ManageMembers.php', 'ViewMembers'),
  240. 'viewprofile' => array('Profile.php', 'ModifyProfile'),
  241.  
  242. 'twittersettings' => array('TwitterSettings.php', 'ModifyTwitterSettings'),
  243. 'Vigilapuntos' => array('Vigilapuntos.php', 'Vigilapuntos'),
  244. 'catalogo-programas' => array('cat-software.php', 'inicio'),
  245. 'editados' => array('editados.php', 'editados'),
  246. 'catalogform_pelic' => array('catalogform_pelic.php', 'catalogform_pelic'),
  247. 'catalogo_pelic' => array('catalogo_pelic.php', 'catalogo_pelic'),
  248. 'catalogform_music' => array('catalogform_music.php', 'catalogform_music'),
  249. 'catalogo_musica' => array('catalogo_musica.php', 'catalogo_musica'),
  250. 'catalogform_juegos' => array('catalogform_juegos.php', 'catalogform_juegos'),
  251. 'catalogo_juegos' => array('catalogo_juegos.php', 'catalogo_juegos'),
  252. 'form_series' => array('form_series.php', 'form_series'),
  253. 'catalogo_series' => array('catalogo_series.php', 'catalogo_series'),
  254. 'publiform' => array('publiform.php', 'publiform_main'),
  255. 'anunciantes' => array('anunciantes.php', 'anunciantes_main'),
  256. 'borradores' => array('drafts.php', 'drafts'),
  257. 'buscador' => array('buscador.php', 'buscador'),
  258. 'streaming' => array('streaming.php', 'streaming'),
  259. /* 'tags' => array('Tags.php', 'TagsMain'), */
  260. //'extras' => array('Extras.php', 'Extras'),
  261. /* 'buddies' => array('Buddies.php', 'BuddiesMain'), */
  262. //'staff' => array('SeccionStaff.php', 'StaffMain'),
  263. /* 'jsoption' => array('Themes.php', 'SetJavaScript'),
  264.         'jspedidos' => array('pedidos.php','Setpedidos'),
  265. 'jsmodify' => array('Post.php', 'JavaScriptModify'), */
  266. //'widget' => array('widget.php', 'ShowHelp'),
  267. /* 'denunciar' => array('Denunciar.php', 'ShowHelp'), */
  268. /* 'enlazanos' => array('Enlazanos.php', 'ShowHelp'), */
  269. /* 'gsearch' => array('gsearch.php', 'ShowHelp'), */
  270. /* 'jsoption' => array('Themes.php', 'SetJavaScript'),
  271. 'jsmodify' => array('Post.php', 'JavaScriptModify'), */
  272. /* 'news' => array('ManageNews.php', 'ManageNews'), */
  273. //'monitor' => array('Monitor.php', 'Monitor'),
  274. /* 'printpage' => array('Printpage.php', 'PrintTopic'), */
  275. /* 'sitemap' => array('Sitemap.php', 'ShowSiteMap'), */
  276. //'verificationcode' => array('Register.php', 'VerificationCode'),
  277. //'who' => array('Who.php', 'Who'),
  278. //'.xml' => array('News.php', 'ShowXmlFeed'),
  279. //'enviar-puntos' => array('shop/Shop.php', 'Shop'),
  280. //'shop_general' => array('shop/ShopAdmin.php', 'ShopGeneral'),
  281. //'shop_inventory' => array('shop/ShopAdmin.php', 'ShopInventory'),
  282. //'shop_items_add' => array('shop/ShopAdmin.php', 'ShopItemsAdd'),
  283. //'shop_items_edit' => array('shop/ShopAdmin.php', 'ShopItemsEdit'),
  284. //'shop_restock' => array('shop/ShopAdmin.php', 'ShopRestock'),
  285. //'shop_usergroup' => array('shop/ShopAdmin.php', 'ShopUserGroup'),
  286. //'shop_cat' => array('shop/ShopAdmin.php', 'ShopCategories'),
  287. //'denuncias' => array('Denuncias.php', 'DenunciasMain'),
  288. //'spam' => array('spam.php', 'spam'),
  289. //'games' => array('games.php', 'GamesMain'),
  290. //'rank' => array('Ranking.php', 'RankMain'),
  291. //'pedidos' => array('pedidos.php','pedidos_main'),
  292. //'imagenes' => array('Gallery.php', 'GalleryMain'),
  293. //'dlattach' => array('Display.php', 'Download'),
  294. //'recomendar' => array('Recomendar.php', 'ShowHelp'),
  295. //'enviar-a-amigo' => array('SendTopic.php', 'SendTopic'),
  296. //'cine' => array('Cine.php', 'cine'),
  297.    //'trofeos' => array('Trofeos.php', 'TMain'),
  298. //'actrank' => array('Actrank.php', 'RankMain'),
  299. //'help' => array('Help.php', 'ShowHelp'),
  300. //'helpadmin' => array('Help.php', 'ShowAdminHelp'),
  301. //'notify' => array('Notify.php', 'Notify'),
  302. //'notifyboard' => array('Notify.php', 'BoardNotify'),
  303. );
  304.  
  305. $i = 1;
  306. while (isset($modSettings['CA' . $i . '_name']))
  307. {
  308. $actionArray[$modSettings['CA' . $i . '_name']] = array('CustomAction.php', 'CustomAction');
  309. $i++;
  310. }
  311.  
  312. // Get the function and file to include - if it's not there, do the board index.
  313. if (!isset($_REQUEST['action']) || !isset($actionArray[$_REQUEST['action']]))
  314. {
  315. if (!empty($settings['catch_action']))
  316. {
  317. require_once($sourcedir . '/Themes.php');
  318. return 'WrapAction';
  319. }
  320. require_once($sourcedir . '/Recent.php');
  321. return 'RecentPosts';
  322. }
  323.  
  324. require_once($sourcedir . '/' . $actionArray[$_REQUEST['action']][0]);
  325. return $actionArray[$_REQUEST['action']][1];
  326.  
  327.  
  328. }
  329.  
  330. ?>
  331.  







descarga :


http://www.mediafire.com/?v309gxlz79cdlxw


contraseña : bender



deberia funcionar asi

demo: http://identi.foro-web.net/


User: demo
pass: demomarco


http://www.dailymotion.com/video/xxvcmy_script_webcam




analisis


http://virusscan.jotti.org/es/scanresult/2181af8041541c3311f28910380eeb7d74ae4461




fuente:


http://www.spirate.net/foro/off-topic/vendo-theme-de-pijenti-original-bd/


http://www.spirate.net/foro/noticias-y-actualizaciones/spirate-v2-3-final/




Saludos.
« Última modificación: 21 Abril 2013, 17:28 pm por Weeken » En línea

WHK
Moderador Global
***
Desconectado Desconectado

Mensajes: 6.589


Sin conocimiento no hay espíritu


Ver Perfil WWW
Re: ¿Identi no puedo sacarlo de mantenimiento ayuda?
« Respuesta #1 en: 2 Mayo 2013, 15:32 pm »

Asi a simple vista no se ve nada raro, el problema debe estar en algun otro lado.

Intenta deshabilitar ese mod, si te funciona entonces el mod está mal hecho.

Intenta comentar la linea 3 y 4 para que esas variables no existan e intentar forzar al mod a no dejar el sitio en mantenimiento.

Si nada te resulta entonces anda dandole un echo 'test';exit; linea por linea, sección por sección hasta que logres ver en que parte se detiene el script con ese mensaje, porque si desde la configuración no se puede entonces lo unico que queda es depurarlo.

Saludos.
En línea

Weeken

Desconectado Desconectado

Mensajes: 291


piensa en gratis


Ver Perfil WWW
Re: ¿Identi no puedo sacarlo de mantenimiento ayuda?
« Respuesta #2 en: 2 Mayo 2013, 18:37 pm »

Asi a simple vista no se ve nada raro, el problema debe estar en algun otro lado.

Intenta deshabilitar ese mod, si te funciona entonces el mod está mal hecho.

Intenta comentar la linea 3 y 4 para que esas variables no existan e intentar forzar al mod a no dejar el sitio en mantenimiento.

Si nada te resulta entonces anda dandole un echo 'test';exit; linea por linea, sección por sección hasta que logres ver en que parte se detiene el script con ese mensaje, porque si desde la configuración no se puede entonces lo unico que queda es depurarlo.

Saludos.

mira esto es lo que  intente hacer.





Código
  1. <?php
  2. $maintenance = '0';
  3. $mtitle = 'Mantenimiento';
  4. $mmessage = 'Pagina en mantenimiento, aguarde un momento';
  5. $limit_posts = '20'; //Cantidad de posts mostrados por pagina
  6. $mbname = 'Mi Comunidad';
  7. $language = 'spanish';
  8. $boardurl = 'http://127.0.0.1/foro/identi/';
  9. $url = 'http://127.0.0.1/foro/identi/';
  10. $chatid = '43220954';
  11. $widget = 'Spirate.Net';
  12. $slogan = 'Social Community Script';
  13. $no_avatar = 'http://127.0.0.1/foro/identi/Themes/default/images/avatar.gif';
  14. $webmaster_email = 'Agrega aqui tu correp';
  15. $cookiename = 'SPCookies168';
  16. $db_server = '127.0.0.1/';
  17. $db_name = 'identi2';
  18. $db_user = 'root';
  19. $db_passwd = '';
  20. $db_prefix = 'smf_';
  21. $db_persist = '0';
  22. $db_error_send = 1;
  23. $boarddir = 'C:\EasyPHP-12.1\www\foro\identi';
  24. $sourcedir = 'C:\EasyPHP-12.1\www\foro\identi/Sources';
  25. $db_last_error = 1367465924;
  26. if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources'))
  27.   $sourcedir = $boarddir . '/Sources';
  28. $db_character_set = 'utf8';
  29. ?>

use repair_settings.php y no funciono.

http://www.simplemachines.org/community/index.php?topic=219422.0





pero no entiendo como hacer 'test';exit y depurar no comprendo puedo solucionarlo ?.

bueno solo encontre estas 2 SQL pero el vacio si subio el lleno no.






En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
descifrar un archivo codificado (php) Scopbin? Alguien sabe sacarlo? Gracias!
PHP
biezinski 6 3,840 Último mensaje 31 Mayo 2012, 15:45 pm
por WarGhost
Clon de identi.
Foro Libre
Weeken 2 3,489 Último mensaje 5 Abril 2013, 00:45 am
por Weeken
script identi
Nivel Web
Weeken 0 2,894 Último mensaje 6 Abril 2013, 08:46 am
por Weeken
[Ayuda] Crear Popup Como Identi.li
Desarrollo Web
aspx99 9 7,619 Último mensaje 3 Julio 2014, 01:52 am
por aspx99
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines