vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - Links and Downloads Manager (https://vborg.vbsupport.ru/showthread.php?t=119041)

butty 02-15-2007 08:01 PM

tried that mate and your right. but now the drop down boxes on ldm. category, show searc etc dont work. any ideas?





Quote:

Originally Posted by AndrewD (Post 1183447)
Yes, this is the standard VB page initialisation.

The first bit is used by VB to auto-reset your users' times when daylight saving time/summer time begins.

PHP Code:

<if condition="$show['dst_correction']">
<!-- 
auto DST correction code -->
<
form action="profile.php?do=dst" method="post" name="dstform">
    <
input type="hidden" name="s" value="$session[sessionhash]/>
    <
input type="hidden" name="do" value="dst" />
</
form>
<
script type="text/javascript">
<!--
    var 
tzOffset $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
    var 
utcOffset = new Date().getTimezoneOffset() / 60;
    if (
Math.abs(tzOffset utcOffset) == 1)
    {    
// Dst offset is 1 so its changed
        
document.forms.dstform.submit();
    }
//-->
</script>
<!-- / 
auto DST correction code -->

</if> 

The next bit carries out a whole load of vb initialisation, to make sure that your pop-up menus, etc, work properly. I'll bet that the error is coming from here - you might try just removing these lines. Am not sure how this is interacting with vbadvanced/LDM, though.

PHP Code:

<script type="text/javascript">
<!--
    
// Main vBulletin Javascript Initialization
    
vBulletin_init();
//-->
</script



AndrewD 02-16-2007 04:39 AM

Quote:

Originally Posted by zajako (Post 1183456)
I'm not sure if you saw my problem so I'll repost it here.
When trying to access the page via IE I get this error:
http://www.synergames.com/screenshot...itzjummfxj.png

Sorry, I missed this one.

I tried to access your site, as per your screenshot, and everything seems to work ok - see my screenshot. You may have a problem with the cache in your browser - try clearing it (IE: Tools/Internet Options/Delete, or Mozilla: Tools/Clear Private Data)

civil78 02-16-2007 08:17 AM

I was searching the extras and I see that.

If i put this on the URL of my browser.

Code:

http://www.yoursite.com/local_links.php?action=addlink&url=URLINK&name=NAMETEXT&description=DESCRIPTIONTEXT
It will fill all the fields. I am wondering if you have a guide or a list of all the supported URL actions somewhere.

And finaly if I can create and submit a new link from URL (not from button in the form)

Thank's

AndrewD 02-16-2007 08:55 AM

To keep everyone up to date.

I plan to upload the release candidate of version 2.2.7 sometime this weekend. In the meantime, thanks to everyone who has tested out the beta. As far as I can tell, the main significant bug is that the Jukebox media player does not work correctly with Firefox for filetypes handled via Windows Media Player. (This worked fine with 2.2.6, and I know why the problem exists.)

The main new element in the 2.2.7 RC will be a "suggest other entries like this one" feature.

If there are any further bug reports, please can you let me know as soon as possible, so that we can finalise 2.2.7.

PitchouneN64ngc 02-16-2007 08:59 AM

Quote:

Originally Posted by AndrewD (Post 1183742)
I plan to upload the release candidate of version 2.2.7 sometime this weekend.

I'm ready to translate it in french when it will be finalized ;)

Mupetz 02-16-2007 09:05 AM

Hello,

First of all, thank You for this hack.

Second, i have a rewrite problem.
I made a text file with the rewrite commands :
Code:

RewriteEngine on
RewriteRule local_links/links/(.+)/(.+) local_links.php?catid=$1&linkid=$2 [R]
RewriteRule local_links/links/(.+) local_links.php?catid=$1 [R]
RewriteRule local_links/jump/(.+)/(.+) local_links.php?action=jump&id=$1&catid=$2 [R]
RewriteRule local_links/jump/(.+) local_links.php?action=jump&id=$1 [R]

Added /htlinks.txt path to mod_rewrite administration field.
seo_friendly to YES.
All this getting "No input file specified." when surfing the local_links categories.
What i'm doing wrong ? I have read and re-read the wiki.

I have also tried to add the rewrite commands to the .htaccess file , got the same error.

I'm using vbSEO

Thank you very much

Dr.NoTime 02-16-2007 11:16 AM

Thanks for the work and the support. Top notch all the way!

butty 02-16-2007 08:26 PM

Quote:

Originally Posted by butty (Post 1183484)
tried that mate and your right. but now the drop down boxes on ldm. category, show searc etc dont work. any ideas?

i sussed it out i think andrew. what i did was copied all of my navbar template and put that in the adv_portal template in place of $navbar

what i did then was remove all the code apart from the bit below (out of the adv_portal template) and it now seems to work. no errors and i can click the menus fine. lol. from a quick glance does it look like this fix will do good for me or can you forsee errors along my path lol

you can see it working here

http://www.oldskoolanthemz.com/forum...s.php?catid=10

note the navbar is gone but im errorless and all menus seem to be working fine


PHP Code:




<!-- PAGENAV POPUP -->

    <
div class="vbmenu_popup" id="pagenav_menu" style="display:none">
        <
table cellpadding="4" cellspacing="1" border="0">
        <
tr>
            <
td class="thead" nowrap="nowrap">$vbphrase[go_to_page]</td>
        </
tr>
        <
tr>
            <
td class="vbmenu_option" title="nohilite">
            <
form action="$vboptions[forumhome].php" method="get" onsubmit="return this.gotopage()" id="pagenav_form">
                <
input type="text" class="bginput" id="pagenav_itxt" style="font-size:11px" size="4" />
                <
input type="button" class="button" id="pagenav_ibtn" value="$vbphrase[go]/>
            </
form>
            </
td>
        </
tr>
        </
table>
    </
div>

<!-- / 
PAGENAV POPUP --> 


AndrewD 02-17-2007 02:55 PM

I've uploaded the release candidate of 2.2.7 in the first post in this thread.

Reports please.

I'd very much appeciate it if the translators can now start work - there are some new phrases that need attention. Thanks.

AndrewD 02-17-2007 02:58 PM

Quote:

Originally Posted by Mupetz (Post 1183746)
Hello,

First of all, thank You for this hack.

Second, i have a rewrite problem.
I made a text file with the rewrite commands :
Code:

RewriteEngine on
RewriteRule local_links/links/(.+)/(.+) local_links.php?catid=$1&linkid=$2 [R]
RewriteRule local_links/links/(.+) local_links.php?catid=$1 [R]
RewriteRule local_links/jump/(.+)/(.+) local_links.php?action=jump&id=$1&catid=$2 [R]
RewriteRule local_links/jump/(.+) local_links.php?action=jump&id=$1 [R]

Added /htlinks.txt path to mod_rewrite administration field.
seo_friendly to YES.
All this getting "No input file specified." when surfing the local_links categories.
What i'm doing wrong ? I have read and re-read the wiki.

I have also tried to add the rewrite commands to the .htaccess file , got the same error.

I'm using vbSEO

Thank you very much


I don't use VBSEO, but I imagine that this is interfering with the LDM mod_rewrites? See a few posts up - message by Bold refers to this situation.


All times are GMT. The time now is 10:36 AM.

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.03544 seconds
  • Memory Usage 1,783KB
  • 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
  • (3)bbcode_code_printable
  • (3)bbcode_php_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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