I attached the 2 script
I have a script that retrieves a file from my database with an option of providing a path
Now the appendPath Will "tack on" the contents of appendPath to the front of the file name.
For example, :if appendPath is set to:
$appendPath = 'http://www/path/to/';
... and you've assigned "filename" to a field that only uses the "base file name" of "myTrack.mp3" the URL Wimpy will use to play the file will be:
http://www/path/to/myTrack.mp3.
Now what I want to do is create appendimagePath where I can provide a url to tack on to the front of the image name.
Originally at the bottom of "wimpy.sql.ed.configs" I see
$appendPath = '';
$appendField = '';
$forceTrailingSlash = FALSE;
On file "wimpy.sql.ed.configs" at the bottom I will see
$appendPath = 'http://example.com/files/';
$appendimagePath = 'http://example.com/image/';
$appendField = '';
$forceTrailingSlash = FALSE;
What would I do to "wimpy.sql.ed" to make that work?