We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Problems with installation of Oxwall on 1und1 Server 2012 XL 6 Core Managed | Forum

Mirko
Mirko Sep 17 '12
Hello community,

I would like to install Oxwall v1.4.0 on our 1und1 managed server via FTP and subsequent calling Bowser. Requirements are all present. However, I get an error message in the install tool for database connection (MySQL5).

If I A)
SPECIFIED as "localhost", I get "Access denied" ... MySQL data agree 100%! Users are created with password ...

When I go to B) (host calling MySQL5)
host: "localhost :/ tmp/mysql5.sock" SPECIFIED me the field is marked as wrong or empty string in the Install Toll.

Somehow I get no further ...
I had also been to ever call the install tool can adjust the original htaccess file -. Because I got one else appears "Internal Server Error 500".
Contents of my htaccess file:

AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php

Options +FollowSymLinks
RewriteEngine On
RewriteBase /
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d

AddEncoding gzip .gz
AddEncoding gzip .gzip
<FilesMatch "\.(js.gz|js.gzip)$">
  ForceType text/javascript
</FilesMatch>
<FilesMatch "\.(css.gz|css.gzip)$">
  ForceType text/css
</FilesMatch>

RewriteCond %{REQUEST_URI} .*/http-bind
RewriteRule (.*) /http-bind [L]

#RewriteCond %{REQUEST_URI} !^/index\.php
#RewriteCond %{REQUEST_URI} !/ow_updates/index\.php
#RewriteCond %{REQUEST_URI} !/ow_updates/
RewriteCond %{REQUEST_URI} !/ow_cron/run\.php
#RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|robots\.txt|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php

Here in the forum I have not found anything on Google and not on Oxwall, but a similar problem with a CMS system:
http://www.wolfcms.org/forum/topic1296.html

somehow I get no further, maybe you can help me? Thanks in advance ...

Mirko
Mirko Sep 17 '12
Hello Paul, which details you need?
Mirko
Mirko Sep 17 '12
Sorry no control panel access :(
I know its a Linux Server based on Debian Squeeze/6.0 with Apache 2
Mayb this could help...
http://www.ccc-koeln.de/index_apacheversion.php
Mirko
Mirko Sep 17 '12
if i upload this little script, with following settings i have response from the mysql db:

<?php
    $dsn = 'mysql:dbname=db431924342;unix_socket=/tmp/mysql5.sock';
    $user = 'dbo431924342';
    $pass = 'xxxxxxx';

    try {
        $PDO = new PDO($dsn, $user, $pass);
        echo '<pre>';
        echo $PDO->getAttribute(constant("PDO::ATTR_CLIENT_VERSION")).PHP_EOL;
        echo $PDO->getAttribute(constant("PDO::ATTR_CONNECTION_STATUS")).PHP_EOL;
        echo $PDO->getAttribute(constant("PDO::ATTR_DRIVER_NAME")).PHP_EOL;
        echo $PDO->getAttribute(constant("PDO::ATTR_SERVER_INFO")).PHP_EOL;
        echo $PDO->getAttribute(constant("PDO::ATTR_SERVER_VERSION")).PHP_EOL;
        echo '</pre>';
    }
    catch (PDOException $e) {
        die ('PDO Connect Error (' . $e->getMessage() . ') '. "\n");
    }

?>

Response:

5.1.49 Localhost via UNIX socket mysql Uptime: 5697763 Threads: 1 Questions: 21890282 Slow queries: 7 Opens: 670762 Flush tables: 1 Open tables: 23 Queries per second avg: 3.842 5.0.92-1~ui60+1
Mirko
Mirko Sep 17 '12
response with:


$dsn = 'mysql:dbname=db431924342;localhost:/tmp/mysql5.sock';
$dsn = 'mysql:dbname=db431924342;127.0.0.1:/tmp/mysql5.sock';


all failed:

Could not connect to Database

The Forum post is edited by Mirko Sep 17 '12