Bug Public (Joinable) Custom Usergroups

Status
Not open for further replies.

webi

Customer
Hi Fillip H.,

The link in the User Control Panel for Members List does not work when Rewrite Member List URLs is set to Yes.
It all users of the forum are shown and not the individual group.

Best Regards
 

Attachments

  • List_Members.PNG
    List_Members.PNG
    5.8 KB · Views: 4
Hi Fillip H.,

A similar problem we have with external links.
If the "Anonymise External URLs" option is enabled, the external links run at a 404 Error.
Example: http://www.nachtfalke.biz/redirect-to/?redirect=http://bit.ly/oscam-anleitung

Our nginx.conf:
Code:
        location ~* \.(jpg|jpeg|gif|png|css|js|ico|xml)$
        {
                access_log      off;
                expires         30d;
                log_not_found   off;
        }

        location /
        {
                try_files $uri $uri/ /dbseo.php;
        }

        location ~ ^((?!dbseo).)*\.php$
        {
                rewrite ^/(.*)$ /dbseo.php last;
        }

        location ~* \.(php)$
        {
                fastcgi_index index.php;
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                include /etc/nginx/fastcgi_params;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;
                fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
        }
 
I don't know enough about nginx in order to tell you what you need to do in order to resolve that. If you don't know how to configure Nginx in order to resolve that, you should contact your server administrator that configured nginx in the first place.
 
Hi Fillip H.,

The link in the User Control Panel for Members List does not work when Rewrite Member List URLs is set to Yes.
It all users of the forum are shown and not the individual group.

Best Regards
I'm unable to replicate this issue. What's your Member List URL format?
 
I don't know enough about nginx in order to tell you what you need to do in order to resolve that. If you don't know how to configure Nginx in order to resolve that, you should contact your server administrator that configured nginx in the first place.

DBSeo accepts the request in any case already against me,

I always get the message "Page not found"

This message comes through the dbseo / includes / class_core.php file
Code:
                 switch ($ _configSetting)
                 {
                         case 1:
                                 header ("HTTP / 1.1 404 Not Found");
                                 // header ("Status: 404 Not Found");
                                 the ('Page not found');
                                 break;

                         default:
                                 header ("HTTP / 1.1 301 Moved Permanently");
                                 header (... "Location:" DBSEO_URL_SCRIPT_PATH self :: $ config ['forum home'] '.php');
                                 break;
                 }

With that being said exactly DBSeo that it is a "Page not found"?

Maybe we will get together with other users a solution that works together with a ngnix server.
 
Could you please create and PM me with a temporary FTP and AdminCP account?

For security reasons, we recommend you create a new FTP account only for DBTech support, then disable or delete it after we have both confirmed the issue has been solved and there are no further issues.

The same applies to AdminCP accounts; they should ideally be temporary accounts created for us only. If we have created an account on your site already, you can optionally boost that account to Administrator and then de-admin this account once the issue has been solved.

If you use a .htaccess password protection for your AdminCP directory, it is recommended that you create a new authorised user for DBTech and remove this user once the issue has been solved.

Please test any temporary accounts you create to ensure that the FTP account has access to the forum files, and that the AdminCP account can access the administrative controls for the product we are assisting you with.

Ensuring this is all in order before submitting the information will significantly speed up the process of assisting you. We will alert you via PM if there's any issues with the login information you have provided.

When sending the PM, for your security you should also un-tick the "Save a copy in my Sent Items folder" checkbox. When the access details have been received, we will delete the PM from our inbox. Ensuring you have not kept a copy of the PM reduces the risk of security breaches.

Thank you for helping us debug our products and allowing us to assist you, we appreciate it :D
 
Update: This appears to be a problem with the Nginx configuration, as it is not passing on the ?redirect= query parameter onto PHP. Please double-check your Nginx configuration.
 
Unfortunately I can not find any error in my nginx configuration.
I will first of all have to live with disabled rewrite.
 
The issue from the OP and the redirect-to issue is the exact same problem, and the problem is in your Nginx configuration. Unfortunately I have no experience with Nginx, so I can't advise you further regarding how to resolve the problem.
 
As this ticket has received no further replies, I'll close it.

If you have any further issues or questions, please feel free to start a new support ticket. Thanks!
 
Status
Not open for further replies.

Legacy DragonByte SEO

vBulletin 3.8.x vBulletin 4.x.x
Seller
DragonByte Technologies
Release date
Last update
Total downloads
7,172
Customer rating
5.00 star(s) 1 ratings
Back
Top