Status
Not open for further replies.

sendur

Customer
Hi,

After migrating from vbseo to dbseo, i've noticed my visitors cannot access the site anymore with Tapatalk.

DBSEO enabled: Tapatalk fails
VBSEO enabled : Tapatalk works

The rewrite rules for my webserver are the same, except when calling vbseo.php i use dbseo.php (when dbseo enabled) and vica versa.

Tapatalk fails with:

Error!
Tapatalk Plugin is either not installed or installed incorrectly. Retry Help
Error message:Server error occurred: 'require_once() [function.require]: Failed opening required './global.php' (include_path='.:/usr/local/php5_3/lib/php') (get_config.php:44)'
 
I wouldn't know - but your threads are working and Tapatalk is working, so if it doesn't read those .htaccess files then I don't know why it's now sprung to life :confused:
 
I wouldn't know - but your threads are working and Tapatalk is working, so if it doesn't read those .htaccess files then I don't know why it's now sprung to life :confused:

Hi Fillip H.,

I know why it still worked... :( While you've changed/enabled dbseo, nginx was still calling vbseo.php (thus vbseo.php was active), i've set it back to dbseo.php and now it broke again......

The only change i make is v to d in xbseo.php....

Code:
location /forum/ {
if ($request_filename ~ "\.php$" ) {
rewrite ^(/forum/.*)$ /forum/dbseo.php last;
}

if (!-e $request_filename) {
rewrite ^/forum/(.*)$ /forum/dbseo.php last;
}

}

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

if ($request_filename ~ "\.php$" ) {
rewrite ^/forum/(.*)$ /forum/dbseo.php last;
}


location ~* /.(ico|css|js|gif|jpe?g|png)$ {
    expires max;
    add_header Pragma public;
    add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}
 
Can you please alter your rewrite rules to exclude the "mobiquo" folder? This is required in order for Tapatalk to function correctly.
 
Update: While I'm looking into this, you should be aware that you have multiple problems with your nginx configuration. First of all, logging in to the AdminCP shows "502 Bad Gateway" when viewing the top bar and the main content frames.

Secondly, your error logs are full of the following:
Code:
[alert] 16878#0: *44226 768 worker_connections are not enough while connecting to upstream, client: <>, server: <>, request: "GET /forum/forum.php HTTP/1.0", upstream: "fastcgi://127.0.0.1:9000", host: "<>
 
Update #2: There is now a .htaccess protection on your AdminCP that I do not have the information to bypass. Additionally, Tapatalk seems to be working on your forum now. Did you make any changes to it?
 
Hmmm looking into my nginx config it appears some stuff is being applied twice.

Original config:

Code:
[COLOR="#008000"]location /forum/ {
if ($request_filename ~ "\.php$" ) {
rewrite ^(/forum/.*)$ /forum/dbseo.php last;
}

if (!-e $request_filename) {
rewrite ^/forum/(.*)$ /forum/dbseo.php last;
}

}
[/COLOR][COLOR="#FF0000"]
location ~ /forum/(.*\.php)$ {
rewrite ^/forum/(.*)$ /forum/dbseo.php last;
}

if ($request_filename ~ "\.php$" ) {
rewrite ^/forum/(.*)$ /forum/dbseo.php last;
}
[/COLOR]

location ~* /.(ico|css|js|gif|jpe?g|png)$ {
    expires max;
    add_header Pragma public;
    add_header Cache-Control "public, must-revalidate, proxy-revalidate";
}


Stuff in red was double and removed, stuff in green was good, and remained. Somehow this broke Tapatalk with dbseo, but not with vbseo :)


Edit: im testing this now: BUT now you cannot go to latest post in new thread...
 
Last edited:
Status
Not open for further replies.

Similar threads

Legacy DragonByte SEO

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