Login   Register  
PHP Classes
elePHPant
Icontem

Problem with processing

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us

      MP3 Management  >  All threads  >  Problem with processing  >  (Un) Subscribe thread alerts  
Subject:Problem with processing
Summary:Problem with processing
Messages:8
Author:oliver
Date:2010-08-21 23:08:07
Update:2010-08-22 01:11:59
 

  1. Problem with processing   Reply  
Picture of oliver
oliver
2010-08-21 23:08:07
Hey there,

Many thanks for your time and willingness to write a script like that. I have been looking for something like that.
Today I've been trying to get it working and having some issues. I am a bit confused with how to define the folders.
I defined my folders as followed:

var $clips_folder="\\D:/DNB/clips/";
var $log_folder="\\D:/DNB/logs/";
var $original_folder="\\D:/DNB/";

D is my local drive.
As I try to process files through index.php ,it says Please specify a valid folder name. How should I insert the source? Moreover, the Browse button doesn't have action to it.

Can I get some advice?

Thanks in advance!!

  2. Re: Problem with processing   Reply  
Picture of Nadir Latif
Nadir Latif
2010-08-21 23:30:45 - In reply to message 1 from oliver
Hello,

please define the paths to your folders as follows:

var $clips_folder="D:\\DNB\clips\\";
var $log_folder="D:\\DNB\logs\\";
var $original_folder="D:\\DNB";

the browse button uses vbscript so it will only work on internet explorer with certain security options disabled. on other browsers the path will have to be entered manually. Thanks for taking an interest in my script.

Nadir

  3. Re: Problem with processing   Reply  
Picture of oliver
oliver
2010-08-21 23:44:49 - In reply to message 2 from Nadir Latif
If I still enter the \\D:\DNB on index.php to Process MP3 Files
Please enter source folder location : \\D:\DNB

It says Please specify a valid folder name \\D:\DNB

How should I enter it?

  4. Re: Problem with processing   Reply  
Picture of oliver
oliver
2010-08-21 23:46:37 - In reply to message 3 from oliver
It doesnt like any version of my D:\DNB
D:\\DNB
\\D:\\DNB\
...

  5. Re: Problem with processing   Reply  
Picture of Nadir Latif
Nadir Latif
2010-08-22 00:15:16 - In reply to message 4 from oliver
try

var $original_folder="D:\\DNB\\";

  6. Re: Problem with processing   Reply  
Picture of oliver
oliver
2010-08-22 00:28:48 - In reply to message 5 from Nadir Latif
/*Nadir Latif says:
the browse button uses vbscript so it will only work on internet explorer with certain security options disabled. on other browsers the path will have to be entered manually.
*/

What do you type in the box so it accepts it as a folder location?

  7. Re: Problem with processing   Reply  
Picture of oliver
oliver
2010-08-22 00:39:07 - In reply to message 6 from oliver
Okay, I don't, it is not accepting the folder :)
Should there be something alrdy installed to the D:\ hard drive?

var $album_art_folder="D:\\DNB\art\\";
var $clips_folder="D:\\DNB\clips\\";
var $log_folder="D:\\DNB\logs\\";
var $original_folder="D:\\DNB\\";

//For Windows
$this->path_symbol="\\";
$this->clips_folder="D:\\DNB\clips\\";
$this->log_folder="D:\\DNB\logs\\";
$this->original_folder="D:\\DNB\\";

Those seem to be fine, it should do the processing automatically right?

  8. Re: Problem with processing   Reply  
Picture of Nadir Latif
Nadir Latif
2010-08-22 01:11:59 - In reply to message 7 from oliver
well..."D:\\DNB\\" is the location of the folder where the mp3 files (that you specify in the box) will be copied. it should exist already. in the box you have to give the location of the mp3 files you want to import. hope that helps.