Download address of the complete package (including all patches) of the problem collection posts online forum)

Source: Internet
Author: User

FAQ collection post: full package (including all patches) Dvbbs7.1.0_Ac.exe

Dynamic Network Forum complete package (including all patches) Dvbbs7.1.0_Ac.exe
Dynamic Network Forum [05.23] updates patch q2006020..exe (including important updates)

  1. Why can't I play a multimedia file after I use an update of 5.1?
    Go to the Forum background-Basic settings-system settings
    The extension filtering settings of the script include filtering "object" or "EMBED". This filtering can now be removed because the new mechanism has already filtered it, change the value here to 0.
  2. Why is there a post with no content after I submit a hyperlink in my quick reply?
    Answer: Because you are using the Update file No. 30, please download the update package again to eliminate this error. Note: if the problem persists after the update, please delete your temporary IE File and try again. Because the JS script file is cached by your IE, you may still be using the old JS script.
  3. Now the post shows "[comply with XHML specifications (UBB interpretation file version: 2006-5-23)]". What does it mean ??
    Answer: Edit Dv_ubbcode.asp on the left and right of Line 10. You can see: Does Rem show the Administrator whether the post conforms to the XHTML format?
    Const showisxhtml = 1

    Set it to 0, and change Const showisxhtml = 1 to Const showisxhtml = 0.

  4. After the update, the background user data permissions cannot be opened.
    Error prompt:
    The file '../dv_dpo/cls_dvapi.asp' cannot be found '.
    This is because a new integrated module is added and files are missing.
    DownloadDynamic Network Forum complete package (all patches included)Upload all the files and directories related to dv_dpo to the space.
  5. Reg. asp cannot display advanced options!
    Local error of the original template. Please downloadLatest template DatabaseRe-import in overwrite mode.
  6. Filtering of object "or" EMBED ": Can't play back '?
    You need to update user group permissions in batches. For the setting method, see dispbbs. asp? BoardID = 8 & ID = 1190703 & page = 1
  7. Why does the "Review Mechanism" become invalid after the patch is updated?
    Now you need to enable the review for the layout. If the review is disabled, the review is naturally invalid. Enabling Method: In the advanced settings of the background layout, SetPost Review SystemOpen.
  8. Why is the signature image huge?
    If you use a third-party template, you will have the opportunity to see this problem. If you updated it before November 11, you can modify inc/main. js find function imgresize (o ){
    Var parentNode = o. parentNode. parentNode
    If (parentNode ){
    If (o. offsetWidth> = parentNode. offsetWidth) o. style. width = '20140901 ';
    } Else {
    Var parentNode = o. parentNode
    If (parentNode ){
    If (o. offsetWidth> = parentNode. offsetWidth) o. style. width = '20140901 ';
    }
    }
    }

    Change to function imgresize (o ){
    'If (o. width> 500 ){
    O. style. width = '500px ';
    }
    If (o. height> 800 ){
    O. style. height = '800px ';
    }
    }

    If you are updating the main. js file after 05.11, you can set the image display mode. The following describes how to set the file to open inc \ Main. js and find var resizemode =1

    Change

    Var resizemode =2
  9. I also updated dvbbs7.1.0SP1 frequently on the Internet. The last update date is one day in a certain month. How can I upgrade it to the latest version?
    It is not difficult to downloadComplete Package(This package contains all patches. If you are a dv7.0 or dv7.1 user and have never been upgraded to dvbbs7.1.0SP1, downloadUpgrade procedure)
    After decompression, open the folder, view the details, and sort by the modified date.
    Convert (A month of a year--2006.05.10).
    Remember to update the Template
    DownloadOfficial style of mobile network
    You can use the overwrite method in the background to import the style.
  10. The image in the previous signature cannot be displayed in the new window after you click it with the mouse. How can this problem be solved?
    In the inc/dv_ubbcode.asp file, find s = re. replace (s, "Javascript: Window. open (this. src); ""/> ")

    You can comment out a single quotation mark at the beginning of the row or delete the row.

  11. How can I enable the specified user group to use the <div style = "......"> </div> special effect when posting?
    In the inc/dv_ubbcode.asp file, find Const can_Post_Style = "1, 2, 3"

    Add the specified user group ID.
    If you want to use this special effect for all user groups, you only need to find If instr ("," & can_Post_Style & "," & PostUserGroup & ",") = 0 Then

    Changed to If CLng (PostUserGroup)> 100 Then

  12. After the patch is updated, why is the signature image too high to show only one of the above parts?
    This restriction is specially implemented. Otherwise, if someone uses a 50*8000 "ruanghuo" to sign the Forum, the scene is quite spectacular (this sentence should be better for Song Dandan)
    Hehe, the joke is over. If you want to modify this restriction, go to the background template page_dispbbs template.html (0) and find function fixheight (objname ){
    Var obj = document. getElementById (objname );
    If (obj ){
    If (obj. offsetHeight> 300 ){
    Obj. style. overflow = 'ddd ';
    Obj. style. height = '300px ';
    }
    }
    }

    Change the number 300.

  13. Why does the new version not support CSS Filter effects?
    Why is the expected effect of a filter when I send a text clip?

    However, the actual effect becomes

    The code in the preceding example is as follows: <TABLE style = "TABLE-LAYOUT: fixed; WORD-BREAK: break-all "height =" 85% "width =" 95% "align = center border = 0>
    <TBODY>
    <TR>
    <TD style = "FONT-SIZE: 9pt; LINE-HEIGHT: 12pt" vAlign = top width = * height = "100%"> <FONT style = "FONT-SIZE: 100pt; FILTER: shadow (color = # 6BA25E, strength = 20, Direction = 45); WIDTH: 100%; COLOR: # ff0000; LINE-HEIGHT: 150% "> <B> mobile network pioneer </B> </FONT> </TD> </TR> </TBODY> </TABLE>

    The red part is the effect of the filter.
    Solution: this is because we have adopted a new web page specification, and the new specification does not support filter effects of IE.
    To maintain this effect, you must remove the original document type declaration,
    Edit dispbbs. asp and find Response. Write Dvbbs. mainhtml (18)

    (About 20 rows) remove or block.
    Then, let's look at your post to support the filter effect.

  14. Since SP1, you have no longer been able to scroll the mouse to zoom in or out the image. How can I continue to use this function?
    In the inc \ dv_ubbcode.asp file, find whether Rem enables the scroll wheel to change the image size. If not, block the image.
    Rem Node. attributes. setNamedItem (xml. createNode (2, "onmousewheel", ""). text = "return bbimg (this );"

    Change

    Rem whether to enable the scroll wheel to change the image size. If not, block the image.
    Node. attributes. setNamedItem (xml. createNode (2, "onmousewheel", ""). text = "return bbimg (this );"

    In this way, you can continue to zoom in and out the image with the mouse

  15. Supplemental Declaration: Set the image display mode in the Main. js file.
    The Forum has always adopted the mode of auto-scaling down large images. Otherwise, large images cannot be displayed. Some friends often mention that after the image is scaled down, the blank area on the right of the image is too large, it seems to have an impact on vision.
    05.11 you can set the image display mode in the updated main. js file. The following describes how to set
    Open the inc \ Main. js file and find var resizemode =1

    Change the number here. When it is set to 1, the image automatically adapts to the window. This avoids the blank area on the right of the image (the default value is 1)
    When set to 2, the image will be displayed in the old mode, the image is reduced to a fixed size, the width is about 500 pixels.

  16. The data you submitted is invalid (the XHTML format must be submitted). Why?
    Reply: Have you updated the four JS files under the images \ post directory? Update if no
    If this still exists after the update, clear the temporary IE file in the IE attribute (it is estimated that IE uses the old file)
    If not, check whether the copied content is correct. If so, clear the code and try again.

  17. Why does the cleanup tool not work after the update?
    Open the images/post directory, find the DhtmlEdit. js file, and find the following code:

    Function Dvbbs_CleanCode_old ()
    {
    Var editor = IframeID;
    Editor. focus ();
    If (Dvbbs_bIsIE5 ){
    // 0 bject based cleaning
    Var body = editor.doc ument. body;
    For (var index = 0; index <body. all. length; index ++ ){
    Tag = body. all [index];
    // * If (tag. Attribute ["className"]. indexOf ("mso")>-1)
    Tag. removeAttribute ("className", "", 0 );
    Tag. removeAttribute ("style", "", 0 );
    }
    // Regex based cleaning
    Var html = editor.doc ument. body. innerHTML;
    Html = html. replace (/\ <p>/gi, "[$ p]");
    Html = html. replace (/\ <\/p>/gi, "[$ \/p]");
    Html = html. replace (/\ <br>/gi, "[$ br]");
    Html = html. replace (// <[^>] *>/g, ""); // filter all other "<...>" tags
    Html = html. replace (/\ [\ $ p \]/gi, "<p> ");
    Html = html. replace (/\ [\ $ \/p \]/gi, "<\/p> ");
    Html = html. replace (/\ [\ $ br \]/gi, "<br> ");
    Editor.doc ument. body. innerHTML = html;
    } Else
    {
    Var html = IframeID.doc ument. body. ownerDocument. createRange ();
    Html.selectNodeContents(IframeID.doc ument. body );
    IframeID.doc ument. body. innerHTML = html. toString ();
    }
    }

    Replace the content displayed in the anti-whitelist with the following red code (both codes can be found in this file)

    Function Dvbbs_CleanCode (){
    Var editor = IframeID;
    Editor. focus ();
    Checkword = 1;
    Editor.doc ument. body. innerHTML = OSWEBXHTML.GetXHTML(editor.doc ument. body );
    Checkword = 0;
    }

    Replace the black reversed code with the images/post/reply. js file in the same way as above.
    Or directly download the modified file and upload it to the images/post directory of your forum. Replace the corresponding file.
    Click to browse the file (the file modification is synchronized with the official 2006.05.23 update)

How to modify user group permissions in batches

In the latest dvbbs7.1 user group, the "whether to display online multimedia playback tags directly" permission is added.
This permission is disabled by default because it may cause some risks.
If this permission is not enabled, you cannot play multimedia files online.
Many of my friends are not familiar with the modification operation of this permission. Now we will demonstrate how to modify user group permissions in batches by using batch modification of "show online multimedia playback tags directly.
First, go to the background. Click"
Forum user group (level) Management"Go to the following interface

Select the Administrator group in the System user group management to edit the corresponding line to enter the following interface.


Point [
Other Permissions] Button, you can see such a page.

Set "whether to display online multimedia playback tags directly" to yes, and hook the check box on the left.

Go back to the top of the page and click Select User Group to see the following page.

Press CTRL to select multiple user groups with the mouse

We recommend that you select all items except for new users.
Click OK in the lower-left corner of the graph to go to the bottom of the page.

Click Submit to save the settings.

Now, the user group you selected can directly play online multimedia files.

One thing to note is that each layout has a set of whether to enable the multimedia tag. If it is disabled, although the user group has the permission to use the multimedia tag, the layout is not open, in this case, the video cannot be played directly.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.