Search results for query: *

  1. B

    Bug Lite version missing ipcheck files

    Is there an eta on this as now my admins cannot search by ips.
  2. B

    Bug Lite version missing ipcheck files

    So we are trialing the new version of vbsecurity and it seems like you have replaced the built in ipsearch functionality of vbulletin with your own but then failed to include the doips.php Heres the code that I looked at to see why we were getting the error and the lite pkg does not include a...
  3. B

    Bug After visting a showpost url, the url in the browser bar cannot be shared to others

    So the default vbulletin 4x generates nice showpost urls that are compatible with everyone no matter what your personal settings are. So currently, if I wish to link someone to a specific post in a thread I have to right click copy url the actual post# and the this url...
  4. B

    Question What are the keywords used for?

    What are the keywords used for? Difference between the different priorities? I can't find any documentation for this feature.
  5. B

    Legacy Pass ?explain=1 to nonseo file

    What would the proper url format be? As the one I provided does not work and the original page is loaded instead.
  6. B

    Legacy Pass ?explain=1 to nonseo file

    No, id like to pass the explain on to showthread or the forumlist or whatever page i am currently viewing. Ie https://www.thebuddyforum.com/rebornbuddy-forum/146116-release-rebornbuddy-version-1-0-141-a.html?explain=1 Should show the explain page for the post in question.
  7. B

    Legacy Pass ?explain=1 to nonseo file

    When running in debug mode it is possible to see what queries are running and what the page load time is etc. To get the detailed information about what queries are being run you must pass ?explain=1 to the page. It seems like currently dbseo does not pass this along. I usually run with if...
  8. B

    Bug New Post url redirect not being rewritten

    location ~* \.(png|jpg|jpeg|gif|ico)$ { 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...
  9. B

    Bug New Post url redirect not being rewritten

    Ended up augmenting my current nginx rules This worked well for the most part. location / { try_files $uri $uri/ /dbseo.php; } Needed to add location ~ ^((?!dbseo).)*\.php$ { rewrite ^/(.*)$ /dbseo.php last; } This is better then most of the rewrites I have seen using nasty...
  10. B

    Bug New Post url redirect not being rewritten

    I've been doing my own tracing and was surprised when dbseo does not hook friendlyurl_resolve_class to modify the url. Looks like showthread.php calls exec_header_redirect(fetch_seo_url( and that slaps us straight into the new post via showthread.php instead of dbseo. Nginx config is fine...
  11. B

    Bug New Post url redirect not being rewritten

    We are running nginx and the requests are clearly hitting dbseo.php otherwise there would be 404 errors.
  12. B

    Bug New Post url redirect not being rewritten

    Have you made progress with investigating the issue?
  13. B

    Bug New Post url redirect not being rewritten

    Having some issues with new-post urls. https://www.thebuddyforum.com/demonbuddy-forum/demonbuddy-profiles/adventure-mode/162716-adventure-mode-bounties-community-edition-new-post.html This post will load the proper page fine, but upon loading it the url has changed to nonseo version...
Back
Top