DH
Asked
I have purchased Stock Manager Advance (codecanyon) and I'm facing a problem when running on my localhost (on a web server, everything is ok); the installation was fine but when I start the application, I get "HTTP Error 404. The requested resource is not found."; in fact the port allocated is 8080 so when I try to launch with localhost:8080/pos2 (the appli is located in subfolder pos2) I get the message and directly the url is changed to "localhost/pos2/admin"; it seems that the port is removed...
thanks in advance,
sincerly,
Domi.
thanks in advance,
sincerly,
Domi.
- DHAnsweredFound the answer by myself :
in app\config\config.php :
change :
$config['base_url'] = 'http://localhost/pos2/';
to
$config['base_url'] = 'http://localhost:8080/pos2/';
(pos2 is the subdirectory where the application is installed; use your own)
Domi. - MSAnsweredHello,
I am glad that you have found the answer.
Thank you for sharing with others - Login to Reply