Search results

  1. Mark

    Screenshot not working

    I rebooted the server, please try rendering now
  2. Mark

    Screenshot not working

    please ensure you are using VisioList 1.4
  3. Mark

    Redirect 404 Errors

    since its a new installation and you don't have the old database to import from, your only option is really to create in.php in your root directory (the same folder as the one that holds settings_sql.php) with the following contents: header("HTTP/1.1 301 Moved Permanently")...
  4. Mark

    Redirect 404 Errors

    ahh thanks for that URL, this explains it. you should not need to redirect those with such a generic rule, the problem is that old URL is very similar to what aardvark used 15+ years ago :) if you converted an old list and have the same members, you can do this instead of messing with...
  5. Mark

    Install Gremlin

    Looks like you are using a very new version of PHP, can you run version 5.3 or 5.4? PHP removed mysql_ functions, we will have a new release out in the future that will use mysqli_ or PDO but because it also requires all plugins to be updated its a big undertaking.
  6. Mark

    SEO Plugin

    Hello, you should be able to set the keywords and description from that settings page, once set that notice should not be displayed again.
  7. Mark

    Redirect 404 Errors

    hello, I think these 2 lines are conflicting: RewriteRule ^(.*)$ %{REQUEST_URI}/ [R=301,L] RewriteRule ^(.*)$ / [R=301,L] Can you try removing the first one and see how that works?
  8. Mark

    blockchain Api integration

    I see the request but have no reply for you, it's a single user requesting an obscure payment gateway integration. I am not willing to create this plugin myself, there are no other users who seem interested in it either.
  9. Mark

    inserting video

    Hello, I believe you can do this with custom profile fields. Admin -> Tools -> Manage Join Fields
  10. Mark

    Visiolist mit MYBB Forum

    hello, you would need to create a custom bridge script in PHP to handle that. There is nothing that exists that would do that for you.
  11. Mark

    Where to edit this message

    Hello, for the text message, please login to admin -> Content -> Manage Languages do a search for: Thank you for joining! then you can click edit to change that text.
  12. Mark

    404 Not Found errors on my site (visiolist)

    Make sure you restart Apache I did a quick google search for .htacces wamp not working and found this... http://stackoverflow.com/questions/4391530/how-to-use-htaccess-in-wamp-server
  13. Mark

    404 Not Found errors on my site (visiolist)

    If the htaccess file is in place, but the rules are not being activated you will need to ask your server admin, you may need some server specific line in htaccess to make it work. Tell them your .htaccess is not working, I am not familiar with your environment so I am not sure what it could...
  14. Mark

    Category Question

    Sorry I couldn't give the answer you were hoping for
  15. Mark

    404 Not Found errors on my site (visiolist)

    Sounds like you are missing the .htaccess file, or your server is not configured properly.
  16. Mark

    Category Question

    Nope, categories are set and stored in the MySQL database. You could write a query to export/import all categories or use a tool like phpmyadmin but you need to take care as skin names can be set per category and other interactions need to be considered.
  17. Mark

    Category Question

    short answer is nope, if you have installed 50 lists you need to admin them all individually.
  18. Mark

    MOBILE FRIENDLY.

    Hello, you can install the bootstrap theme from the skins area for mobile ready. I can customize it for you if you like, I have private messaged you a quote.
  19. Mark

    Admin stay logged in longer?

    cool, well report back in a couple days and let me know if it did the trick or if I need to dig deeper
  20. Mark

    Admin stay logged in longer?

    try this: open sources/misc/session.php find: $check_time = time() - 3600; change to: $check_time = time() - 86400; that should give you 24 hour login session, you can adjust the duration as needed. We don't have a hook location for this so it cannot be done via plugin yet, but...
Top