Hi,
We have a lot of upload directories and they are seemingly random in their listing under "upload to directory"
Where/what do I change to make this listing alphabetical?
Thanks
Rick
Hi,
We have a lot of upload directories and they are seemingly random in their listing under "upload to directory"
Where/what do I change to make this listing alphabetical?
Thanks
Rick
What version Zen Cart are you using?
I could of sworn I just alpha sorted all of those in v1.3.5 ...![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
We are in the process of redesigning the site using the newest version so we have not upgraded and are on version 1.2.6
Thanks
Rick
Here is an example in the collect_info.php for sorting the images directory:
PHP Code:$dir = @dir(DIR_FS_CATALOG_IMAGES);
$dir_info[] = array('id' => '', 'text' => "Main Directory");
while ($file = $dir->read()) {
if (is_dir(DIR_FS_CATALOG_IMAGES . $file) && strtoupper($file) != 'CVS' && $file != "." && $file != "..") {
$dir_info[] = array('id' => $file . '/', 'text' => $file);
}
}
sort($dir_info);
What is added is the line:
A search in the Developer's Tool Kit bottom input box on:PHP Code:sort($dir_info);
$dir_info
For the Admin should find all of these ... and you can add the:
Or ... wait until you are upgraded to v1.3.5 ...PHP Code:sort($dir_info);
![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!