admin/ was not found on this server.

Post Reply
dirkV
Jr. Bludit
Posts: 1
Joined: Wed May 11, 2016 7:17 pm

Wanted to do some playing and tinkering with Bludit here locally on my Mac. Since Yosemite websharing is not easy. So i thought can it be done from a VirtualBox machine with Snow Leopard.

Installed bludit on a OSX (10.6.8) system on Virtual box. Got php the right php via http://php-osx.liip.ch/. Did all the permission stuff. Made VB accessible via the home network via a bridge adapter. Could login to Bludit from my host MacPro (with 10.10.5). Did the first installation of Bludit. But then....

.. it gave the error: admin/ was not found on this server.

Is there a solution?

Is it some where in php? Or .htaccess? Or apache?

greetings dirkV
User avatar
Edi
Site Admin
Posts: 3121
Joined: Sun Aug 09, 2015 5:01 pm
Location: Zurich
Has thanked: 54 times
Been thanked: 77 times
Contact:

I never have done a local installation on a Mac.

The "redirect" is in the file index.php:

Code: Select all

// Admin area
if($Url->whereAmI()==='admin') {
	require(PATH_BOOT.'admin.php');
}
The path definitions are in the file /bl-kernel/boot/init.php.

It seems to be a problem with the path settings.
Clickwork - Websites mit Bludit | Planet Bludit - Tipps und Snippets
firedrow
Jr. Bludit
Posts: 3
Joined: Wed Jun 08, 2016 7:31 pm

I fixed that today on my Droplet @ DigitalOcean. I'm using Apache2 and had to modify my default-ssl.conf file.

Code: Select all

<Directory /var/www/html>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride All
    Order allow,deny
    allow from all
</Directory>
dirtdiver2010
Master Bludit
Posts: 129
Joined: Fri Jan 15, 2016 6:07 pm
Has thanked: 1 time
Been thanked: 3 times

dirkV wrote:Wanted to do some playing and tinkering with Bludit here locally on my Mac. Since Yosemite websharing is not easy. So i thought can it be done from a VirtualBox machine with Snow Leopard.
You can use MAMP for example, too. You don´t have to install a virtual box with an other system.
Post Reply