Jump to content

Loldongs

Members
  • Posts

    34
  • Joined

  • Last visited

    Never

Everything posted by Loldongs

  1. put this in .htaccess RewriteEngine on RewriteRule ^schools/(.*)/ schools.php?sname=$1&%{QUERY_STRING} [PT] That should rewrite it like /schools/ps28/
  2. Hey guys, Ive made a PHPBB auto poster using PHP and cURL basically im trying to post some NFO files that come with scene releases and im having a major issue with encoding it to post and still display correctly basically i ran http analyzer on firefox and when i post a NFO on there it converts the & symbol to %26 Do you know what kind of encoding this is Thanks
  3. I have got it working some what <style type="text/css"> body { font-family: Arial; } #percentbox { width: 300px; height: 20px; border: 1px solid #936; } #progress { text-align: center; font-family: Arial; background: #0F6; width: 100%; height: 100%; } </style> <script type="text/javascript"> var total = 26906; function updatePerc(p,up) { document.getElementById('files').innerHTML = up+' / '+total; document.getElementById('progress').style.width = p+'%'; document.getElementById('progress').innerHTML = p+'%'; } </script> <div id="percentbox"> <div id="progress"> 0% </div> <span id="files">0 / 26906</span> files copied </div> <?php if(!($ssh = ssh2_connect('127.0.0.1', 22))){ die("Connection Error"); } if(!ssh2_auth_password($ssh, 'root', '***')) { die("Username and Password wrong"); } $stream = ssh2_exec($ssh, 'cp -Rfv /home/vgame/skel/css /home/vgame/skel/test'); stream_set_blocking( $stream, true ); $data = ""; $nf = 26906; $i = 0; $q = false; while( $buf = fread($stream,4096) ){ $lines = explode("\n",$buf); $i = $i + count($lines); # need this so it flushes echo '<p style="display: none;">'.$buf.'</p>'; $pe = round($i/26906*100,2); echo '<script type="text/javascript">updatePerc("'. $pe .'",'. $i .');</script>'; flush(); } fclose($stream); ?> Just incase someone wants it
  4. Hey guys, In some webapplications when you are installing say a voice/gameserver it has a realtime/live percentage bar how would i go about making one of these <?php shell_exec("cp -Rf skel/css/* /home/dean/port/*"); ?> How can i get the percentage that the current copy has done are there any premade classes or library's for this Thanks
  5. function generate_Thumbnail($file) { $file = 'dirname/'$file; header('Content-type: image/jpeg'); list($width, $height) = getimagesize($file); $modwidth = 120; $modheight = 90; $tn= imagecreatetruecolor($modwidth, $modheight); $extension = strtolower(substr($file, strrpos($file, ".") + 1)); switch ($extension) { case 'jpg': $source = imagecreatefromjpeg($file); break; case 'jpeg': $source = imagecreatefromjpeg($file); break; case 'png': $source = imagecreatefrompng($file); break; case 'gif': $source = imagecreatefromgif($file); break; default: die("Image is of unsupported type."); } #$source = imagecreatefromjpeg($file); imagecopyresized($tn, $source, 0, 0, 0, 0, $modwidth, $modheight, $width, $height); imagejpeg($tn); } You can use that to generate the thumbnail to insert it into that database, you will need to write the file to a tmp file somewhere then use file_get_contents/fopen to read the file into a variable then insert it into the database
  6. I would say from a shorter clip
  7. use fpdf to generate a pdf its simple to use
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.