Search results

  1. Mark

    PayPal Return URL

    yes the form will override this. I will look closer at documenting this feature, i also understand paypal has a new interface for some users which makes our current instructions a bit fuzzy.
  2. Mark

    PayPal Return URL

    Hello, you can leave the Return URL blank, that value is passed dynamically from the order form.
  3. Mark

    Clean Urls & Link Validation

    clean URL's changes yoursite.com/index.php?a=stats&u=something Into: yoursite.com/stats/something button links have nothing to do with clean URL's, if your referring to W3c validation you most likely have unencoded ampersands in the path. If that is the case, replace & with &
  4. Mark

    hi there, im new to this toplist script and i have some questions

    as Basti says, the 100KB limit is a protection that can be changed easily, BUT again, allowing user to upload large banners (even 100KB is too big), you must consider if you have 20 members and they each put up a 100KB banner your home page is now 2MB!! Have you considered the negative impact...
  5. Mark

    Implemented Bruteforce prevention

    indeed, this is an important planned feature. I expect to have this live on 0.8 or 0.9 at the latest
  6. Mark

    hi there, im new to this toplist script and i have some questions

    Well you are free to use it as Basti posted above :) but its 2012 and loading external images or topsites with broken images is a thing of the past. I too have been in the topsite game as a successful list owner and developer since the early 2000's and I can assure you, locally hosted banners is...
  7. Mark

    Rank by vote

    to elaborate just a little more :) Add this to your stats.html template and style as you like: <a href="{$list_url}/index.php?a=in&u={$username}">VOTE</a>
  8. Mark

    Rank by vote

    Hello, this is already how it works. click in = vote. By default each person can only vote once per day.
  9. Mark

    Problem with JQuery.

    hello, what do you mean "nothing happen"? please provide more information including a URL and what you are trying to accomplish. Also follow the instructions carefully on how to use a custom jquery UI theme, its very simple...
  10. Mark

    .htaccess

    consider the pros and cons of such a change. A good video from Matt Cutts on the topic:http://searchengineland.com/googles-matt-cutts-on-keywords-in-the-url-16976 The SEO impact of /category/ in the URL is going to be very small (if any), though this might have been better if we had originally...
  11. Mark

    Enable/disable Rate & Review functions

    delete the /sources/rate.php file.
  12. Mark

    Questions about banners

    counting pageviews will not slow down your server or website load time. However it CAN cause your site to use more server resources than you might have available, in which case you could bring your server down altogether or be forced to upgrade to a bigger hosting plan with more CPU/RAM.
  13. Mark

    Questions about banners

    Something for all users to consider, before altering the max size :) 100kb is twice the size most good ad networks allow for animated gif. If you allow your members to upload large files your site could slow to a crawl and be penalized by Google who now factors page load time into its...
  14. Mark

    Newest Members position

    I think we should stop using template hooks altogether and make all plugins have their own template tag for output. That means 1 extra step for the user when installing a plugin (paste {$something} into whatever template), but then they can place the output anywhere they like.
  15. Mark

    Buttons -again

    colors are set on these lines: $color1 = imagecolorallocate($img, 0, 0, 0); $color2 = imagecolorallocate($img, 0, 0, 0); the 0,0,0 are Red, Green, Blue values. You might need an image editor (like photoshop) to know what colors are what. Or a reference like this might be helpful...
  16. Mark

    Buttons -again

    with GD lib anyway (what we use), but Imagemagick might have a tool for this, not sure.
  17. Mark

    Newest Members position

    well the user can rename the plugin folder and make it his own to avoid overwriting. At this time its the only solution, there is no solution coming soon to order these types of situations.
  18. Mark

    Buttons -again

    I think when PHP writes data to a .gif it will stop the animation. At least that has been my experience in the past.
  19. Mark

    Newest Members position

    The plugin can also be modified to use its own template tag instead of {$sidebar_1_bottom}. Basically edit the plugin and replace $TMPL['$sidebar_1_bottom'] with $TMPL['newest_members_mod'] and you can use {$newest_members_mod} to position the output in wrapper.html
  20. Mark

    .htaccess

    it hard to say without testing, can I ask the reason you want to change this?
Top