Probleme mit Aufruf von index.php
Hi Freunde!
Auf einem strato server (testzwecke) habe ich mir domäne mytestdomain.de eingerichtet und dazu mongodb server. Jetzt brauche ich den Zugang zu der DB um sie zu verwalten. Dafür habe ich mir das hier ausgesucht - http://www.phpmongodb.org/
phpmongodb habe ich nach /var/www/vhosts/meinhostname/mytestdomain/phpmongodb entpackt. Die config.php Datei habe ich nach Punkt #5 verändert.
So sieht sie aus bei mir:
Wenn ich jetzt im Browser http://www.mytestdomain.de/phpmongodb/index.php eingebe, sollte doch die Seite aufgerufen werden?! Doch es heißt "404 Not found".
Sicherlich bin ich noch zu unerfahren und habe einen Fehler gemacht. Kann mir bitte wer helfen?
Auf einem strato server (testzwecke) habe ich mir domäne mytestdomain.de eingerichtet und dazu mongodb server. Jetzt brauche ich den Zugang zu der DB um sie zu verwalten. Dafür habe ich mir das hier ausgesucht - http://www.phpmongodb.org/
phpmongodb habe ich nach /var/www/vhosts/meinhostname/mytestdomain/phpmongodb entpackt. Die config.php Datei habe ich nach Punkt #5 verändert.
Open the config.php with your editor, change host, port, admins and so on As per your system. Default given below: -Server Setting ‘name’ => “Localhost”, ‘server’=>false, ‘host’ => “127.0.0.1”, ‘port’=>”27017″, ‘timeout’=>0,
Make authentication = TRUE for using your MongoDB user and password.
Make authorization[‘readonly’] = TRUE for making your MongoDb readonly.
So sieht sie aus bei mir:
<?php
/**
* @author Nanhe Kumar <nanhe.kumar@gmail.com>
* @version 1.0.0
* @package PHPMongoDB
*/
class Config {
public static $theme = 'default';
public static $autocomplete=false;
public static $language = array(
'english' => 'English',
'german' => 'German',
);
public static $server=array(
'name' => "meinetestdomain.de",
'server'=>false,
'host' => "xxx.xxx.xxx.xx6",
'port'=>"27017",
'timeout'=>0,
);
public static $authentication = array(
'authentication'=>true,
'user' => 'meindbadmin',
'password' => 'meinpasswort12345'
);
public static $authorization = array(
'readonly'=>false,
);
/**
*
* @var array
* @link http://in2.php.net/manual/en/mongoclient.construct.php (for more detail)
*/
public static $connection = array(
'server' => "", //mongodb://localhost:27017
'options' => array(
'replicaSet' => false,
), //
);
}
?>
Wenn ich jetzt im Browser http://www.mytestdomain.de/phpmongodb/index.php eingebe, sollte doch die Seite aufgerufen werden?! Doch es heißt "404 Not found".
Sicherlich bin ich noch zu unerfahren und habe einen Fehler gemacht. Kann mir bitte wer helfen?
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 296653
Url: https://administrator.de/contentid/296653
Ausgedruckt am: 22.11.2024 um 06:11 Uhr
2 Kommentare
Neuester Kommentar