Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Thumbnails not loading and VERY ODD URL structure

edited June 2006 in Vanilla 1.0 Help
When I load http://www.vectornyc.com/marc/ - It will successfully generate thumbnails, however they won't display. Also if you look in the URL in the upper right corner, FIlebrowser is doing something odd to the URL's IE: http://www.vectornyc.com/marc/index.php?fpp=10&did=0

Comments

  • edited June 2006
    Hmm. I'm considering your php might be giving you HTTP_HOST incorrectly. What happens if you search in index.php for: function CurrentWebPath() { $SelfWebPath = ForceString(@$_SERVER["HTTP_HOST"], "").ForceString(@$_SERVER["PHP_SELF"], ""); (line 528) and replace it with: function CurrentWebPath() { $SelfWebPath = "www.vectornyc.com".ForceString(@$_SERVER["PHP_SELF"], ""); Stabbing in the dark here but i'm pretty sure thats where filebrowser finds itself and it's obviously getting wrong information somewhere.
  • Matter of fact that made it worse!
  • What effect did it have?
  • MarkMark Vanilla Staff
    Here's the easy fix:

    Open up index.php and change lines 527-532 to this:

    function CurrentWebPath() { return 'http://www.vectornyc.com/marc/'; }

    I'm 99% sure that should get it working for you...
  • Mark - You are the best!!!
This discussion has been closed.