(9 Sep, 2014, 9:18 pm)Kevinex escribió: Ingresa a tu cPanel -> Bases de Datos -> PhpMyAdmin -> Elegí tu base de datos -> Selecciona todas las tables y en las opciones dale a Repara tablas.
Hola, la verdad no encuentro ninguna opción de reparacion en phpmyadmin, tal vez este desactivada en la versión que usa mi hosting. De cualquier forma seguiré revisando para ver si se me pasó.
(10 Sep, 2014, 2:07 am)Cluster escribió: adjuntamos tu config.PHP sin datos de tu servidor, también Respóndeme si configuraste un pin para tu acp
Enviado desde mi XT1032 mediante Tapatalk
(10 Sep, 2014, 2:59 pm)Kevinex escribió: Lo solucionaste? Deja el config.php como digo Cluster a ver si podemos encontrar algún error.
Código PHP:
<?php
/**
* Database configuration
*
* Please see the MyBB Wiki for advanced
* database configuration for larger installations
* http://wiki.mybboard.net/
*/
$config['database']['type'] = 'mysqli';
$config['database']['database'] = 'DATABASE';
$config['database']['table_prefix'] = 'mybb_';
$config['database']['hostname'] = 'HOST';
$config['database']['username'] = 'USER';
$config['database']['password'] = 'PASS';
/**
* Admin CP directory
* For security reasons, it is recommended you
* rename your Admin CP directory. You then need
* to adjust the value below to point to the
* new directory.
*/
$config['admin_dir'] = 'admin';
/**
* Hide all Admin CP links
* If you wish to hide all Admin CP links
* on the front end of the board after
* renaming your Admin CP directory, set this
* to 1.
*/
$config['hide_admin_links'] = 0;
/**
* Data-cache configuration
* The data cache is a temporary cache
* of the most commonly accessed data in MyBB.
* By default, the database is used to store this data.
*
* If you wish to use the file system (cache/ directory), MemCache, xcache, or eAccelerator
* you can change the value below to 'files', 'memcache', 'xcache' or 'eaccelerator' from 'db'.
*/
$config['cache_store'] = 'db';
/**
* Memcache configuration
* If you are using memcache as your data-cache,
* you need to configure the hostname and port
* of your memcache server below.
*
* If not using memcache, ignore this section.
*/
$config['memcache']['host'] = 'localhost';
$config['memcache']['port'] = 11211;
/**
* Super Administrators
* A comma separated list of user IDs who cannot
* be edited, deleted or banned in the Admin CP.
* The administrator permissions for these users
* cannot be altered either.
*/
$config['super_admins'] = '335';
/**
* Database Encoding
* If you wish to set an encoding for MyBB uncomment
* the line below (if it isn't already) and change
* the current value to the mysql charset:
* http://dev.mysql.com/doc/refman/5.1/en/charset-mysql.html
*/
$config['database']['encoding'] = 'utf8';
/**
* Automatic Log Pruning
* The MyBB task system can automatically prune
* various log files created by MyBB.
* To enable this functionality for the logs below, set the
* the number of days before each log should be pruned.
* If you set the value to 0, the logs will not be pruned.
*/
$config['log_pruning'] = array(
'admin_logs' => 365, // Administrator logs
'mod_logs' => 365, // Moderator logs
'task_logs' => 30, // Scheduled task logs
'mail_logs' => 180, // Mail error logs
'user_mail_logs' => 180, // User mail logs
'promotion_logs' => 180 // Promotion logs
);
/**
* Admin CP Secret PIN
* If you wish to request a PIN
* when someone tries to login
* on your Admin CP, enter it below.
*/
$config['secret_pin'] = 'PIN';
Obviamente cambie los campos sensibles. Con respecto al pin, no le había puesto un pin antes, luego le puse uno para ver si era por eso pero sigue igual.
El usuario 335 que está configurado ahora es un admin nuevo que hice para hacer pruebas y poder entrar en el panel de administración con el verdadero admin que yo uso. Disculpen la demora en responder, pero no tenía tiempo para hacerlo hasta ahora.
Muchas gracias por su interés en resolver el problema, esperemos poder solucionarlo.
Por cierto, cuando quiero modificar al admin fundador me dice que no tengo permisos para hacerlo, o sea que en algún lado me reconoce el usuario fundador, o sea el UID 1 como super admin aunque no esté declarado en el config.php eso me di cuenta hoy mientras escribía esta respuesta.