iboboc / relay

Automatically exported from code.google.com/p/relay
MIT License
0 stars 0 forks source link

Problems with Installation #32

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Execute http://localhost/relay/install/index.php

What is the expected output? What do you see instead?

Database Connected....
done

Notice: Undefined index: uad in C:\xampp\htdocs\relay\install\index.php on line 
153
Dropping tables if the exist...done
Creating tables
*relay_clients...
*relay_filesystem...You have an error in your SQL syntax; check the manual that 
corresponds to your MySQL server version for the right syntax to use near 
'TYPE=MyISAM AUTO_INCREMENT=100000' at line 19 could not create the table 
filesystem

What version of the product are you using? On what operating system?
relay.1.53.tar.gz
windows 7 profesional

Please provide any additional information below.

I'm Use:
php 5.4
Apache 2.4
mysql 5

I can't install the program

Original issue reported on code.google.com by bmw...@gmail.com on 11 Oct 2012 at 10:19

Attachments:

GoogleCodeExporter commented 8 years ago
I ran into the same problem.  I believe that it has something to do with 
deprecated MySQL syntax where it's now necessary to use ENGINE=MyISAM, rather 
than TYPE=MyISAM.

Edit the relay/install/index.php file, search for "TYPE=MyISAM" and replace it 
with "ENGINE=MyISAM".  That worked for me, at least.

Original comment by john.pon...@bluelaketechnology.com on 9 Jan 2013 at 10:44

GoogleCodeExporter commented 8 years ago
I confirm John's solution. This is a confirmed bug when using Mysql 5.5.
"TYPE keyword is depreciated (since 5.0) and not supported in MySQL5.5"

Original comment by silvio.m...@g.xarevision.pt on 19 Jul 2013 at 12:04