Elxis CMS Forum

Support => Installation => Topic started by: togsen on December 19, 2006, 10:44:40

Title: Installation step 2
Post by: togsen on December 19, 2006, 10:44:40
I have installed mysql 5.0.2 php 5 and it works ok(i think  :) )

when i agree to the terms & licensing in step 2 of the web installation, i can't push the next botton!!! it's outfated... any idees anyone?
Title: Re: Installation step 2
Post by: togsen on December 19, 2006, 11:49:17
this is not the right way, but changed the code in install.php...


<body onload="document.adminForm.next.disabled=true;">
to
<body onload="document.adminForm.next.disabled=false;">

and it works
Title: Re: Installation step 2
Post by: datahell on December 19, 2006, 13:39:12
It has something to do with your browser settings and/or firewall, not Elxis.
Title: Re: Installation step 2
Post by: worshiploud on January 03, 2007, 21:36:25
I have the same problem. And this non fix didn't work for me.
Title: Re: Installation step 2
Post by: datahell on January 03, 2007, 21:52:11
Do you use Internet Explorer 7?
Have you tried with a different browser?
Do you have any firewall/antivirus?
Do you have javascript enabled in your browser?
Title: Re: Installation step 2
Post by: oitava esfera on January 17, 2007, 19:17:37
I have a similar problem.

I enter all the info of the database and click on next. respond yes to "You will be asked if you are sure that all these data are correct. If you are, press Yes".
I press yes and get a index2.php blank

try with firefox 1.5.0.9 and ie 6.0.2900
Title: Re: Installation step 2
Post by: datahell on January 17, 2007, 21:35:18
Check your mysql version!
If you think is ok, you can send me a link to your installation url with all the needed information to check your system and try to install it by myself. I will need access to your files and database user/pass/name.
Title: Re: Installation step 2
Post by: oitava esfera on January 18, 2007, 01:26:43

MySQL - 4.0.24_Debian-10sarge2-log 

phpMyAdmin - 2.8.2.4

    * MySQL client version: 4.1.18
    * Used PHP extensions: mysql

Title: Re: Installation step 2
Post by: datahell on January 18, 2007, 07:29:51
You have mysql 4.0.x. Elxis requires at least mysql 4.1.x
You must update your mysql.
Title: Re: Installation step 2
Post by: oitava esfera on January 25, 2007, 16:22:06
Can you see the url

http://dev.oitavaesfera.com

because I'm lost :(
Title: Re: Installation step 2
Post by: mmarch on January 25, 2007, 17:32:12
I have a similar problem.

I enter all the info of the database and click on next. respond yes to "You will be asked if you are sure that all these data are correct. If you are, press Yes".
I press yes and get a index2.php blank

try with firefox 1.5.0.9 and ie 6.0.2900
I has this situation too. I use firefox 1.5.0.9 and ie 6.0.2800. Solved easy, just daleted all instllation files from installation folder and copy new one. Clear MSQL database for this site and repeate installation process.

5 or 7 times i'm not sure. But now all work fine.
Title: Re: Installation step 2
Post by: eliasan on January 25, 2007, 17:41:18
1) "Session save path" is unwritable. You have to correct that.
2) There is no info about MySQL version on this screen.
To check MySQL version create a php file that you will upload and run on your server with the following commands:
(Replace 'mysql_user' and 'mysql_password' with coorect ones)

<?php
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
   die('Could not connect: ' . mysql_error());
}
printf("MySQL server version: %s\n", mysql_get_server_info());
?>