vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Replacing space with "_" when UL a file (https://vborg.vbsupport.ru/showthread.php?t=38579)

wooolF[RM] 05-13-2002 01:04 PM

]
Quote:

Originally posted by Sparkz


Try
PHP Code:

$file=str_replace ("'","-",stripslashes ($file)); 

Looks like the ' is already escaped.

U're da man! :bunny: Thanx a lot! working :)

wooolF[RM] 05-13-2002 01:28 PM

]here's my code
Code:

case "download":
echo "
<html>
<head>
<title>File Download</title>
</head>
<body>
<center>
";
$list = "<table width=400 border=0 bordercolor=#5A0202 style=\"border-collapse: collapse\">";
$list .= "<tr><td width=400><center>Click To Download</td></tr>";
$dir = opendir($absolute_path);

function rendersize($size) {

        $type = 'bytes';

        if ($size > '1023') {

                $size = $size/1024;
                $type = 'KB';

        }

        if ($size > '1023') {

                $size = $size/1024;
                $type = 'MB';

        }

        if ($size > '1023') {

                $size = $size/1024;
                $type = 'GB';

        }

        if ($size > '1023') {

                $size = $size/1024;
                $type = 'TB';

        }

        // Fix decimals and stuff
        if ($size < '10') $size = intval($size*100)/100;
        else if ($size < '100') $size = intval($size*10)/10;
        else $size = intval($size);

        // Comment the following line if you want X.XX KB displayed instead of X,XX KB
        $size = str_replace("." , "," , $size);
}

while (false !== ($file = readdir($dir))) {
if (($file != "..") and ($file != ".")) {

$list .= "<tr><td width=400><a href=$dl/$file>$file</a></td></tr>";
}
}

$list .= "</table>";
echo $list;
echo"
</center>
</body>
</html>";

Fatal error: Cannot redeclare rendersize() in /home/wooolf/WWW/updown.php on line 45
where line 45 is
Code:

function rendersize($size) {
Am I completely useless? :disappointed:

Sparkz 05-13-2002 01:59 PM

First of all, move the rendersize-function out of the switch. Then make sure that there is only one copy of it being loaded on execution. Check to see if it might be present in an include-file or something.

wooolF[RM] 05-13-2002 02:16 PM

]removed, checked... dupe from config.php (include) deleted...
no errors. good :)

now trying to find out wich variable to insert :)

wooolF[RM] 05-13-2002 03:07 PM

]got it to work at last :) used
Code:

$size = rendersize (filesize ($file));
Thanx all who helped me out :) Nice to see people that still help others :)
Good luck.

Sparkz 05-13-2002 03:10 PM

Well, I did tell you a few posts up to use that syntax ;)

wooolF[RM] 05-13-2002 03:44 PM

]yep, thanx again :)

u can see live demo here : removed

still working on it thought :)

link will be removed in 30 min


All times are GMT. The time now is 05:03 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.03262 seconds
  • Memory Usage 1,735KB
  • 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
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)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