PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

In this section you can share self-made extensions with other users of WYSIWYG Web Builder.
There is a dedicated section for commercial extensions.
maxime
 
 
Posts: 117
Joined: Sat Apr 02, 2011 6:15 pm
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by maxime »

ok i have a found the way to do it. i have to put the extension on a layer so if my layer is 600 px the result (the directory) will be show with a size of 600 px . If i do not put it on a layer the result (directory ) will be full screen, i mean if my screen is 1024 the the resukt will show with a widt of 1024.

I hope is clear and you understand what i mean.



.
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

Not really but if you have solved your issue I am happy :)
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing

Post by Adendum »

Raidenko wrote:I used this extension with ver8.x, but now when I try using it with ver9.x I get an error when I publish the page. I am new at this, and have no clue why it stopped working. Any advice would be greatly appreciated.
I have not yet looked at how my extensions work with WWB9. But by default WWB9 will use the later jQuery file 1.9.1. This extension uses jQuery 1.7.2. So until I can dig deeper all you need to do now is to open your project file, open the page where the extension is used and change the page properties miscellaneous tab and select jQuery 1.7.2, then publish and that should fix the problem.

EDIT 09/07/13 :
The extension doesn't use jQuery. Silly me. It's just PHP and some javascript.
But there is an error when published in WWB9 but not in WWB8. See later post.
Last edited by Adendum on Tue Jul 09, 2013 12:23 pm, edited 1 time in total.
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
User avatar
BaconFries
 
 
Posts: 5325
Joined: Thu Aug 16, 2007 7:32 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by BaconFries »

Hi Paul please read the following regarding this, in WB 9 the user can switch between 1.7.2 and 1.9.1
viewtopic.php?f=10&t=56227
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

BaconFries wrote:Hi Paul please read the following regarding this, in WB 9 the user can switch between 1.7.2 and 1.9.1
viewtopic.php?f=10&t=56227
Errr....isn't that what I posted? :)
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

There is a problem but I can't work out why. The same code works OK in a WWB8 published page but not in WWB9.

The error message seen in WWB9 published pages is:-

Code: Select all

Parse error: syntax error, unexpected '=' in /home/aditerum/public_html/demo/XXX/list1/listing.php on line 288
And line 288 of PHP in question is:-

Code: Select all

<div><a href="<?php echo $fileurl;?>" target="_self" class="<?php echo $class;?>" <?php="" echo="" $thumb2;?="">><img src="<?php echo $includeurl; ?>dlf/<?php echo $icon;?>" alt="<?php echo $files[$i];?>"/><strong><?php echo $filename;?></strong> <em><?php echo round(filesize($includeurl.$leadon.$files[$i])/1024);?> Kb -    <?php echo date ("M d Y h:i:s A", filemtime($includeurl.$leadon.$files[$i]));?></em><?php echo $thumb;?></a></div>
As I understood it, this error message generally means a closing php tag is missing e.g. ?> but [a] why would it work in WWB8 and not in 9 and as far as I can see all closing tags are in place...so maybe it is something else?

We need George!!! :)
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
WWBman
 
 
Posts: 916
Joined: Fri Jan 08, 2010 6:10 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by WWBman »

I am in no way a php expert but it seems that there are 3 extraneous ="" in that line. I don't know what should have been generated by the extension.
If you remove these it works (on my test).
I have no idea why it should be like this on wwb9.
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

WWBman,

Good spot! You are 100% accurate ... but something odd is happening...

The code in Extension Builder reads:-

Code: Select all

<div><a href="<?php echo $fileurl;?>" target="$targetwindow$" class="<?php echo $class;?>"<?php echo $thumb2;?>><img src="<?php echo $includeurl; ?>dlf/<?php echo $icon;?>" alt="<?php echo $files[$i];?>" /><strong><?php echo $filename;?></strong> <em><?php echo round(filesize($includeurl.$leadon.$files[$i])/1024);?> Kb -    <?php echo date ("M d Y h:i:s A", filemtime($includeurl.$leadon.$files[$i]));?></em><?php echo $thumb;?></a></div>
And as you can see those three ="" are not there.

With the page published using WWB8 I get this :-

Code: Select all

<div><a href="<?php echo $fileurl;?>" target="_self" class="<?php echo $class;?>"<?php echo $thumb2;?>><img src="<?php echo $includeurl; ?>dlf/<?php echo $icon;?>" alt="<?php echo $files[$i];?>" /><strong><?php echo $filename;?></strong> <em><?php echo round(filesize($includeurl.$leadon.$files[$i])/1024);?> Kb -    <?php echo date ("M d Y h:i:s A", filemtime($includeurl.$leadon.$files[$i]));?></em><?php echo $thumb;?></a></div>
But if I publish the same page using WWB9 I get this :-

Code: Select all

<div><a href="<?php echo $fileurl;?>" target="_self" class="<?php echo $class;?>" <?php="" echo="" $thumb2;?="">><img src="<?php echo $includeurl; ?>dlf/<?php echo $icon;?>" alt="<?php echo $files[$i];?>"/><strong><?php echo $filename;?></strong> <em><?php echo round(filesize($includeurl.$leadon.$files[$i])/1024);?> Kb -    <?php echo date ("M d Y h:i:s A", filemtime($includeurl.$leadon.$files[$i]));?></em><?php echo $thumb;?></a></div>
Pablo....need your input here I think.
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

The problem of the extraneous ="" is caused by the HTML Beautifier setting. Once turned off the problem is eliminated. Pablo has been notified and he will look at a fix in the next update.

Isn't he awesome!
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
WWBman
 
 
Posts: 916
Joined: Fri Jan 08, 2010 6:10 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by WWBman »

Excellent.
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

jolas wrote:Another question if I may. Is it possible to have a reverse sort as an option for initial display?

Thanks.
Not today, maybe in the future.
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
Vlastimil
 
 
Posts: 59
Joined: Sun Oct 28, 2012 8:19 pm
Location: Czech Republic

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Vlastimil »

Hi, it`s please possible add language translation possiblity for all text used into this extension? When my domestic language is not english, I manualy change always in generated code some words ( in section (3) "Sort by Filename", etc.), date and time formats, etc. Some texts is possible changed (as "File upload Title"), but not all. This same is with date and time format, we use in my country (and in most next European countries) different format - maybe best idea is possiblility to change default parameters for generated php date function.
I can help you with this or when you be agrre and send me part of source code, i can made this for you.
My next thing is possibility hide sections (1) or (2), this has been in most cases duplicated and as last
add possibility to be user can add pictures for users added file types.

Thanks for this extension.
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

Vlastimil wrote:Hi, it`s please possible add language translation possiblity for all text used into this extension? When my domestic language is not english, I manualy change always in generated code some words ( in section (3) "Sort by Filename", etc.), date and time formats, etc. Some texts is possible changed (as "File upload Title"), but not all. This same is with date and time format, we use in my country (and in most next European countries) different format - maybe best idea is possiblility to change default parameters for generated php date function.
I can help you with this or when you be agrre and send me part of source code, i can made this for you.
My next thing is possibility hide sections (1) or (2), this has been in most cases duplicated and as last
add possibility to be user can add pictures for users added file types.

Thanks for this extension.
Updated version available from Extension Manager.

A new section "Configurable Text" allows you to set the heading text for the three columns. I have also provided an option list for the data formats. For simplicity I have provided 8 date configuration options, using the international date standard ISO 8601. ( International standard ISO 8601 (Representation of dates and times) defines unambiguous written all-numeric big-endian formats for dates, such as 1999-12-31 for 31 December 1999, and time, such as 23:59:58 for 23 hours, 59 minutes, and 58 seconds. )
PHP Directory Listing Properties.jpg
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
WWBman
 
 
Posts: 916
Joined: Fri Jan 08, 2010 6:10 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by WWBman »

I went into Extension Manager to update and it didn't show the update for PHP Directory Listing.
I currently have version 3.0.1 installed 08/29/2013.
Should it have shown the update and what version is the updated one?
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

WWBman wrote:I went into Extension Manager to update and it didn't show the update for PHP Directory Listing.
I currently have version 3.0.1 installed 08/29/2013.
Should it have shown the update and what version is the updated one?
I would uninstall that first. Then try again.

You should see this via Ext Mngr
Extension Manager.jpg
And this when it's on the page - v1.0.0.9
PHPDirlist.jpg
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
WWBman
 
 
Posts: 916
Joined: Fri Jan 08, 2010 6:10 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by WWBman »

Ok, thanks, that worked.
Vlastimil
 
 
Posts: 59
Joined: Sun Oct 28, 2012 8:19 pm
Location: Czech Republic

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Vlastimil »

Many thanks, perfect job and support.
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

Vlastimil wrote:Many thanks, perfect job and support.
Post a URL so I can see it in action with these changes. Thanks.
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
WWBman
 
 
Posts: 916
Joined: Fri Jan 08, 2010 6:10 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by WWBman »

Reminder:
If the HTML Beautifier option is enabled then PHP errors are produced.

BTW there's a "t" missing from heading! :-)
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

WWBman wrote:If the HTML Beautifier option is enabled then PHP errors are produced.
Yes Pablo advised me about that but there's nothing much I can do about that. If there is a PHP Guru out there who'd like to dissect the code and make any improvements so HTML Beautifier works with it then I'm happy to work with them.
WWBman wrote:BTW there's a "t" missing from heading! :-)
No idea what you are referring to here :shock: Explain?
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
WWBman
 
 
Posts: 916
Joined: Fri Jan 08, 2010 6:10 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by WWBman »

Extraneous "the" as well. :)
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

Thanks for that....
PHPDirectoryListing.jpg
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
Vlastimil
 
 
Posts: 59
Joined: Sun Oct 28, 2012 8:19 pm
Location: Czech Republic

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Vlastimil »

It`s not possible download new version, WB9 show error - download failed.
I unubstal old version first (as in previous update), but error i got again.
When I tried download this from http://extensions.wysiwygwebbuilder.com, i got error
The file invalidfilename does not exist!
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

Try again. The file size was showing as 40Kb but I just uploaded again and it's showing the correct size now.
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
Vlastimil
 
 
Posts: 59
Joined: Sun Oct 28, 2012 8:19 pm
Location: Czech Republic

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Vlastimil »

Thanks, It work now.

UPDATE - I download now, but when I show, this is the version 10.0.0.8. Again I got information about update and the same error - download failed.
But in download directory I found php directory listing.zip - when I copied this to extension directory manualy, it`s correct version 10.0.10. But in .zip missong "uwbx" version, that was included with previous versions.
I have too problem with update some next extension (Image Swap Menu and Slide Down Box Men) - do you can please look at viewtopic.php?f=29&t=58576 ?
Thanks
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

Vlastimil wrote:Thanks, It work now.

UPDATE - I download now, but when I show, this is the version 10.0.0.8. Again I got information about update and the same error - download failed.
But in download directory I found php directory listing.zip - when I copied this to extension directory manualy, it`s correct version 10.0.10. But in .zip missong "uwbx" version, that was included with previous versions.
I have too problem with update some next extension (Image Swap Menu and Slide Down Box Men) - do you can please look at viewtopic.php?f=29&t=58576 ?
Thanks
Many of my older extensions were built using earlier versions of Extension Builder. As time passes and updates are made I am ONLY using the latest version of Extension Builder. Therefore [a] no uwbx file is required and you are advised to UNINSTALL previous versions before installing the newer versions.

I will look at the other post and respond in that.
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
Vlastimil
 
 
Posts: 59
Joined: Sun Oct 28, 2012 8:19 pm
Location: Czech Republic

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Vlastimil »

Hi, I use in one my project many filenames with version info in name. The filenames has named as: File1_version_1.1.pdf, File1_version_1.2.pdf, ... (it`s not only .pfd files).
When I cannot change the file names and must use version numbering for the files, I don`t show this files in directory, because after the first dot in name (version) is for PHP DL not correct extension.
It`s possible made changes to accept dots in filenames and show this files ?
Thanks.
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

Technically it is OK to use periods in filenames but I wouldn't recommend it. I wouldn't use ANY special characters personally even though there are only 9 on the keyboard you can't use. The main reason NOT to use multiple periods is because anti virus software hates them.

As for changing the extension to cater for multiple periods in filenames I might be able to do that but I am not sure. However I wont even be able to look at that possibility until December. I am away on holiday from Monday 4th and will not be back until the 15th and then I have two large web projects to work on and I may even have a third so my time will be very limited.

So you'll have to live with the extension as it is for now and until at least early December. However, I would recommend you changed your naming convention.
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
Vlastimil
 
 
Posts: 59
Joined: Sun Oct 28, 2012 8:19 pm
Location: Czech Republic

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Vlastimil »

Thanks, it`s not problem to wait for you time and use this version, I have the same opinion about name conventions as You, bud I am not owner of this files ... Have a nice holliday :D
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

Hello,

I am trying to use this extension, please have a look at : http://www.semac.org.au/ -> Past Newsletters (last menu option), how can I place the listing further up the page and how can I avoid it showing the folder name at the top

Hope someone can help

Cheers
Alex
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

alex4orly wrote:Hello,
....how can I place the listing further up the page and how can I avoid it showing the folder name at the top
1. You seem to have worked out how not to show the folder

2. Change the padding from 100px to 10px in the extension and republish. Or manually edit the padding in the published CSS file so you can change the padding for just the top. At the moment the extension uses a CSS statement of padding:XXpx; (where XX is the value you enter into the extension). This causes ALL four borders to use the same padding value. If you change it back to 10px it will fill the page better and will be closer to the top of the page. If you manually edit the css you will need to set padding for all sides e.g. padding:10px 50px 20px 50px; where the sequence is TOP, RIGHT, BOTTOM and then finally LEFT.
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

Hello Adendum,

1) I didn't manage to remove the directory name, it is still there
2) Not sure which padding should I change, I changed the one in File list container styling from 100 to 10, but that didn't fix it.

I prefer to do it through the system rather than manually edit the source code which I am going by trial and error (mostly error), and will be happy if I can fill up the page better

So, looking forward to your instructions
Cheers
User avatar
Adendum
 
 
Posts: 725
Joined: Fri Apr 22, 2011 4:50 pm
Location: London, UK
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Adendum »

Alex,

Open the extension on your page and look for the setting that has a 100px value in it. If memory serves it is in section F.

But when I look at your site again I see you have already changed it,
Aditerum - No longer supporting WWB extensions - refer to CJS.
Aditerum - No longer supporting WWB templates - refer to CJS.


WWB 9.4; Ext Builder 4.2; Windows 10 64bit; Intel Core i7-3770 Processor 3.40Ghz; 16.0Gb RAM
Death to Internet Explorer!
User avatar
Joseph Lee
 
 
Posts: 21
Joined: Tue Sep 13, 2016 5:01 am

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Joseph Lee »

Hello everyone,

Wondering if someone can please help me with this script? Can't figure out how to configure it to see the contents folder!

Thread is here:
viewtopic.php?f=5&t=74529&p=372636#p372577

Thank you.

Joseph
User avatar
BaconFries
 
 
Posts: 5325
Joined: Thu Aug 16, 2007 7:32 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by BaconFries »

@Joseph Lee This extension thread is unrelated to the one by yourself at the URL you provided. Please do not post questions regarding it here as it is Hijacking this thread... Thank you....Note the extension related to this thread is no longer available by the original poster.
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

Hello Addendum,

Is there a way to get the listing up and have it sorted in descending order, with the need to click on the file name header?

Cheers
Paul
 
 
Posts: 88
Joined: Thu Feb 07, 2013 3:13 am

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by Paul »

Where is extension ?
User avatar
BaconFries
 
 
Posts: 5325
Joined: Thu Aug 16, 2007 7:32 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by BaconFries »

@alex4orly you may not be aware but Adendum may not be offering support on this extension as he has passed it on to forum member CJS who has yet to give a rerelease date and to offer support for it.

@Paul The extension is no longer available from the original developer Adendum as no he longer supports it. It has been passed to another user/member named CJS as of yet he has not re-released it under his name and it may be he won't anytime soon.
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

Hi Baconfries,

Thanks for the comment, I have become aware of the situation recently
Will wait to see ... In hope

Cheers
User avatar
BaconFries
 
 
Posts: 5325
Joined: Thu Aug 16, 2007 7:32 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by BaconFries »

Sorry the extension is no longer available to download or supported by the developer anymore.
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

Try to search for an extension called FolderScan

Good luck
alexmasss
 
 
Posts: 105
Joined: Mon Sep 28, 2015 4:25 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alexmasss »

You need to specify only the folder name. When uploaded to the server it will look a bit different in comparison with local preview. The only setting is the folder name.
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

I have one problem with it, when I click on a PDF file (that is the only file type I need in that folder), it comes up with an error instead of open the file to view it, what setting I need to do to change this?
alexmasss
 
 
Posts: 105
Joined: Mon Sep 28, 2015 4:25 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alexmasss »

I don' t encounter any problem with it. It works correct for me. It displays the pdf in the browser on desktop and downloads the pdf on smartphone. It depends on the browser you use. It must be a setting on your device, not the extension settings. However i am curious to know what error do you see.
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

Please click on the following URL to see it

I tried with several different browser and the same result, the files are showing in the list but if you click on any file, ....

http://www.nmaa-rc.org.au/dirlist.php
WWBman
 
 
Posts: 916
Joined: Fri Jan 08, 2010 6:10 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by WWBman »

There is a fullstop after "dirlist.php" in the links.
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

Yes, I noticed this but I didn't insert it there, have no idea where it comes from
User avatar
alex4orly
 
 
Posts: 632
Joined: Mon Jan 20, 2014 8:17 am
Location: Australia
Contact:

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alex4orly »

In the single configuration option there is an input field where I tried the following :

./previousnewsletters - this is the one that comes up with a dot...
/previousnewsletters - this one doesn't show the files in the folder, just a list with a date Jan 1st 1970 for all the files, but no file names
.previousnewsletters - this one doen't show anything

So, where can I go from here
The files are in a subfolder under the root named "previousnewsletters"
alexmasss
 
 
Posts: 105
Joined: Mon Sep 28, 2015 4:25 pm

Re: PHP Directory Listing (FREE) - NEW VERSION/NEW NAME

Post by alexmasss »

What happens if you just insert the folder name without points or slashes?
Post Reply