2

I have website made in php_fox framework and my client want some changes on website but he don't want that changes on his server directly so firstly i have install that website on my localhost. so is it possible to install that website on localhost??? because right now i am getting 505 internal server error :(

Thanks, Ruchita

ruchita
  • 21
  • 2

3 Answers3

0

yes, you have just to activate rewrite_module in apache from apache module (wamp)

mgraph
  • 15,238
  • 4
  • 41
  • 75
0

Please check your server.sett.php (\include\setting)

search $_CONF['core.url_rewrite']

value of this variable should be 2 at localhost

$_CONF['core.url_rewrite'] = '2';
Unheilig
  • 16,196
  • 193
  • 68
  • 98
Ankit Agrawal
  • 6,034
  • 6
  • 25
  • 49
0

Please check your server.sett.php (\include\setting)

  1. change the following $_CONF['core.host'] = 'localhost';
  2. edit this $_CONF['core.folder'] = '/'; to $_CONF['core.folder'] = '/<your_phpfox_dir>/';
  3. and edit $_CONF['core.url_rewrite'] = '2';
  4. Additionally configure database settings
  5. Delete everything inside \file\cache

Now run the phpfox instance in your localhost.

Malay M
  • 1,659
  • 1
  • 14
  • 22