PDA

View Full Version : installation problem on a local web server



Marc Girouard
September 21, 2016, 01:45 AM
Hello.

I try to install Flynax on my computer (Windows 10, wamp server).

The installation seems to be fine.

1844

But when I click the link Front end Interface page can not be displayed because I am redirected to http: //www.localhost/monsite.

Curtis
September 21, 2016, 01:58 AM
Hello Marc Girouard,

First of all, you need be sure that you configured the virtual hosts properly (in the Apache configuration and in windows system hosts file).
Check following instructions: https://john-dugan.com/wamp-vhost-setup/

Marc Girouard
September 25, 2016, 06:31 PM
Hello,

Well I finally managed to configure my local web server.
I tested it by installing a wordpress site.

But I'm not able to access my site has Flynax.
The installation appears to have gone well. The tables have been created in the database.

But when I try to access the home page I am redirected to the localhost of WampServer menu.

Is there a particular configuration to install Flynax on a local web server?

Curtis
September 26, 2016, 01:49 AM
Hello Marc Girouard,

So, i suggest you create the ticket to Technical Department and our developer will check it via remote access.

Zoran Aleksikj
February 12, 2017, 01:17 AM
1. wamp server

2. conect mysql

3. edit config.inc
// mysql credentials
define( 'RL_DBPORT', '3306' );
define( 'RL_DBHOST', '127.0.0.1' );
define( 'RL_DBUSER', 'root' );
define( 'RL_DBPASS', 'root' );
define( 'RL_DBNAME', 'root' );
define( 'RL_DBPREFIX', 'fl_' );

// system paths
define( 'RL_DIR', '');
define( 'RL_ROOT', 'C:\wamp\www' . RL_DS . RL_DIR );
define( 'RL_INC', RL_ROOT . 'includes' . RL_DS );
define( 'RL_CLASSES', RL_INC . 'classes' . RL_DS );
define( 'RL_CONTROL', RL_INC . 'controllers' . RL_DS );
define( 'RL_LIBS', RL_ROOT . 'libs' . RL_DS );
define( 'RL_TMP', RL_ROOT . 'tmp' . RL_DS );
define( 'RL_UPLOAD', RL_TMP . 'upload' . RL_DS );
define( 'RL_FILES', RL_ROOT . 'files' . RL_DS );
define( 'RL_PLUGINS', RL_ROOT . 'plugins' . RL_DS );
define( 'RL_CACHE', RL_TMP . 'cache_539067854' . RL_DS );

// system URLs
define( 'RL_URL_HOME', 'http://127.0.0.1/' );
define( 'RL_FILES_URL', RL_URL_HOME . 'files/' );
define( 'RL_LIBS_URL', RL_URL_HOME . 'libs/' );
define( 'RL_PLUGINS_URL', RL_URL_HOME . 'plugins/' );

4. edit .htaccess

#RewriteCond %{HTTP_HOST} \.{2,} [NC] # 1
in
RewriteCond %{HTTP_HOST} \.{2,} [NC] # 1

5. enjoy localhost :D

Locations Vn
October 15, 2017, 07:47 PM
Dear

I have a similar problem.

I setuped on 127.0.0.1:8080 with nginx web server. Everything is ok but after finishing the install it can not create the pages ; I attached picture below.
Plese let me know how to fix it.

Sincerely.
2560

Bahram Soltanirad
October 16, 2017, 06:45 AM
Someone should see your site. Please wait for flynax expert.

Viktor
October 16, 2017, 09:13 AM
Hello,

You should add some domain to httpd-vhosts.conf I will show you on my example:
my local domain is: flynax_4_5_2


<VirtualHost *:80>
ServerName flynax_4_5_2
ServerAlias www.flynax_4_5_2
DocumentRoot /Users/viktor/workspace/www/_public/flynax_4_5_2 - path to folder with files of site

<Directory "/Users/viktor/workspace/www/_public/flynax_4_5_2/"> - path to folder with files of site
Require all granted
AllowOverride All
</Directory>
</VirtualHost>


and in hosts file: 127.0.0.1 flynax_4_5_2
then restart apache and try to load your site again.

my path into config.inc.php: define( 'RL_ROOT', '/Users/viktor/workspace/www/_public/flynax_4_5_2' . RL_DS . RL_DIR );

Locations Vn
October 16, 2017, 07:06 PM
Dear

I followed your instructions but it doesn't work.

my local domain is: choviet45

Please see the attached images

2563
2564
2565