can someone help me? pls... :'-(

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    can someone help me? pls... :'-(

    i cant install my dolphin 7 boonex, even the social engine to0,, pls help me,, can someone install it for me...? inbox me...

    #2
    Maybe some Error discription would be usefull in order to help you out!

    PHP Code:
    foreach ($_SERVER as $server => $value)
    {
    echo 
    "$server is $value<br />";

    Comment


      #3
      just upload it on your ftp and extract...create dbase...follow the instruction in install.php.. thats it..

      Comment


        #4
        i cant extract it,, i upload it using coreftp and it was in zip,, how could i decompress the script...? i hosted my site at 000webhost,, help me,,,,

        Comment


          #5
          if its a free webhost and the admin panel for that host doesnt have an unzip function then the only other way is to unzip it using php, hopefully that webhost has the archive module compiled for php so this script should work

          Code:
           <?php
               $zip = new ZipArchive;
               $res = $zip->open(’my_zip_file.zip’);
               if ($res === TRUE) {
                   $zip->extractTo(’my_extract_to_dir/’);
                   $zip->close();
                   echo ‘ok’;
               } else {
                   echo ‘failed’;
               }
          ?>
          if they dont have the archive module then you'll either have to upload the files singularly over ftp or look around for a unzip class which doesnt use php's archive module (there is one as i have used it before and it uses the binary packer and unpacker to replicate the archive module functions)

          Comment

          Working...
          X