Login or Register

RSS IconRecent posts in this topic

avatar
Ilija Studen on Jul 7. 2006. 3:43 pm
1. You run the installer but there is just a page construciton, no content.

short_open_tags PHP option is set to off. Solution:

- open php.ini, find short_open_tags and set it to On
- find and replace <?= with <?php echo in /application/views/ and /install/installation/templates

[color=blue]Fixed in 0.6[/color]

2. Failed to create owner company. MySQL said: Field 'client_of_id' doesn't have a default value

You are using MySQL5. This issue will be addressed soon. For quick fix check out post #4 in this topic.

[color=blue]Fixed in 0.6[/color]

3. I get "Notice: Undefined index: REQUEST_URI in C:\Inetpub\activeCollab\init.php on line 39"

Open init.php and on line 39 change the condition so it looks like this:

if(!isset($_SERVER['REQUEST_URI']) || trim($_SERVER['REQUEST_URI']) == '') {

[color=blue]Fixed in 0.6[/color]
activeCollab team member | LinkedIn
avatar
bondo on Jul 7. 2006. 11:59 pm
Just with regard to the second issue - I was able to work around this problem by doing the following:

Manually insert a record into table ac_companies - be sure to set both date fields or you'll get an error after first login

Manually insert a user into table ac_users - you'll need to encrypt the password using sha1, use the following code and paste the encrypted password into the ac_users password field. dont forget to make the user an admin.

<?php
$administrator_password = "yourpassword";
$encrypted_password = sha1($administrator_password);
echo "$administrator_password <br>";
echo "$encrypted_password";
?>

Once these tasks are done the site loads fine and is functional.
avatar
Ilija Studen on Jul 8. 2006. 12:31 am
You can use MD5 Encryptor service to get sha1 hash from your password:

http://www.md5encryption.com/?mod=encrypt
activeCollab team member | LinkedIn
avatar
elbows on Jul 8. 2006. 4:57 pm
To get round issue 2 with mysql5, I just changed the mysql_schema.php so that the client_of_id field in companies table is default '0', before going through the installation process.

so line 19 of that file now reads:
`client_of_id` smallint(5) unsigned NOT NULL default '0',

Installation then goes smoothly for me. I dont know if its a bad idea to leave the client_of_id field having a default value of 0, can always change the table structure back after sucessful install.
avatar
Ilija Studen on Jul 8. 2006. 5:09 pm
Its OK to have it that way. 0 should be the default value...

I've fixed most of the installer issues but I need to test it just a little bit and repack the archive so it will be available for download. After this most of the installation should go like 1, 2, 3, 4, done.
activeCollab team member | LinkedIn
avatar
jflint on Jul 9. 2006. 9:49 pm
@Ilija

If you want me to run a test installer since I am installing on WAMP5, let me know: jflint_at_gmail_dot_com
Topic is locked. If you have something important to say about issues discussed on this page please write at hi@a51dev.com.

RSS IconRecent posts in this topic