Error in member registration page in vbulletin 5.3.4

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • habili
    Senior Member
    • Jan 2018
    • 253
    • 4.2.x

    Error in member registration page in vbulletin 5.3.4

    Hi dear friends

    I bought vbulletin 5 liccenss and I want to upgrade from version 4 to 5.

    I did all steps, but when in "login or sing up" menu, I click on "sing up" I faced with bellow error :

    error_information_x



    And server specifications are as bellow :

    OS : CentOS 7.4
    PHP : 5.6
    Web Server : Nginx 1.12
    Database : MariaDB 10


    Thanks and best regard
  • Wayne Luke
    vBulletin Technical Support Lead
    • Aug 2000
    • 73976

    #2
    Do you have paid subscriptions available at registration? Make sure they are available to all usergroups under Paid Subscriptions -> Paid Subscription Permissions
    Translations provided by Google.

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

    Comment

    • habili
      Senior Member
      • Jan 2018
      • 253
      • 4.2.x

      #3
      Originally posted by Wayne Luke
      Do you have paid subscriptions available at registration? Make sure they are available to all usergroups under Paid Subscriptions -> Paid Subscription Permissions
      Thank's for your replay. Problem was on nginx configurations, below configuration is OK :

      PHP Code:
      server {
          
      listen 80;

          
      server_name My IpAddress;

              
      # document root for request,  uncomment and set proper value
          # this should reflect the path that your vBulletin is installed in.
          # This is usually /var/www/public_html/forumpath
              
      root   /usr/share/nginx/html/;
              
      index   index.php index.html index.htm;
          
      client_max_body_size 20M;  
          
      access_log /var/log/nginx/forum.access.log  main;
          
      error_log  /var/log/nginx/forum.error.log;

          
      # configuration rules
              # legacy css being handled separate for performance
              
      location = /css\.php {
                      
      rewrite ^ /core/css.php break;
              }

          
      location ~* ^.+\.(javascripts|js|json|ico|gif|jpg|jpeg|pdf|png|css|woff|ttf|otf|eot)$ {
              
      root /usr/share/nginx/html/;
              
      access_log off;
              
      log_not_found   off;
              
      expires max;
              
      gzip_static on;
          }


              
      # make install available from presentation
              
      location ^~ /install {
                      
      rewrite ^/install/ /core/install/ break;
              }

              
      # any request to not existing item gets redirected through routestring
              
      location / {
                      if (!-
      f $request_filename) {
                              
      rewrite ^/(.*)$ /index.php?routestring=$1 last;
                      }
              }

              
      # make admincp available from presentation
              
      location ^~ /admincp {
                      if (!-
      f $request_filename) {
                              
      rewrite ^/admincp/(.*)$ /index.php?routestring=admincp/$1 last;
                      }
              }

              
      # process any php scripts, not found gets redirected through routestring
              
      location ~ \.php$ {
                      
      # handles legacy scripts
                      
      if (!-f $request_filename) {
                              
      rewrite ^/(.*)$ /index.php?routestring=$break;
                      }

                      
      fastcgi_split_path_info ^(.+\.php)(.*)$;
                      
      fastcgi_pass php5;
                      
      fastcgi_index index.php;
                      
      fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                      include 
      fastcgi_params;
                      
      fastcgi_param QUERY_STRING $query_string;
                      
      fastcgi_param REQUEST_METHOD $request_method;
                      
      fastcgi_param CONTENT_TYPE $content_type;
                      
      fastcgi_param CONTENT_LENGTH $content_length;
                      
      fastcgi_intercept_errors on;
                      
      fastcgi_ignore_client_abort off;
                      
      fastcgi_connect_timeout 60;
                      
      fastcgi_send_timeout 180;
                      
      fastcgi_read_timeout 300;
                      
      fastcgi_buffers 256 16k;
                      
      fastcgi_buffer_size 32k;
                      
      fastcgi_temp_file_write_size 256k;
              }
      }

      upstream php5 {
          
      # address to accept FastCGI requests. Make sure you set the right value under your fast cgi conf.
              # e.g.- Ubuntu 12.10 using php5-fpm Ubuntu /etc/php5/fpm/pool.d/www.conf
          
      server    127.0.0.1:9000;

      Comment

      • Wayne Luke
        vBulletin Technical Support Lead
        • Aug 2000
        • 73976

        #4
        Glad that you have it resolved. We try to provide the basic NGINX configuration but it isn't guaranteed to work on all servers. We cannot account for all configurations.
        Translations provided by Google.

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

        Comment

        Related Topics

        Collapse

        Working...