Potsky
Forum Replies Created
-
Hi Jonas,
sorry for the answer 2 months later, I’ve not seen your reply !
On Windows, 2 solutions :
– you have to create a “app_data” directory in the s2member_files
– or you can add in the wp-config.php wordpress file the path of your directory with this line :define( 'PSK_S2MSFB_S2MEMBER_FILES_FOLDER' , 'W:/Servers/UniServer-00/www/wp-new/wp-content/plugins/s2member-files/');Forum: Plugins
In reply to: [s2member Secure File Browser] ergonomic suggestionThank you for these suggestions.
I agree with you about the fact that the root directory if fully reloaded. It is really annoying.Ok, it is a Windows server (I am really sorry π )
1. There are some recommendations from s2member according to the s2member-files location on Windows. Have you put files in W:/Servers/UniServer-00/www/wp-new/wp-content/plugins/s2member-files/app-data/ ?
2. Do you have some interesting apache server error logs ?
3. If it does not fix the problem, 2 solutions :
3.1 – I have to install a VM with Windows and UniServer to try to reproduce the problem (I have a VM today with WAMP and it works)
3.2 – You forward a HTTP port from your public IP to your local dev server to let me investigate.Ok…
I have installed a fresh 3.5.2 with the s2member Pro and the s2member_secure_file_browser plugins and it works. There is no javascript error or jquery load error.
1. I suppose that you have installed the latest available version of the s2member_secure_file_browser plugin, isn’t it ? (version 0.4.10)
2. Do you have some javascript error when browsing files in the dashboard menu ?
Forum: Plugins
In reply to: [s2member Secure File Browser] Fatal error with latest wordpress update.no news…
First, when activate, a notice (yellow default) says unexpected characters sent in headers …
Propably not enclosing ?> php tags in the end of your files. OR ?
I don’t thing so. Not enclosing php tags is deliberately done to avoid “header already sent” messages… I will try to reproduce this bug.
However, the big problem is BOROWSER -> Managing files
A spinner shows up, and then the page dies blank. My script debub reports jQuery not defined, and then som undefined variables as a part of the first error issue.
In the sourcecode, the jQuery ui is loaded.
Really strange, this bug was fixed some month ago but it seems there is a problem again !
Could you contact me at https://www.potsky.com/contact/ to give me dashboard access please ?
Forum: Plugins
In reply to: [s2member Secure File Browser] Fatal error with latest wordpress update.Hi Deyson!
I cannot reproduce this bug… I’ve just upgraded all wp installation to 3.5.2 and the plugin works. I deactivated and reactivated the plugin each time and it works too.
Can you send me the guilty url and dashboard credentials via http://www.potsky.com/contact/ please ?
Forum: Plugins
In reply to: [s2member Secure File Browser] add an entry in database ?You are right ! File scanning is done hourly, on activation and when a file/directory is renamed/deleted in the admin panel. You can manually do it in the admin panel too.
Forum: Plugins
In reply to: [s2member Secure File Browser] Excessive Database UsageHello,
good news for point 3 so I will force MyISAM engine in the next release but it is still strange…
No problem for point 4, we do not really need indexes on this table.
Thank you for your patience !
potsky
Forum: Plugins
In reply to: [s2member Secure File Browser] Excessive Database UsageReally strange… The only difference I can see is the mysql engine version. You run 5.5.25 when I run the community version 5.5.17.
1. Can you DROP the table
wp_psk_s2msfb_downloadsplease ?2. And then create it manually :
CREATE TABLE wp_psk_s2msfb_downloads (
id INT(11) NOT NULL AUTO_INCREMENT,
created TIMESTAMP NOT NULL,
userid BIGINT(20) NOT NULL,
useremail VARCHAR(100) NOT NULL,
ip VARCHAR(100) NOT NULL,
filepath VARCHAR(4000) NOT NULL,
filemd5 VARCHAR(32) NOT NULL,
notified TIMESTAMP,
PRIMARY KEY (id)
) DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;3. If it does not change anything, could try again with this CREATE statement please ? (just change the mysql engine type)
CREATE TABLE wp_psk_s2msfb_downloads (
id INT(11) NOT NULL AUTO_INCREMENT,
created TIMESTAMP NOT NULL,
userid BIGINT(20) NOT NULL,
useremail VARCHAR(100) NOT NULL,
ip VARCHAR(100) NOT NULL,
filepath VARCHAR(4000) NOT NULL,
filemd5 VARCHAR(32) NOT NULL,
notified TIMESTAMP,
PRIMARY KEY (id)
) ENGINE=MyISAM DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;4. Finally, can you try this next to drop and re-create :
ALTER TABLE
wp_psk_s2msfb_downloadsADD INDEX (created) ;
ALTER TABLEwp_psk_s2msfb_downloadsADD INDEX (userid) ;Forum: Plugins
In reply to: [s2member Secure File Browser] Excessive Database UsageOk, more informations about the overhead here :
It is strange, I have no overhead in any wordpress installation.
Do you have import database ? Does the optimization help ?
Forum: Plugins
In reply to: [s2member Secure File Browser] Excessive Database UsageOuch!
No index : ok it is normal
100 bytes by record seems to be ok too according to fields.I don’t know what os the 702 Mib overhead but it is really huge !!!
You can manually clean this table in the s2member Secure File Browser admin panel > Settings > General. Click on the button [Delete All Records…]. When deleting, the plugin will suggest backuping data in CSV or XML.
Then, in the s2member Secure File Browser admin panel > Settings > General, you can set a retention limit for this table (duration or maximum number of lines).
Tell me it the overhead decreases…
Forum: Plugins
In reply to: [s2member Secure File Browser] What's the config path ?Oups!
I’ll fix this in the readme in the next version.
The path of the s2member-files can be set your wp config file by setting :define( 'PSK_S2MSFB_S2MEMBER_FILES_FOLDER' , '/dir1/dir2/blah/blah' );I have implement this to let Windows users set this as they want because of the specific app_data directory.
Forum: Plugins
In reply to: [s2member Secure File Browser] What's the config path ?Hello,
what is the config.php flie ??
Do you talk about inc/define.php ?
No answer and bug fixed