vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Links and Files Database (https://vborg.vbsupport.ru/showthread.php?t=60403)

CHIngs 03-19-2005 03:37 PM

Quote:

Originally Posted by AndrewD
I'll put this on the wishlist.
thanks

thanx for considering it for future versions. But I was kinda looking for a instant solution. I just need some starters, like database table should be made and some starters. I know its very similar to how the hits work. I tried it and it was saving time and stuff in the database but it was not disallowing downloads if a user click on the links below 60 seconds. I think partly because the hits system works on PER-FILE basis, I was kinda trying making it work globally, for all files.

AndrewD 03-19-2005 04:09 PM

Quote:

Originally Posted by CHIngs
thanx for considering it for future versions. But I was kinda looking for a instant solution. I just need some starters, like database table should be made and some starters. I know its very similar to how the hits work. I tried it and it was saving time and stuff in the database but it was not disallowing downloads if a user click on the links below 60 seconds. I think partly because the hits system works on PER-FILE basis, I was kinda trying making it work globally, for all files.

What you've seen in the code is to disallow double recording of a hit in the database if the user clicks the same link twice in quick succession - I found that we were recording multiple hits if people got tired or were trigger happy.

If you're looking to prohibit multiple hits, then you have to put some similar code in another place. Go down to the lines that read
PHP Code:

if ($_REQUEST['action'] == "jump" or $_REQUEST['action'] == "stream") {

    
$time TIMENOW;
    unset(
$url); 

and add something like:
PHP Code:

    $jumplink $DB_site->query("
        SELECT * FROM "
.THIS_TABLE."linksdownloads
        WHERE userid='
$userid
        ORDER BY usertime DESC
        LIMIT 1
        "
);
    while (
$jump=$DB_site->fetch_array($jumplink)) {
        if (
$time-$jump['usertime']) < YOUR_LIMIT) {
            eval(
print_standard_error('You will have to wait...',0));
            exit;
        }
        exit;
    } 


Slave 03-22-2005 02:48 PM

Hi Andrew .. :)

I think I've found a bug .. :p

I was in the process of adding a few more links to my site when I noticed something ..

I'd added 2 new links to the 2nd subcat within a main cat and when looking at the front page the subcat I'd added the links to was bold within the Description area .. but so were all the subcats after it in the same cat and I'd not added anything in those subcats. I clicked on the main cat link and the list of subcats were correct on that page with only the 2nd subcat showing bold as it should. I went back to the front page and all the others were still bold ..

Is there a missing close bold tag in the code?

Slave 03-22-2005 02:53 PM

Sussed it ..

In the links_subcatbit template the closing bold tag is < b > instead of < / b >

:)

AndrewD 03-22-2005 04:15 PM

Quote:

Originally Posted by Slave
Sussed it ..

In the links_subcatbit template the closing bold tag is < b > instead of < / b >

:)

Thanks...

havefun 03-22-2005 09:35 PM

thanks slave :)

CHIngs 03-26-2005 12:48 PM

Quote:

Originally Posted by AndrewD
What you've seen in the code is to disallow double recording of a hit in the database if the user clicks the same link twice in quick succession - I found that we were recording multiple hits if people got tired or were trigger happy.

If you're looking to prohibit multiple hits, then you have to put some similar code in another place. Go down to the lines that read
PHP Code:

if ($_REQUEST['action'] == "jump" or $_REQUEST['action'] == "stream") {

    
$time TIMENOW;
    unset(
$url); 

and add something like:
PHP Code:

    $jumplink $DB_site->query("
        SELECT * FROM "
.THIS_TABLE."linksdownloads
        WHERE userid='
$userid
        ORDER BY usertime DESC
        LIMIT 1
        "
);
    while (
$jump=$DB_site->fetch_array($jumplink)) {
        if (
$time-$jump['usertime']) < YOUR_LIMIT) {
            eval(
print_standard_error('You will have to wait...',0));
            exit;
        }
        exit;
    } 


all that code is giving me is a BLANK page. I replaced YOUR_LIMIT with 60 for 60 seconds, that didnt work.

AndrewD 03-28-2005 09:32 AM

** 1.56 beta withdrawn ** We found a bug which hits only some users and produces invisible categories.

Attached, find the first beta for release 1.56. This is a 'tidying up' release, completing (I hope) the phrasing throughout the main and admin scripts. It also adds a few features that have been requested recently:

- (Slave) addlink script accepts optional url=, name=, description= parameters to allow scripted new link creation
- (Chings) optional admin timeout parameter added to prevent multiple hits in quick succession
- (Lizard King) two choices for the linkbit template, selected on the admin page. The new template uses a fieldset layout.

The main changes from 1.55b are in the admin script, giving better insight into category/forum associations and allowing you to download a csv file of hits when cleaning up the database. There are also two options for how category selection is handled within the addlink script (the existing pulldown menus and a fully expanded set of checkboxes).

The choice of template for linkbit and addlink are specified on the admin page.

I am separately uploading partially translated French and German xml phrase files. I'd be grateful if someone would go through these and translate the remaining English phrases (of course for any other languages too).

As always with a beta, bug reports appreciated

Lizard King 03-28-2005 03:48 PM

Upgraded from 1.55 to 1.56 and faced no problem. Everything is working good under 3.0.7 Thanks for the new layout Andrew

Slave 03-29-2005 10:12 AM

Just upgraded ..

I'm getting a mysql error when trying to get to the following link ..

http://www.domain.com/local_links_ad...set=categories (Category Structure)

Database error in vBulletin 3.0.3:

Invalid SQL:
SELECT forumid, forumpermissions
FROM forumpermission
WHERE usergroupid = 1
AND forumid IN()

mysql error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 4

mysql error number: 1064

Date: Tuesday 29th of March 2005 12:07:37 PM
Script: http://www.domain.com/local_links_ad...set=categories
Referer: http://www.domain.com/local_links_ad...set=statistics
Username: Slave


All times are GMT. The time now is 08:15 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02557 seconds
  • Memory Usage 1,765KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete