solved jrCore/router.php was not found on this server

alt=
Nobody
@nobody
8 years ago
4 posts
I just tried installing genosis-open-source-6.0.7 and end up with an initial page where the stylesheet seems to be broken, the Trees, Explore, Login, Create Account links are white on white. However if I click on create account I get

Not Found
The requested URL /mypersonalstuffhere/tree/modules/jrCore/router.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

"mypersonalstuffhere" is of course the path on my system ;-)
Mysql: 5.6.19
PHP: 5.3.29

I assume the symlinks are broken, since the files are there. How do I fix the symlinks?
updated by @nobody: 11/25/17 02:05:58PM
michael
@michael
8 years ago
7,794 posts
check you have .htaccess in place and its working in the root folder.

That or try re-uploading. Also make sure you're running it of a real domain, not localhost:80 as jamroom expect a domain name to exist.
alt=
Nobody
@nobody
8 years ago
4 posts
It runs on a real domain, the .htaccess is there. Only thing that I could imagine causes the trouble is the special char in the domainname. It DOES work on my localhost xampp though.
brian
@brian
8 years ago
10,149 posts
the "URL not found" really points to a mod_rewrite issue - double check that mod_rewrite is enabled.

Also - try updating the .htaccess file from this:

<IfModule mod_rewrite.c>
RewriteEngine On
...

To this:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
...

Sometimes some servers need that RewriteBase line in order to know the path structure.

Let me know if that helps.

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
Nobody
@nobody
8 years ago
4 posts
That addition just removes the tree structure of the path:

Not Found
The requested URL /modules/jrCore/router.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
brian
@brian
8 years ago
10,149 posts
I'm not sure what to suggest - just double check the files are uploaded and in the right place. To be honest this comes up very rarely, so my hunch is there's something up with the mod rewrite functionality on the server - maybe your hosting provider would have an idea of what might be happening.


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
alt=
Nobody
@nobody
8 years ago
4 posts
I guess I found the problem, I installed it into a subpath so I had to add it to the RewiteBase/subpath.
brian
@brian
8 years ago
10,149 posts
Nobody:
I guess I found the problem, I installed it into a subpath so I had to add it to the RewiteBase/subpath.

That's great - glad that is working now. I should have caught on to that - looking at your path I see /tree/ in it, which should have clued me in that it was in a sub directory.

But glad you figured that out :)


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net

Tags