Search results

  1. Mark

    Working On It Code tag / enhancement for custom page editor

    thanks much fro the clear examples :) I will take a closer look at this as time allows, looks like the security on the edit custom pages could be tweaked to be a little more forgiving.
  2. Mark

    Not Feasible Upload banner/button on sign up.

    You can enable remote URL's in the join form using the link below, allowing everyone in the world to upload to your server is not a good idea. http://visiolist.com/community/threads/join-php.250/#post-1446
  3. Mark

    Working On It Code tag / enhancement for custom page editor

    indeed, those pages were not created with the intent of allowing people to insert <?php tags into the database Also when you are editing HTML make sure you are using the HTML button in the editor ;) it sounds like you might not have been.
  4. Mark

    Working On It Code tag / enhancement for custom page editor

    There are several syntax highlighters available for TinyMCE :) perhaps try this one: https://github.com/RichGuk/syntaxhl you can also include a file with .phps extension via iframe to show syntax highlighting for PHP code we may look at adding syntax highlighting in the long term future
  5. Mark

    Screenshots - Internal Server Error

    thanks for the feedback :)
  6. Mark

    Screenshots - Internal Server Error

    that file will correct the black you are seeing, (its cached by your browser)
  7. Mark

    Screen shot problem

    There was already an active thread on this topic, I was working on the screenshot server.
  8. Mark

    Screenshots - Internal Server Error

    I just deleted all the screenshots on the server and might have interfered with your request, please try again :) You can also upload this new screenshots.php to your root directory which includes a cachbuster to prevent the old screenshot showing while you are rendering it. (this will be...
  9. Mark

    button is not...

    its in the root, the same place as your index.php and settings_sql.php files.
  10. Mark

    Screenshots - Internal Server Error

    Alright, try it now. Hopefully it all goes smooth for you this time
  11. Mark

    Screenshots - Internal Server Error

    very odd, I will check screenshots from a few different lists now to see if its something on your server or our screenshot server.
  12. Mark

    Screenshots - Internal Server Error

    are you able to generate ANY screenshots? Usually when that happens the request is not making it to the screenshot server
  13. Mark

    Screenshots - Internal Server Error

    I have contacted the Datacenter our screenshot server is located in and they have confirmed there was a problem. They have assured me the issue has been resolved.
  14. Mark

    button is not...

    My fault, I failed to edit that back after doing some development work open settings_buttons.php and remove this line: $TMPL['tot_in_0_weekly'] = 87; You can also download an older bundle (0.7 or 0.6) and use that settings_buttons.php
  15. Mark

    Screenshots

    All screenshot API requests have been fulfilled. Please request a key if you have not yet done so: http://api.visiolist.com/
  16. Mark

    Screenshots - Internal Server Error

    since the screenshtos are rendering fine on our server, the issue seems to be during the copy portion. What shows in the error log for the error 500? (500 is internal server error which is happening on your environment)
  17. Mark

    {$old_rank} or {rank} in stats.html

    {$old_rank} = the last rank value that was cached (used to determine movement ip/down/no change when compared to current rank) {$rank} = only used in rankings, calculated dynamically. This tag is not intended to be used on the stats page, you would need to create a plugin to recalculate the...
  18. Mark

    Screenshots - Internal Server Error

    Could be the screenshot server is running slow or network traffic between your server and the screenshot server is busy. I will run some tests and see what I find.
  19. Mark

    Bug - Google and Baidu bots can vote

    nofollow to the vote button would prevent pagerank from passing back to the topsite, you can do this if you like to your list but we wont be adding this to the core. I believe in.php does have checks in place to prevent Google bots from voting, but I will take a look at this again and update as...
  20. Mark

    Limit Display to Homepage

    0.8 and earlier if(empty($FORM['a']) && empty($FORM['app']) && empty($FORM['method']) && empty($FORM['cat'])){ //this must be the front page } However in 0.9 release we now have the option to use if(isset($isfront)) { //this must be the front page }
Top