views:

1676

answers:

3

Hi,

I just moved my current office Joomla 1.5.8 instalation from the server(linux) to my local machines (winxp) so I can work locally and only upload the changes.

The thing is after downloading all the files and installing a backup of the remote DB on my local machine I found myself unable to login to the administrator panel, I can see the frontpage but not login :/

So far, I have googled alot this problem, but most people seem to be experiencing this problem while upgrading from joomla 1.0

To make sure the problem was not on permissions for the files,I did a separate brand new joomla instalation on another folder and it worked just fine, I could access the website and I also could login to admin page, then I changed the config file to connect to the joomla I'm trying to move and now I find myself again unable to login :/

I think the problem is on the DB however I already tried searching for specific paths but no luck

Does anyone has another Idea?

thanks in advance :)

+1  A: 

Try to change following variable in your local configuration file with you local values.

var $offline = '0';
var $log_path = 'Your local joomla path\logs';
var $tmp_path = 'Your local joomla path\tmp';
var $live_site = 'local url will be here';
var $dbtype = 'mysql';
var $host = 'local db host';
var $user = 'DB user for local';
var $db = 'Db name for local';
var $dbprefix = 'DB prefix whatever you have set, by default jos_';
var $password = 'your DB password for local';
Avinash
I already changed everything on the configuration to fit perfectly, I even clone the config from the new installation but as soon as I point it to the old DB it stops working :/A weird thing I noticed yesterday, and I really think this has to do with the DB is that if I connet remotely to the DB, with a local installation, still wont work, but the installation on the webserver conneting to the very same DB works :/
PERR0_HUNTER
A: 

Did you find anything that helped? I am having the exact same issue & this is the first post of the same issue I've seen after looking for days. I too already changed my config files for my local pc.

Jem
A: 

Does your site use any kind of extra authentication? Mine used the LDAP Authentication plugin. MY local machine couldn't connect to the LDAP server. After turning LDAP authentication off (only use Joomla authentication) it worked.

edit the jos_plugins table in mysql to set published from 1 to 0 for any extra authentication plugins you are using.

Jem