Page 1 of 1

Need some installation help...

PostPosted: Fri Mar 01, 2013 1:46 pm
Author: d.vanheeckeren
For the past two weeks I've been trying to get integramod installed. I have full root privileges on the LAMP server (it's at my home), but the install page refuses to work, and doesn't seem to give verbose messages. I have verified that the user/pass for the database has full privileges, set all the file permissions as per the installation instructions, and done everything I can think of.

So right now, for the nth time, I'm completely removing all the webserver files and directories and going to start from scratch.

Hopefully someone can help me figure this out?

Thanks,
Daniel

Re: Need some installation help...

PostPosted: Fri Mar 01, 2013 4:12 pm
Author: d.vanheeckeren
This is as far as I can ever get...

Image

Re: Need some installation help...

PostPosted: Fri Mar 01, 2013 6:39 pm
Author: d.vanheeckeren
Well I finally got a LITTLE further...

But what the heck kind of error is it??? Not very informative, are there installation logs it creates that I could look at?Image

PostPosted: Sun Mar 03, 2013 12:40 am
Author: Helter
your server may not like the table type in root/install/schemas/mysql_schema.sql

try opening it in any text editor and delete all references to "TYPE=MyISAM"

so
Code: Select all
) TYPE=MyISAM;

will become
Code: Select all
);

Re: Need some installation help...

PostPosted: Thu Mar 07, 2013 1:03 pm
Author: d.vanheeckeren
Ok, I tried that, and there's some progress... now there's this error:
(sorry, don't know anything about sql...)

Image

PostPosted: Thu Mar 07, 2013 1:05 pm
Author: d.vanheeckeren
By the way, I'm running on an Ubuntu 12.10 server, if that makes any difference.

I'm thinking maybe there's some settings wrong, because it should all work out of the box. Thinking I might purge the mysql database server and reinstall it...might that help?

Re: Need some installation help...

PostPosted: Thu Mar 07, 2013 3:24 pm
Author: d.vanheeckeren
Ok, I did a complete purge and reinstall of mysql server, php, phpmyadmin, and apache2.

Same friggin' errors. *sigh*

Re: Need some installation help...

PostPosted: Thu Mar 07, 2013 7:40 pm
Author: d.vanheeckeren
Ok, finally got this thing licked.

Seems TYPE was deprecated somewhere between MySQL 5 and 5.5.29 (5.5.29 is the version I'm currently running). Replaced with ENGINE, so find/replace occurrences of
Code: Select all
) TYPE=MyISAM;


with

Code: Select all
) ENGINE=MyISAM;


in both
Code: Select all
install/schemas/mysql_schema.sql
prill_install/mysql_im_schema.sql


and all goes well. Incidentally, if someone is using their own linux server and would prefer not to set all those file permissions manually, I assembled a basic shell .script to do it for you. I wouldn't have bothered, but I got tired of resetting all those permissions every time I wiped the installation directory and started over, because linux permissions are NOT set in the zip file. At least, they wouldn't extract.

Anyway, the shell .script is available here. Make sure you copy that .script to the root installation path of integramod or it won't do 'ya no good. :D
Invoke with the command
Code: Select all
sudo sh set_perms.sh

PostPosted: Fri Mar 08, 2013 6:18 pm
Author: Helter
there is a chmod .script in IM150. It sets all the required permissions on a unix/linux box. There are also quite a few php5 updates. I would have recommended it to you but there are not many templates updated to 150

PostPosted: Sat Mar 09, 2013 6:51 pm
Author: d.vanheeckeren
ummmm...I wish I had known that sooner...but pointless now, it's done already, up and running (except for the ctracker problems I'm fixing as I come across them).

Let me know when 150 is finished?