After install issue [Folder install]

Started by jarrodatt,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

jarrodattTopic starter

Hello,
So i did install phpvibe 11 on a windows system using uniserver, the site is kinda working check it at https://bearlyconnected.com the issue is I cant login to do anything or register as a new user, the install went good no errors. so i'm confused... any ideas please help.
  •  

Marius P.

Did you do the edits for folder install?

in .httacess
https://github.com/PHPVibe/PHPVibe-CMS/blob/master/.htaccess
RewriteBase /
Should become:
RewriteBase /phpvibe
or
RewriteBase /phpvibe/
depends on server.

in index.php
https://github.com/PHPVibe/PHPVibe-CMS/blob/master/index.php
line 103 should become

$router->setBasePath('/phpvibe'));

without //

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

jarrodattTopic starter

#2
Thank you the response. However, If i uncomment $router->setBasePath('/phpvibe/')); The site wont even load its just a blank page, and the rewritebase i tried both ways /phpvibe and /phpvibe/ no difference.

Now this is my own personal server no cpanel or anything like that if that is an issue.

I realize the vast majority of these types of scripts/cms usually run on linux. 


I didnt catch it but this is the only error i do get after i try to reinstall : The configuration file needs editing OR/AND the "hold" file exists on your server! its the "hold" it complains about not sure what that is.
  •  

Marius P.

You have a double )) there, this is why the site goes blank.
It should be
$router->setBasePath('/phpvibe/');
or
$router->setBasePath('/phpvibe');
if the first fails (not sure what server setting dictates this)
Enable error printing in your environment (php.ini or what you use) and it will throw the actual error. https://stackoverflow.com/questions/1053424/how-do-i-get-php-errors-to-display

Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

jarrodattTopic starter

Thank you for the input and after some time it is working now from what i see.
  •  

Similar topics (7)