Announcement

Collapse
No announcement yet.

I can't install vBulletin

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • I can't install vBulletin

    Hi,

    I think, I do everything right, on the server and in both configs... Brouser says that this site is unreachable...

    <?php
    /*=========================================================================*\
    || ####################################################################### ||
    || # vBulletin 5 Presentation Configuration # ||
    || # vBulletin [#]version[#]
    || # ------------------------------------------------------------------- # ||
    || # All PHP code in this file is copyright 2000-[#]year[#] MH Sub I, LLC dba vBulletin.
    || # This file may not be redistributed in whole or significant part. # ||
    || # ----------------- VBULLETIN IS NOT FREE SOFTWARE ------------------ # ||
    || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
    || ####################################################################### ||
    \*=========================================================================*/

    /*-------------------------------------------------------*\
    | This file should NOT be modified. Only renamed.
    | Only make changes to this file if instructed to.
    \*-------------------------------------------------------*/


    /*-------------------------------------------------------*\
    | ****** NOTE REGARDING THE VARIABLES IN THIS FILE ****** |
    +---------------------------------------------------------+
    | If making changes to the file, the edit should always |
    | be to the right of the = sign between the single quotes |
    | Default: $config['cookie_prefix'] = 'bb'; |
    | Example: $config['cookie_prefix'] = 'vb'; GOOD! |
    | Example: $config['vb'] = 'bb'; BAD! |
    \*-------------------------------------------------------*/


    // ****** System Paths ******

    // ****** Cookie Settings ******
    // These are cookie related settings.
    // This Setting allows you to change the cookie prefix
    // This must match the core/includes/config.php file cookie prefix setting
    $config['cookie_prefix'] = 'mybb';


    // ****** Special Settings ******
    // These settings are only used in some circumstances
    // Please do not edit if you are not sure what they do.

    // You can ignore this setting for right now.
    $config['cookie_enabled'] = true;

    $config['report_all_php_errors'] = false;
    $config['no_template_notices'] = true;

    // This setting should never be used on a live site
    $config['no_js_bundles'] = false;

    // This setting enables debug mode, it should NEVER be used on a live site
    $config['debug'] = false;

    // Assumes default location of core.
    // These are the system paths and folders for your vBulletin files
    // This setting is for where your vbulletin core folder is
    $config['core_path'] = realpath(dirname(__FILE__)) . '/home/lebensl/public_html/forum/core';

    $config['php_sessions'] = false;

    /*=========================================================================*\
    || #######################################################################
    || # Downloaded: [#]zipbuilddate[#]
    || # CVS: $RCSfile$ - $Revision: 99798 $
    || #######################################################################
    \*=========================================================================*/

    Second config from core:

    <?php
    /*=========================================================================*\
    || ####################################################################### ||
    || # vBulletin Core Configuration # ||
    || # vBulletin 5.5.3
    || # ------------------------------------------------------------------- # ||
    || # Copyright 2000-2019 MH Sub I, LLC dba vBulletin. All Rights Reserved. # ||
    || # This file may not be redistributed in whole or significant part. # ||
    || # ----------------- VBULLETIN IS NOT FREE SOFTWARE ------------------ # ||
    || # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||
    || ####################################################################### ||
    \*=========================================================================*/


    /*----------------------------------------------------------------------*\
    | ****** NOTE REGARDING THE VARIABLES IN THIS FILE ****** |
    +------------------------------------------------------------------------+
    | If you get any errors while attempting to connect to MySQL, you will |
    | need to email your webhost because we cannot tell you the correct |
    | values for the variables in this file. |
    | |
    | When making changes to the file, the edit should always be to the |
    | right of the = sign between the single quotes |
    | Default: $config['MasterServer']['username'] = 'root'; |
    | Example: $config['MasterServer']['username'] = 'myuser'; GOOD! |
    | Example: $config['MasterServer']['myuser'] = 'root'; BAD! |
    \*----------------------------------------------------------------------*/

    // ****** DATABASE TYPE ******
    // This is the type of the database server on which your vBulletin database
    // will be located. Currently the only option is mysqli. MariaDB uses the same
    // libaries as Mysql and should use mysqli as the dbtype. For slave support add
    // _slave to the end of the database class.
    $config['Database']['dbtype'] = 'mysqli';

    // ****** DATABASE NAME ******
    // This is the name of the database where your vBulletin will be located.
    // This must be created by your webhost.
    $config['Database']['dbname'] = 'lebenslehre';

    // ****** TABLE PREFIX ******
    // Prefix that your vBulletin tables have in the database.
    $config['Database']['tableprefix'] = '';

    // ****** TECHNICAL EMAIL ADDRESS ******
    // If any database errors occur, they will be emailed to the address specified here.
    // Leave this blank to not send any emails when there is a database error.
    $config['Database']['technicalemail'] = '[email protected]';


    // ****** MASTER DATABASE SERVER NAME AND PORT ******
    // This is the hostname or IP address and port of the database server.
    // If you are unsure of what to put here, leave the default values.
    //
    // Note: If you are using IIS 7+ and MySQL is on the same machine, you
    // need to use 127.0.0.1 instead of localhost
    $config['MasterServer']['servername'] = 'localhost';
    $config['MasterServer']['port'] = '3306';

    // ****** MASTER DATABASE USERNAME & PASSWORD ******
    // This is the username and password you use to access MySQL.
    // These must be obtained through your webhost.
    $config['MasterServer']['username'] = 'root';
    $config['MasterServer']['password'] = '<<<password>>>';

    // ****** MASTER DATABASE PERSISTENT CONNECTIONS ******
    // This option allows you to turn persistent connections to MySQL on or off.
    // The difference in performance is negligible for all but the largest boards.
    // If you are unsure what this should be, leave it off. (0 = off; 1 = on)
    $config['MasterServer']['usepconnect'] = 0;

    // ****** SLAVE DATABASE CONFIGURATION ******
    // If you have multiple database backends, this is the information for your slave
    // server. If you are not 100% sure you need to fill in this information,
    // do not change any of the values here.
    $config['SlaveServer']['servername'] = '';
    $config['SlaveServer']['port'] = 3306;
    $config['SlaveServer']['username'] = '';
    $config['SlaveServer']['password'] = '';
    $config['SlaveServer']['usepconnect'] = 0;


    // ****** PATH TO MODERATOR CONTROL PANELS ******
    // This setting allows you to change the name of the folders that the
    // moderator control panels reside in. You may wish to do this for security purposes.
    // Please note that if you change the name of the directory here, you will still need
    // to manually change the name of the directory on the server.

    $config['Misc']['modcpdir'] = 'mymodcp';

    // Prefix that all vBulletin cookies will have
    // Keep this short and only use numbers and letters, i.e. 1-9 and a-Z
    $config['Misc']['cookieprefix'] = 'mybb';

    // ******** FULL PATH TO FORUMS DIRECTORY ******
    // On a few systems it may be necessary to input the full path to your forums directory
    // for vBulletin to function normally. You can ignore this setting unless vBulletin
    // tells you to fill this in. Do not include a trailing slash!
    // Example Unix:
    // $config['Misc']['forumpath'] = '/home/users/public_html/forums';
    // Example Win32:
    // $config['Misc']['forumpath'] = 'c:\program files\apache group\apache\htdocs\vb3';
    $config['Misc']['forumpath'] = 'http://lebenslehre.eu/forum';

    // ******** FRONTEND (SITE) URL ******
    // On a few systems it may be necessary to input the base url.
    // This should be the same setting as $config['baseurl'] in the frontend config file
    // You do not need to fill this in unless instructed by vBulletin Support.
    // Do not include a trailing slash.
    // Example: $config['Misc']['baseurl'] = 'http://www.mysite.comt/forums';
    $config['Misc']['baseurl'] = '';

    // ****** USERS WITH ADMIN LOG VIEWING PERMISSIONS ******
    // The userids specified here will be allowed to view the admin log in the control panel.
    // Users must be specified by *ID number* here. To obtain a user's ID number,
    // view their profile via the control panel. If this is a new installation, leave
    // the first user created will have a user ID of 1. Seperate each userid with a comma.
    $config['SpecialUsers']['canviewadminlog'] = '1';

    // ****** USERS WITH ADMIN LOG PRUNING PERMISSIONS ******
    // The userids specified here will be allowed to remove ("prune") entries from the admin
    // log. See the above entry for more information on the format.
    $config['SpecialUsers']['canpruneadminlog'] = '1';

    // ****** USERS WITH QUERY RUNNING PERMISSIONS ******
    // The userids specified here will be allowed to run queries from the control panel.
    // See the above entries for more information on the format.
    // Please note that the ability to run queries is quite powerful. You may wish
    // to remove all user IDs from this list for security reasons.
    $config['SpecialUsers']['canrunqueries'] = '';

    // ****** UNDELETABLE / UNALTERABLE USERS ******
    // The userids specified here will not be deletable or alterable from the control panel by any users.
    // To specify more than one user, separate userids with commas.
    $config['SpecialUsers']['undeletableusers'] = 'Wjatscheslaw Lantuschko';

    // ****** SUPER ADMINISTRATORS ******
    // The userids specified below will have permission to access all areas of vBulletin 5.
    // Note that this is different to vB3 & vB4 where they only had extra permissions in the
    // Admin Control Panel. Be very careful who you grant this super power to.
    // The name of this setting has changed from superadministrator to superadmins.
    // This is to avoid the accidental granting of this permission when using older config files.
    $config['SpecialUsers']['superadmins'] = 'Wjatscheslaw Lantuschko';

    // ****** CACHE CONFIGURATION *****
    // Here you can configure different methods for caching items.
    // The following are the cacheing classes that can be used.
    // vB_Cache_Db - This setting stores the data in the database
    // vB_Cache_APC - This setting stores the data in APC
    // vB_Cache_Memcached - This stores the data in memcache
    // vB_Cache_Memory - This setting uses php's memory while a page is being generated.
    // Each cache area can use its own cache type.
    $config['Cache']['class'][0] = 'vB_Cache_Db'; //regular cache
    $config['Cache']['class'][1] = 'vB_Cache_Memory'; //fastest cache
    $config['Cache']['class'][2] = 'vB_Cache_Db'; //largest cache and longest life.

    // Cache options are
    // vB_Cache_Memory fastest but doesn't survive a page load.
    // vB_Cache_Db significant speed improvement and available to everyone.
    // vB_Cache_Filesystem good performance, reduces traffic and load on db server. Not available to everyone-
    // your web server must be able to write to the file system.
    // vB_Cache_Memcached excellent performance but usually only available to dedicated or virtual hosted sites.
    // vB_Cache_APC excellent performance but only available to those with APC installed, and on a single web server.

    //Fast DS Configuration Options
    // $config['fastDS'] = true; // Use to enable or disable fastDS (true/false).
    // $config['fastDSType'] = 'APC'; // Storage Type, at this time APC is the only option.
    // $config['fastDSPrefix'] = ''; // Prefix to prevent collisions on shared systems. Defaults to datastore prefix.
    //Note that if you use the same cache type for this and fast or large cache, and the same prefix, you may have conflicts.
    // $config['fastDSLimit'] = 6000000; // Limits the amount of memory consumed, in bytes

    // ******** FILESYSTEM CACHE CONFIGURATION ******
    //If you use filesystem cache you MUST uncomment the line below.
    //set the path to somewher writeable by the web server process. This location must already exist. Please put
    // this somewhere outside the document root. Otherwise you have just created a serious security issue.
    //Don't include the final '/'

    //$config['Cache']['fileCachePath'] = '/valid/writeable/for/my/webserver';


    // ****** DATASTORE CACHE CONFIGURATION *****
    // Here you can configure different methods for caching datastore items.
    // You may need to clear this cache after installing/upgrading. You can do this either
    // in the control panel (Maintenance) or by restarting the web server.
    // vB_Datastore_Filecache - to use includes/datastore/datastore_cache.php
    // vB_Datastore_APC - to use APC
    // vB_Datastore_WinCache - to use WinCache
    // vB_Datastore_Memcached - to use a Memcache server, more configuration below
    // $config['Datastore']['class'] = 'vB_Datastore_Filecache';
    //if you use Filecache you can accept the default location, or better
    // to uncomment the next line and set a location
    // $config['Misc']['datastorepath'] = '/valid/writeable/for/my/webserver';
    // or if you have set $config['Cache']['fileCachePath' above you can do nothing and
    // it will use that location.

    // ******** DATASTORE PREFIX ******
    // If you are using a PHP Caching system (APC, WinCache) with more
    // than one set of forums installed on your host, you *may* need to use a prefix
    // so that they do not try to use the same variable within the cache.
    // This works in a similar manner to the database table prefix.
    // $config['Datastore']['prefix'] = '';

    // It is also necessary to specify the hostname or IP address and the port the server is listening on
    /*
    $config['Datastore']['class'] = 'vB_Datastore_Memcached';
    $i = 0;
    // First Server
    $i++;
    $config['Misc']['memcacheserver'][$i] = '127.0.0.1';
    $config['Misc']['memcacheport'][$i] = 11211;
    $config['Misc']['memcachepersistent'][$i] = true;
    $config['Misc']['memcacheweight'][$i] = 1;
    $config['Misc']['memcachetimeout'][$i] = 1;
    $config['Misc']['memcacheretry_interval'][$i] = 15;
    */
    //If you are using Memcache you should can set a prefix. This is needed only if the memcache server is shared. If dedicated you don't need it.
    $config['Cache']['memcacheprefix'] = '';



    // ******** SPHINX SEARCH CONFIGURATION ******
    //Please refer to the documentation in do_not_upload/sphinx_install_unix.txt or do_not_upload/sphinx_install_windows.txt
    //for how to configure sphinx to work with vBulletin
    //$config['Misc']['sphinx_host'] = '127.0.0.1';
    //$config['Misc']['sphinx_port'] = '9306';
    //$config['Misc']['sphinx_path'] = '<sphinx_root>'; //no trailing slash
    //$config['Misc']['sphinx_config'] = $config['Misc']['sphinx_path'] . '/etc/vbulletin_sphinx.conf';

    // ***** RESTRICT ADMINCP/MODCP ACCESS BY IP *****
    // You can provide a list of IP addresses that can access the AdminCP. This can increase security of your site.
    // Enter IP Addresses (XXX.XXX.XXX.XXX) separated by a comma. An Empty value disables this feature.
    $config['Security']['AdminIP'] = '';

    // You can provide a list of IP addresses that can access the ModCP. This can increase security of your site.
    // Enter IP Addresses (XXX.XXX.XXX.XXX) separated by a comma. An Empty value disables this feature.
    $config['Security']['ModIP'] = '';

    // ******** TWO FACTOR AUTHENTICATION CONFIGURATION ******
    // This will require that logins for the modcp, admincp, site builder, inline moderation
    // will require a numeric code generated via an app on the user's cell phone or desktop
    // Admins and moderators will be able to log into normal user portions of the site
    // without any changes.
    //
    // This setting will enable two factor authentication for the site
    //$config['Security']['mfa_enabled'] = true;

    // Uncommenting this will allow individuals moderators and admins to set up the Two Factor
    // security, but will not require it for those that choose not to enable it. If it is
    // not set at all Two Factor will be required for all control panel logins and users that
    // have not configured their Two Factor Security will not be able to log in to the
    // control panel functions.
    //$config['Security']['mfa_force_cp'] = false;


    // ****** The following options are only needed in special cases ******

    // ****** MySQLI OPTIONS *****
    // When using MySQL 4.1+, MySQLi should be used to connect to the database.
    // If you need to set the default connection charset because your database
    // is using a charset other than latin1, you can set the charset here.
    // If you don't set the charset to be the same as your database, you
    // may receive collation errors. Ignore this setting unless you
    // are sure you need to use it.
    // $config['Mysqli']['charset'] = 'latin1_german2_ci';

    // Optionally, PHP can be instructed to set connection parameters by
    // reading from the file named in 'ini_file'. Please use a full path to
    // the file.
    // Example:
    // $config['Mysqli']['ini_file'] = 'c:\program files\MySQL\MySQL Server 4.1\my.ini';
    $config['Mysqli']['ini_file'] = '';

    // ******** IMAGE PROCESSING OPTIONS ********
    // Images that exceed either dimension below will not be resized by vBulletin.
    // If you need to resize larger images, alter these settings.
    $config['Misc']['maxwidth'] = 4608;
    $config['Misc']['maxheight'] = 4608;

    // ******** SPECIAL SETTINGS ********
    // The following are settings/permissions that are not normally used but
    // are here for reference. Please be careful using them. Do not enable or
    // uncomment without understanding what they do first.

    // This allows you to disable modifications and extensions to the software.
    // If your site is not functioning well after installing or using a third
    // party modification, please enable this.
    // define("DISABLE_HOOKS", true);

    // This allows you to shut down all mail that is being sent by vBulletin.
    // This is useful for test environments
    // define("DISABLE_MAIL", true);

    // This allows you to enter debug mode, which is for support or development
    // to help understand how pages are built. This should NEVER be enabled in
    // a live environment.
    // $config['Misc']['debug'] = true;

    // This enables debug logging. The debuglogger is controlled from the
    // file core/includes/xml/logger.xml. This is safe to run on a live
    // environment, assuming the log location is secure, however it may
    // impact peformance to have the logging on.
    // $config['Misc']['debuglogging'] = true;

    // The ports in this array will not be appended to generated urls
    // This is useful if you run vB on a non-standard port, e.g. with Varnish in front
    // $config['Misc']['backendports'] = array();

    // A list of allowed ports for uploading.
    // Other than ports 80 and 443, upload requests through any other ports
    // will be blocked, unless specified in the array.
    // Comma separated array of integers, Ex. array(8080, 3128);
    // $config['Misc']['uploadallowedports'] = array();

    // If specified, the installer will set the imported custom language
    // with the following vblangcode as the default language. Note that
    // default language is only set during a fresh installation, and never
    // during an upgrade.
    //
    // Note, the "vblangcode" attribute can be found near the top of a
    // custom language XML file, as part of the outer-most <language > node.
    // If not specified the last imported custom language will be set as the
    // default.
    //
    // The installer will not change the default language if the specified
    // value does not match any existing custom language's vblangcode.
    //$config['Install']['default_language_vblangcode'] = 'martian1';

    /* #### Reverse Proxy IP ####
    If your use a system where the main IP address passed to vBulletin is the address of a proxy server
    and the actual 'real' ip address is passed in another http header then you enter the details here */

    /*
    Enter your known proxy servers here. You can list multiple trusted IPs separated by a comma.
    You can also use the * wildcard (at the end of a definition only) or use the keyword 'all' to represent any ip address.
    Using all is generally not recommended for security reasons.
    */
    //$config['Misc']['proxyiplist'] = '127.0.0.1, 192.168.*, all';

    /* If the real IP is passed in a http header variable other than HTTP_X_FORWARDED_FOR, then you can set the name here; */
    //$config['Misc']['proxyipheader'] = 'HTTP_X_FORWARDED_FOR';

    //Default proxy settings for common proxy providers. Uncommenting this will override any previous proxy
    //configuration (and thus only one of them can be used).
    /*
    //default configuration for Cloudflare proxy.
    $config['Misc']['proxyiplist'] = '103.21.*, 103.22.*, 103.31.*, 104.16.*, 108.162.*, 131.0.*, ' .
    '141.101.*, 162.158.*, 172.64.*, 173.245.*, 188.114.*, 190.93.*, 197.234.*, 198.41.*, ' .
    '2400:cb00:*, 2405:b500:*, 2606:4700:*, 2803:f800:*, 2c0f:f248:*, 2a06:98c0:*';

    $config['Misc']['proxyipheader'] = 'HTTP_CF_CONNECTING_IP';
    */

    /*
    //default configuration for Sucuri Firewall
    $config['Misc']['proxyiplist'] = '192.88.134.2, 192.88.134.3, 192.88.134.4, 192.88.134.5, 192.88.134.6, ' .
    '192.88.134.7, 192.88.134.8, 192.88.134.9, 192.88.134.10, 192.88.134.11, 192.88.134.12, 192.88.134.13, ' .
    '192.88.134.14, 192.88.134.15, 192.88.134.16, 192.88.134.17, 192.88.134.18, 192.88.134.19, 192.88.134.20, ' .
    '192.88.134.21, 192.88.135.2, 192.88.135.3, 192.88.135.4, 192.88.135.5, 192.88.135.6, 192.88.135.7, ' .
    '192.88.135.8, 192.88.135.9, 192.88.135.10, 192.88.135.11, 192.88.135.12, 192.88.135.13, 192.88.135.14, ' .
    '192.88.135.15, 192.88.135.16, 192.88.135.17, 192.88.135.18, 192.88.135.19, 192.88.135.20, 192.88.135.21, ' .
    '185.93.228.2, 185.93.228.3, 185.93.228.4, 185.93.228.5, 185.93.228.6, 185.93.228.7, 185.93.228.8, 185.93.228.9, ' .
    '185.93.228.10, 185.93.228.11, 185.93.228.12, 185.93.228.13, 185.93.228.14, 185.93.228.15, 185.93.228.16, ' .
    '185.93.228.17, 185.93.228.18, 185.93.228.19, 185.93.228.20, 185.93.228.21, 185.93.229.2, 185.93.229.3, ' .
    '185.93.229.4, 185.93.229.5, 185.93.229.6, 185.93.229.7, 185.93.229.8, 185.93.229.9, 185.93.229.10, ' .
    '185.93.229.11, 185.93.229.12, 185.93.229.13, 185.93.229.14, 185.93.229.15, 185.93.229.16, 185.93.229.17, ' .
    '185.93.229.18, 185.93.229.19, 185.93.229.20, 185.93.229.21, 185.93.230.2, 185.93.230.3, 185.93.230.4, ' .
    '185.93.230.5, 185.93.230.6, 185.93.230.7, 185.93.230.8, 185.93.230.9, 185.93.230.10, 185.93.230.11, ' .
    '185.93.230.12, 185.93.230.13, 185.93.230.14, 185.93.230.15, 185.93.230.16, 185.93.230.17, 185.93.230.18, ' .
    '185.93.230.19, 185.93.230.20, 185.93.230.21';

    // Support Sucuri Firewall
    $config['Misc']['proxyipheader'] = 'HTTP_X_SUCURI_CLIENTIP';
    */


    /*=========================================================================*\
    || #######################################################################
    || # Downloaded: 13:48, Thu Aug 8th 2019
    || # CVS: $RCSfile$ - $Revision 82642 $
    || #######################################################################
    \*=========================================================================*/
    Last edited by Wayne Luke; Mon 12 Aug '19, 11:29am. Reason: Removed password.

  • #2
    Brouser says that this site is unreachable...
    The domain name you are using is valid and has existing DNS records? Your hosting provider can help you with DNS setup.
    Translations provided by Google.

    Wayne Luke
    The Rabid Badger - a vBulletin Cloud demonstration site.
    vBulletin 5 API

    Comment


    • #3
      Yes, I changed the DNS settings, waiting for 24 hours, till new DNS will be on...

      Comment


      • #4
        You should be able to access the site via IP Address or the temporary domain provided by your hosting provider when you signed up. You can install vBulletin using this information and update the URL later in the AdminCP.
        Translations provided by Google.

        Wayne Luke
        The Rabid Badger - a vBulletin Cloud demonstration site.
        vBulletin 5 API

        Comment


        • #5
          Now my domain - lebenslehre.eu - is successfully online and reachable.

          But a problem with installation, I got - Internal error - 500 -.
          Last edited by Gardarika; Thu 15 Aug '19, 6:27am.

          Comment


          • #6
            Does your server meet the requirements as outlined here: https://forum.vbulletin.com/forum/vb...m-requirements

            Especially the required PHP version and libraries listed. You can view what is installed by placing a file called info.php on your site. It should have the following contents:

            Code:
            <?php
            phpinfo();
            ?>
            Load info.php in the browser. Scroll down the list provider and make sure the listed libraries each have their own section. If any are missing then you should contact your hosting provider to get them enabled. If you are using a cPanel based host, then you may be able to enable them within cPanel using the Multi PHP Manager under Software.
            Translations provided by Google.

            Wayne Luke
            The Rabid Badger - a vBulletin Cloud demonstration site.
            vBulletin 5 API

            Comment


            • #7
              This is what I've got:

              • Apache version: Apache/2.4.39
              • PHP version: 7.3.8
              • MySQL version: 10.1.41-MariaDB
              • FTP version: 1.0.47
              • SSH Port: 22
              • MySql Port: 3306
              • Web Servers: apache-only

              Comment


              • #8
                That doesn't mention any of the PHP libraries. You have to follow the steps in my previous reply to see if you have all the REQUIRED PHP libraries available.

                A 500 server error is a generic error but it generally means a PHP error. When installing, the most common PHP errors are that a required library is missing.
                Last edited by Wayne Luke; Fri 16 Aug '19, 8:15am.
                Translations provided by Google.

                Wayne Luke
                The Rabid Badger - a vBulletin Cloud demonstration site.
                vBulletin 5 API

                Comment


                • #9
                  Could you to look up at server yourself?

                  I don't understand with that php.info...

                  Comment


                  • #10
                    PHP.info
                    [PHP Modules] bcmath bz2 calendar Core ctype curl date dom ereg exif fileinfo filter ftp gd gettext hash iconv imap ionCube Loader json libxml mbstring mcrypt mysql mysqli mysqlnd openssl pcre PDO pdo_mysql pdo_sqlite Phar posix Reflection session SimpleXML soap sockets SPL sqlite3 standard tokenizer xml xmlreader xmlrpc xmlwriter xsl zip zlib [Zend Modules] the ionCube PHP Loader + ionCube24

                    Comment


                    • #11
                      It appears you have all the libraries needed. I do not know why you're getting a 500 server error. Ask your hosting provider what the actual error is within the error logs.
                      Translations provided by Google.

                      Wayne Luke
                      The Rabid Badger - a vBulletin Cloud demonstration site.
                      vBulletin 5 API

                      Comment


                      • #12
                        Here is the error logs:

                        [Sat Aug 17 19:41:42.027374 2019] [:error] [pid 9912:tid 140130547361536] [client 178.24.239.4:56798] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Sat Aug 17 19:41:42.027485 2019] [core:error] [pid 9912:tid 140130547361536] [client 178.24.239.4:56798] End of script output before headers: install.php
                        [Sun Aug 18 10:00:55.009828 2019] [:error] [pid 32522:tid 140130530576128] [client 178.24.239.93:57452] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Sun Aug 18 10:00:55.009961 2019] [core:error] [pid 32522:tid 140130530576128] [client 178.24.239.93:57452] End of script output before headers: install.php
                        [Sun Aug 18 10:10:33.055380 2019] [:error] [pid 32522:tid 140130513790720] [client 178.24.239.93:57462] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Sun Aug 18 10:10:33.055522 2019] [core:error] [pid 32522:tid 140130513790720] [client 178.24.239.93:57462] End of script output before headers: install.php
                        [Sun Aug 18 10:10:40.251569 2019] [:error] [pid 32522:tid 140130538968832] [client 178.24.239.93:57464] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Sun Aug 18 10:10:40.251716 2019] [core:error] [pid 32522:tid 140130538968832] [client 178.24.239.93:57464] End of script output before headers: install.php
                        [Sun Aug 18 10:27:27.215183 2019] [:error] [pid 32522:tid 140130497005312] [client 178.24.239.93:57468] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Sun Aug 18 10:27:27.215300 2019] [core:error] [pid 32522:tid 140130497005312] [client 178.24.239.93:57468] End of script output before headers: install.php
                        [Sun Aug 18 10:27:56.595129 2019] [:error] [pid 32522:tid 140130480219904] [client 178.24.239.93:57470] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Sun Aug 18 10:27:56.595246 2019] [core:error] [pid 32522:tid 140130480219904] [client 178.24.239.93:57470] End of script output before headers: install.php
                        [Sun Aug 18 10:30:36.549400 2019] [:error] [pid 32522:tid 140130547361536] [client 178.24.239.93:57472] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Sun Aug 18 10:30:36.549532 2019] [core:error] [pid 32522:tid 140130547361536] [client 178.24.239.93:57472] End of script output before headers: install.php
                        [Sun Aug 18 10:31:23.725236 2019] [:error] [pid 32524:tid 140130744178432] [client 178.24.239.93:57474] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Sun Aug 18 10:31:23.725370 2019] [core:error] [pid 32524:tid 140130744178432] [client 178.24.239.93:57474] End of script output before headers: install.php
                        [Sun Aug 18 11:08:42.988434 2019] [:error] [pid 32522:tid 140130564146944] [client 66.249.76.81:57492] File does not exist: /home/lebensle/public_html/css.php, referer: http://lebenslehre.eu/forum/%D0%BE%D...83%D0%BC%D0%B0
                        [Sun Aug 18 11:08:44.631896 2019] [:error] [pid 32524:tid 140130735785728] [client 66.249.76.85:57494] File does not exist: /home/lebensle/public_html/css.php, referer: http://lebenslehre.eu/forum/%D0%BE%D...83%D0%BC%D0%B0
                        [Sun Aug 18 11:08:45.038056 2019] [:error] [pid 32522:tid 140130488612608] [client 66.249.76.85:57496] File does not exist: /home/lebensle/public_html/css.php, referer: http://lebenslehre.eu/forum/%D0%BE%D...83%D0%BC%D0%B0
                        [Mon Aug 19 09:01:49.687811 2019] [:error] [pid 23323:tid 140130488612608] [client 5.188.62.5:60086] File does not exist: /home/lebensle/public_html/wp-login.php
                        [Mon Aug 19 09:01:49.877666 2019] [:error] [pid 23323:tid 140130480219904] [client 5.188.62.5:60088] File does not exist: /home/lebensle/public_html/xmlrpc.php
                        [Mon Aug 19 18:46:30.543777 2019] [:error] [pid 28567:tid 140130589325056] [client 178.24.239.76:33222] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Mon Aug 19 18:46:30.543914 2019] [core:error] [pid 28567:tid 140130589325056] [client 178.24.239.76:33222] End of script output before headers: install.php
                        [Tue Aug 20 08:56:34.994361 2019] [:error] [pid 999:tid 140273036670720] [client 178.24.238.241:55350] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Tue Aug 20 08:56:35.008154 2019] [core:error] [pid 999:tid 140273036670720] [client 178.24.238.241:55350] End of script output before headers: install.php
                        [Tue Aug 20 09:10:26.004929 2019] [:error] [pid 1003:tid 140273036670720] [client 178.24.238.241:55360] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Tue Aug 20 09:10:26.005267 2019] [core:error] [pid 1003:tid 140273036670720] [client 178.24.238.241:55360] End of script output before headers: install.php
                        [Tue Aug 20 11:48:59.270875 2019] [:error] [pid 1003:tid 140272860083968] [client 178.24.239.213:55460] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Tue Aug 20 11:48:59.271001 2019] [core:error] [pid 1003:tid 140272860083968] [client 178.24.239.213:55460] End of script output before headers: install.php
                        [Tue Aug 20 12:08:52.995720 2019] [:error] [pid 1115:tid 140190454875904] [client 178.24.239.213:41864] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Tue Aug 20 12:08:52.996134 2019] [core:error] [pid 1115:tid 140190454875904] [client 178.24.239.213:41864] End of script output before headers: install.php
                        [Tue Aug 20 15:20:05.055214 2019] [:error] [pid 2112:tid 140138038408960] [client 178.24.239.120:56416] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Tue Aug 20 15:20:05.055358 2019] [core:error] [pid 2112:tid 140138038408960] [client 178.24.239.120:56416] End of script output before headers: install.php
                        [Tue Aug 20 15:20:11.627243 2019] [:error] [pid 1009:tid 140138030016256] [client 178.24.239.120:56418] SoftException in Application.cpp:249: File "/home/lebensle/public_html/forum/core/install/install.php" is writeable by group
                        [Tue Aug 20 15:20:11.627370 2019] [core:error] [pid 1009:tid 140138030016256] [client 178.24.239.120:56418] End of script output before headers: install.php

                        Comment


                        • #13
                          Error is "File "/home/<xxx>/public_html/forum/core/install/install.php" is writeable by group" So your host is preventing file execution, which some do. Use chmod command (you can do this in an FTP client like Filezilla or the command line, or if your host is helpful, ask them to do it) all .php files chmod to 644 and all folders chmod to 755.

                          Comment


                          • #14
                            I changed the permissions to 755 and 644... Anyway - Internal Server Error - ...

                            Is evrything correct in config file - http://lebenslehre.eu/forum/core/install/install.php ?

                            Comment


                            • #15
                              I get a file not found.

                              You cannot use NGINX unless your host modifies the server configuration with the rewrite rules located in the do_not_upload directory. The file is called nginx_php7.vhost. Not sure why you said you were using Apache able. The error on your page is generated by NGINX.
                              Click image for larger version

Name:	2019-08-20_9-30-20.png
Views:	316
Size:	9.5 KB
ID:	4420391

                              Translations provided by Google.

                              Wayne Luke
                              The Rabid Badger - a vBulletin Cloud demonstration site.
                              vBulletin 5 API

                              Comment

                              Related Topics

                              Collapse

                              Working...
                              X
                              😀
                              🥰
                              🤢
                              😎
                              😡
                              👍
                              👎