I am using Vista Home, Apache 2.2, PHP5, MySQL 5. All the components work great by themselves and in combination except when I try to install Nexty.
After I enter the database information, I get the next screen where all I see is the word "Step" and a button labeled "Continue". When I press the button, I get a message at the bottom of the browser window that says "Done" but nothing else. Any ideas? Anyone...? Anyone...?
Install problem, where's the noob section?
(5 posts) (2 voices)-
Posted 3 years ago #
-
Hello,
Could you check some things:
- Nexty create a configuration.php file (i it had authorization) in nexty root directory. Have you such a file ? with some entries like db_database or site_absolute_path ?[/*:m:2ervdzzp]
- Is your database populated ? Normaly, there are task, project, setting, ... tables.[/*:m:2ervdzzp]
- I cannot see 'Done ' in code. Are you sure about the end msg ?[/*:m:2ervdzzp]
Which version do you install ?
Bye,
VicnetPosted 3 years ago # - Nexty create a configuration.php file (i it had authorization) in nexty root directory. Have you such a file ? with some entries like db_database or site_absolute_path ?[/*:m:2ervdzzp]
-
Vicnet,
Here are the entire contents of configuration.php:
<?php
//Configuration file for Nexty
$system_installed = false;
Also, when I look at MySQL and execute "show databases;" there is no database for Nexty, so I don't even get to the step where the database gets built.
I suspect that there is some kind of incompatibility between all my components. Again my setup is:
Nexty 1.02
Vista Home
PHP 5.26
Apache 2.2
MySQL 5.067
I really like this program and I can't wait to get it fixed.Posted 3 years ago # -
[quote="yaquigrande":3ukbidqe]/Configuration file for Nexty
$system_installed = false;
As it is writen, there is a pb in installation and the configuration file is not ok !
Is your configuration file writable ?
Here a a configuration sample:
<?php
//Configuration file for Nexty
$system_installed = true;
$config = array(
'db_host' => 'localhost',
'db_user' => 'root',
'db_password' => '',
'db_database' => 'nexty',
'site_url' => 'http://localhost/nexty/branches/transilation/',
'site_absolute_path' => '/nexty/branches/transilation/',
'mode' => 'p', //Production mode.
);
You could adapt these manualy with your system.
After, you need to install tables too. Pearharps just install again with the correct conf file.
If not, I can send you a sql file with new nexty database.
Bye,
VicnetPosted 3 years ago # -
Vicnet,
Thank you for your help.
I used the configuration file you posted. I modified it for my use. Now however, when I try to install the database, I get the following:
Access denied for user 'ODBC'@'localhost' (using password: NO)
Where is the user defined as ODBC? I looked for it everywhere but could not find it. I think if I can redefine the user as the actual user that has permissions in the database, the install will complete.
Thanks again.Posted 3 years ago #
Reply
You must log in to post.