Search results

  1. Mark

    [Resolved] Need Help With Link Code For Members

    Yes, several users have found that with the last release the images/extra folder was missing. Once created, your link_code page should work just fine. Can you PM your URL so I can check?
  2. Mark

    [Resolved] Need a little help with upgrade

    Either way will work just fine
  3. Mark

    [Resolved] Need a little help with upgrade

    that is a bug in the installer on server running MySQL in strict mode. Empty your existing database from the incomplete install: Then open install/index.php find: `description` TEXT default '', Replace with: `description` TEXT, Re-run the installer and you should be all set. let...
  4. Mark

    Woahhhhhhh. I was using this toll like 6 years ago and forgot about it lol! Is it still working and updated? Thanks

    Yes still working, development cycles are slow but bug fixes and updates are released as time allows once or twice a year.
  5. Mark

    Premium Banner table_row table_top_row

    I believe you will need a custom plugin to make it work the way you want, it’s quite different from the intended method.
  6. Mark

    Premium Banner table_row table_top_row

    yes, you need to wrap those links in an image tag something like: <img src="{$banner_url}">
  7. Mark

    Premium Banner table_row table_top_row

    I believe this is because newer versions use video conversion for banners, so we no longer use the path to the image but rather render entire HTML code block. You shouldbe able to use {$banner_url} and {$premium_banner_url} in your templates to accomplish what you need if I am not mistaken.
  8. Mark

    [Resolved] Need a little help with upgrade

    Hey There, long time! PHP 7.2 is recommended because 5.6 reached end of life a couple years ago. VisioList will still function fine with 5.6 though so you are good to proceed with the update. Since you are upgrading from such an old version, its probably a good idea to remove or disable all...
  9. Mark

    ranking all sites

    You can change the wording of "All Sites" in the admin panel, phrase/language editor. languages/english.php $LNG['main_all'] = 'All Sites'; OR you could make your own plugin file: rankings_order_by.php: if (!$TMPL['cat_exist']) { $TMPL['header'] = "{$LNG['main_header']}"; }
  10. Mark

    Two Factor Authentication

    Seems like a conflict with the recaptcha and 2fa, I will investigate asap
  11. Mark

    Member button has no size limit - huge fills page, should resize or have a size limit so large button can't be submitted

    Hello, there is a height, width and filesize restriction on buttons uploaded. Check your admin -> settings, sounds like you have it disabled.
  12. Mark

    Screenshots problem.

    That is very odd, I am not able to duplicate this. If you generate all screenshots does that work?
  13. Mark

    VisioList App

    not really, i mean its possible, but our dev time is quite limited and its more suitable as web server based app rather than a native standalone app.
  14. Mark

    2-Factor Authentication

    Yes I confirmed that user passwords email sent as normal in all circumstances.
  15. Mark

    Trying to get SMTP working, get an error...

    Most likley the CA certificates you have installed are outdated and/or do not include the root certificate. This guide should help you: https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting#certificate-verification-failure
  16. Mark

    2-Factor Authentication

    I just tested the password reset with your exact settings, the function fired as normal, I did get a warning from Gmail that they blocked the request. But once I approved it the password reset email came through as expected.
  17. Mark

    Information "text" subpages have been losing the bold html effects

    in your skins/default/child/user_cp_main_menu.html template: find: <li class="dropdown-item premlink"><a href="{$list_url}/index.php?a=user_cpl&amp;b=user_premium"><i class="fas fa-money-check-alt"></i> <strong>{$lng->user_cp_premium_buy_menu}</a></li> Replace with: <li...
  18. Mark

    Information "text" subpages have been losing the bold html effects

    thanks, that should help isolate the cause. Checking now.
  19. Mark

    Information "text" subpages have been losing the bold html effects

    You are going to need to provide an example of the code with a URL, most likely you are using a font-family on the front-end that does not contain "bold", if its a google font, its as easy as adding the correct font-weight to the tag in your <head>. family=WHATEVERYOURFONTIS:wght@400;600;800
  20. Mark

    Error: Invalid Category.

    I just tested on the dev list and was not able to reproduce this, all of the spaces became - as expected in the slug field. Very strange, I dont see why this regex woudl fail on your server but will keep digging. Did you type these category names into the admin panel, or "paste" them for...
Top