![]() |
![]() |
![]() |
|
|||||||
| Installation and Updates No need to be a programming guru to get started with eSyndiCat Directory Software. Even a newbie can run installation process smoothly with solutions found here. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Join Date: Oct 2006
Posts: 1
![]() |
Hello,
I've installed the free version and am unable to log in - I've verified the login and password and even reinstalled it in case I mistyped the password. When I click Login it just stays on the login page. Does anyone know what the problem might be? Thanks for any help, Andy |
|
|
|
|
|
#2 |
|
eSyndicat Support Team
Join Date: Sep 2006
Posts: 727
![]() ![]() ![]() ![]() |
Hi, Andy!
Did you try reinstall free version? Send ticket to our support with your ftp-cridentials, I try to fix it.
__________________
Regards, Michael Hill eSyndiCat Directory Script Our webhosting - Intelligent Web Hosting Last edited by Sergey Ten; 11-02-2006 at 03:27 PM. |
|
|
|
|
|
#3 |
|
Join Date: Nov 2006
Posts: 6
![]() |
same here.
is there any solution? thanx |
|
|
|
|
|
#4 |
|
eSyndiCat Lead Developer
Join Date: Apr 2006
Location: Kyrgyzstan, Bishkek
Posts: 6,596
![]() ![]() ![]() ![]() |
Welcome to our support forum jchichom,
Which version of eSyndiCat do you use? |
|
|
|
|
|
#5 |
|
Join Date: Nov 2006
Posts: 6
![]() |
i'm trying the free version before purchase anything.
@whtan should you want to 'see what's behind' the login form, remove admin_auth(); from the admin/header.php (line 21) then you can perfectly access to the admin index. of course it's only a temporary solution (just to see how it works) because now the admin section is unprotected |
|
|
|
|
|
#6 |
|
eSyndiCat Lead Developer
Join Date: Apr 2006
Location: Kyrgyzstan, Bishkek
Posts: 6,596
![]() ![]() ![]() ![]() |
Hello jchichom,
You could reset user and password. Create PHP file with such code and run on your server. Code:
<?
include_once "classes/DirDb.php";
include_once "includes/config.inc.php";
$myDb = new Database();
$myDb->mDbhost = $gDirConfig["dbhost"];
$myDb->mDbuser = $gDirConfig["dbuser"];
$myDb->mDbpwd = $gDirConfig["dbpwd"];
$myDb->mDbname = $gDirConfig["dbname"];
$myDb->mPrefix = $gDirConfig["prefix"];
$myDb->connect();
$admin_name = "admin";
$admin_pass = md5("admin");
$query = "UPDATE `{$gDirConfig['prefix']}admins` SET `username` ='{$admin_name}' WHERE `id`='1'";
if(!$myDb->query($query))
{
echo "Error!!";
}
$query = "UPDATE `{$gDirConfig['prefix']}admins` SET `password` ='{$admin_pass}' WHERE `id`='1'";
if(!$myDb->query($query))
{
echo "Error!!";
}
?>
|
|
|
|
|
|
#7 |
|
Join Date: Nov 2006
Posts: 6
![]() |
thank you for the response sergey.
I think the problem is not at the username/password pair. When you introduce a wrong password, the system just tell you 'Authentification failed' but when you introduce the right one...nothing happens. (one thing happens indeed: you are redirect again to the login.php, but without any error message) |
|
|
|
|
|
#8 |
|
Join Date: Jul 2006
Location: St. Petersburg
Posts: 2,567
![]() |
Hello jchichom,
May be you have cookies disabled. |
|
|
|
|
|
#9 | |
|
Join Date: Mar 2007
Posts: 7
![]() |
Quote:
|
|
|
|
|
|
|
#10 |
|
Join Date: Feb 2007
Posts: 19
![]() |
I test on Firefox 2.0 and disable JavaScript, I can not login and it will refresh to page login without any error message.
May be you guys disble JavaScript on your browser or javascript is not working.
__________________
Free Web Directory (PR3) |
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|