Bulk Mp3 Tag Editor Not Working With Updated Cpanel

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

    Bulk Mp3 Tag Editor Not Working With Updated Cpanel

    When i was having a kloxo panel i can edit bulk mp3 tags in mp3s present in one folder. but now i have moved towards cpanel and this script is not editing mp3 tags. it replying as folder does not found....even though folder and path is correct ,,,, so please suggest me or edit this script and reply me plz..
    Attached Files

    #2
    Its more than like either folder permissions or full path is required

    Comment


      #3
      Can you show us an example of whats going on ?
      wapZan Mobile site builder - Yours is here



      http://wapzan.com?ref=2wap

      Comment


      • something else
        something else commented
        Editing a comment
        It looks like is_dir() is failing:
        PHP Code:
        if(!is_dir($dir))
        print &
        quot;Folder Does not Exist<br>&quot;; 

        Edit: unable too post quotes in coding-talk
        Last edited by something else; 12.08.16, 00:15.

      #4
      @something else @andre3

      even though folder is present it showing folder not found. It was working with kloxo but now i have moved to cpanel and then it stooped working. so plz will you tell me solution for this. Its not a permissions and path issue i have checked for that.

      Comment


      • something else
        something else commented
        Editing a comment
        Try commenting out the whole isdir() section.(Its not really needed)..... If the script doesn't work you know its a permission problem.
        If it does work without it - Then you can either run the script without the isdir() section or alternatively you can use 1 of the work around's on: http://php.net/manual/en/function.is-dir.php

      #5
      Originally posted by zong11 View Post
      @something else @andre3

      even though folder is present it showing folder not found. It was working with kloxo but now i have moved to cpanel and then it stooped working. so plz will you tell me solution for this. Its not a permissions and path issue i have checked for that.
      I could check it out for you but I will need access via FTP. Let me know if that's not a problem.
      wapZan Mobile site builder - Yours is here



      http://wapzan.com?ref=2wap

      Comment


        #6
        andre i have provided full script for your information here is link [ http://coding-talk.com/filedata/fetch?id=153517 ] . you can check on any server so please check and revert. my webmaster says its issue related with php version.

        Comment


          #7
          Oh ok, are they saying that they need to upgrade the PHP version or ?
          wapZan Mobile site builder - Yours is here



          http://wapzan.com?ref=2wap

          Comment


            #8
            Yes he saying need to upgrade php version. So is there any way to solve this issue?

            Comment


              #9
              Originally posted by zong11 View Post
              Yes he saying need to upgrade php version. So is there any way to solve this issue?
              PHP Code:
              function Another_is_dir ($file)
              {
                    return ((
              fileperms("$file") & 0x4000) == 0x4000);
              }

              if(!
              Another_is_dir($dir))
              print 
              "Folder Does not Exist<br>"

              Comment

              Working...
              X