Search results

  1. Mark

    Include in the page

    Nice, we should probably roll this into 1.7?
  2. Mark

    Template of demo

    Still working on it, sorry for any confusion. It should be ready in January.
  3. Mark

    Include in the page

    Those tags only work in the skin templates, not inside the content of custom pages. I'll see if we can make that work for you.
  4. Mark

    Include in the page

    What template did you paste the tag into?
  5. Mark

    Include in the page

    I just tested on PHP 7.2 and 7.3 in both cases the {include "https://mydomain/testscript.php"} worked as expected. Can you check your error_log for more details? Edit: there is no "create_function" in 1.6, we are already 7.2+ ready
  6. Mark

    Contact Form

    Your language file was commented out, I fixed it up, can you try it now?
  7. Mark

    Contact Form

    These all appear to be language related, can you send me FTP login via email or private message? I no longer have your credentials.
  8. Mark

    Contact Form

    Hello, the first one should be resolved if you translate plugins/SendMessage/languages/english.php to your language I will post an update soon that will resolve the other notices
  9. Mark

    404 error

    Hello, that plugin has been deleted. You can add this line to your .htaccess: ErrorDocument 404 /404.html then create a custom 404.html page for your error message.
  10. Mark

    Contact Form

    nice update, thanks Basti!
  11. Mark

    Contact Form

    you would need to custom extend that, the plugin was designed to use a less intrusive method (honeypot). Are you getting hit with spam?
  12. Mark

    Contact Form

    cool, its easy to overlook :)
  13. Mark

    ERROR IN INSTALL - HELP PLZ

    It appears your server is not allowing the files to be written to, you may need to chmod 777 the /languages/ folder. You will also need to chmod 666 the settings_sql.php file. Check this page for more info: http://visiolist.com/docs/Installing-visiolist
  14. Mark

    Contact Form

    Make sure your new input fields have the attribute name="something". If you still cannot get it to work, can you post an example of what you have added? or a link?
  15. Mark

    Working On It Credit system

    I had actually experimented with a credits type system in the past and it worked fairly well even though was just a really rough attempt. One of the other advantages is credits can be "earned" by hooking into other functions, so for example if the user shares to social media they might earn...
  16. Mark

    Want your VisioList featured?

    Hello all, I am finally getting around to redesigning our VisioList homepage and I would like to show off a few customized lists. If you have a custom theme and would like to show it off, let me know!
  17. Mark

    Add Ranking Settings

    create your rankings_order_by.php plugin file. Add the code basti pasted above to it. // Make ORDER BY clause $order_by = "tot_{$ranking_method}_overall DESC"; Create a plugin folder and info file for your new plugin and place you new file inside that folder...
  18. Mark

    Member banner gif to mp4 conversion

    It’s basically a mini web page, a group of files with an index that is responsive, they can include dynamic content, have multiple links etc. Fairly common on google ads, not so common anywhere else.
  19. Mark

    Issue with URL Blacklist

    mod_sec rules have been updated, you should be all set now. Let me know if you have any issues.
  20. Mark

    How to limit the Website description

    {$description, length=100} in your table_top_row, table_row, stats templates will limit the characters to 100 characters. to limit characters in join form, edit join_form template and use the maxlength attribute on the description textarea: <textarea maxlength="100"
Top