Search results

  1. Basti

    Alexa Plugin

    If the new order works, combine it with your other plugins who modify ranking ordering/methods cron is really the last on the list and no real issue if you have working code
  2. Basti

    Alexa Plugin

    Yes it would work for category and stuff, but only if we combine your plugins. I don't know what else you all have as plugins, so it would be best if I can log into ftp for that. And yes, the cron would basicly handle the alexa checks, and you can simply use {$alexa_rank} then in templates (...
  3. Basti

    Alexa Plugin

    That code basically means "When unq_pv_0_monthly is zero, it changes the pv value to the alexa column value and use that for the current member in loop order" Oh right alexa lower is better, I forgot that. But you cant simply make it ascending, cause also pageviews count would be affected by...
  4. Basti

    Alexa Plugin

    That is a bit more complicated. And if a case statement does not work, I think there is nothing you can do there... For once you need to make a new INT field in VL_stats. alexa_rank with a default value of 0 ( zero ) Then you need to actually store your alexa rank. While not optimal, for the...
  5. Basti

    Alexa Plugin

    plugins/YourPluginName/info.php <?php $pluginname = 'My Amazing Plugin'; $author = 'Me'; $email = 'me@mydomain.com'; $url = '#'; $version = '1.0'; $install = 0; ?> plugins/YourPluginName/rankings_compile_stats.php $alexa_url = urlencode(htmlspecialchars_decode($TMPL['url'], ENT_QUOTES))...
  6. Basti

    Manage Inactive

    That is cause you have that feature enabled. Check admin settings -> Member settings So turn that into 0 Then run a MySQL query in phpmyadmin UPDATE VL_sites SET `active` = 1 Ill mark for next version, if inactive after not zero, and updated to zero to run this query automatical
  7. Basti

    Add Ranking Settings

    Are you sure you want to do that? That basicly leaves any new member FAR behind old members. We will not add a new ranking period setting. Once we add overall as method, but that caused all kind of issues with the code. So the easiest method, is to simply overwrite the $order_by tag in...
  8. Basti

    Custom Managing Members in Admin

    I should really test things :rolleyes: updated zip: http://visiolist.com/community/threads/custom-managing-members-in-admin.2216/#post-13856 Note also the plugin files code both changed in that post, update your files also pls, that code also had issues
  9. Basti

    Custom Managing Members in Admin

    Yea the latest sorry ( post #10 ), I updated the other zip just now also just to keep it consistent
  10. Basti

    Custom Managing Members in Admin

    Pls download zip again and let me know, I forgot to modify the query, it only grabbed from sites tables, so order by rank wasn't working
  11. Basti

    Custom Managing Members in Admin

    Yes with the word "category" before your actual category name. Else we cannot difference between a normal search which looks at username, title etc. "category My Category"
  12. Basti

    Custom Managing Members in Admin

    You need again replace manage.php, download and replace attached file Then in your existing plugin file admin_manage_build_page.php // Add new item to sort array $filter_array[] = 'Rank'; // extend the security checks, used in the pagination and query to get members if...
  13. Basti

    Screenshots

    Basti updated Screenshots with a new update entry: Bug fixes Read the rest of this update entry...
  14. Mark

    Screenshots - Bug fixes

    Due an update in VisioList 1.6, members with an ampersand in url would be broken. This update fixes that New template, rankings_layout.html for the rankings. This change will automatical reflect on your list. Its same html as before, just that its an layout now so you can modify it if needed...
  15. Basti

    Migration

    Yep, good. Don't forget the other queries tho, else your banners wont be found
  16. Basti

    Migration

    I would advise to run those query then also, yes. Because else you get warning like "site.com was loaded through a secure connection, but try loading a unsecure resource". Maybe we can integrate those queries somehow into admin when someone switch from http to https and vise versa. But for now...
  17. Basti

    Migration

    Old host 1) Backup all files 2) Backup database On new host 1) Create a new database, upload your backup database 2) Upload your backed files 3) Update settings_sql.php with new database info If your url has changed also 1) On new host update button_config.php and update urls to your new...
  18. Basti

    HELP ME ABOUT - COUNTER VISIT

    imagestring($img, 2, 80, 90, "Some text {$rank_category}", $color1);
  19. Basti

    HELP ME ABOUT - COUNTER VISIT

    I see, then we had a big misunderstanding, I apologize.
  20. Basti

    Custom Managing Members in Admin

    I gave you plugin before, remember? CategoryListCount Make the files in there, or a new plugin, up to you. I showed you how to create a table heading and a table column, right? And you have the code which calculates the rank. You just have to replace/duplicate what I showed you...
Top