chisss
Forum Replies Created
-
Forum: Plugins
In reply to: [Memphis Documents Library] Unable to Batch UploadThey are not being saved as anything but .zip file format. I just tried using the windows one and I still get the same error message.
Forum: Plugins
In reply to: [Memphis Documents Library] Unable to Batch UploadAny news on this? I have multisites and one of them has a TON of documents that I would love to not have to upload one at the time ??
Thanks!
Forum: Plugins
In reply to: [Memphis Documents Library] Date formatNevermind, Found the code.
If you open the mdocs-file-info-small.php in my case since I am using the “small” theme of Memphis docs, you will find a line that says:
$last_modified = gmdate(‘d-m-y H:i’,$the_mdoc[‘modified’]+MDOCS_TIME_OFFSET);It’s the 9th line of code or so.
If you chante that to
$last_modified = gmdate(‘m-d-y h:ia‘,$the_mdoc[‘modified’]+MDOCS_TIME_OFFSET);
it will change the format to Month, Day and Year and ALSO made the change to not display military time and ALSO to add am/pm at the end.My guess is this will be overwritten if an update installs but hopefully the next update will include the option to make this a change from the settings page.
Forum: Plugins
In reply to: [WP Video Posts] How to get ffmpeg to work on internal serverPerfect! It is now detected! Thank you so much!
Forum: Plugins
In reply to: [WP Video Posts] How to get ffmpeg to work on internal serverSo i scratched the whole thing with IIS and started again with WAMP. I went into the phpmyadmin and went into the wp_options table but I do not see anything with wpvp_
I am having the same issue where it finds FFMPEG but when you refresh it says not found.
Edit: nevermind. There’s multiple wp option tables because i am using multisites. I fond the table I needed. wpvp_ffmpet_exists is set to 1
Forum: Plugins
In reply to: [Memphis Documents Library] Unable to Batch UploadHi. I’m having the same exact issue.
Found the issue!
Find the httpd.conf file (usually you will find it in a folder called conf, config or something along those lines)Inside the httpd.conf file uncomment the line LoadModule rewrite_module modules/mod_rewrite.so (remove the pound ‘#’ sign from in front of the line)
Then restart Apache and it worked!
Hi, any luck with this? I am also using WAMP and having the same exact issue. I set everything (AllowOverride and Options) in the httpd.conf file to All but still fails.
Forum: Plugins
In reply to: [WP Video Posts] How to get ffmpeg to work on internal serverHi Alex,
Where is that file normally located? I can’t find wp_options, I find options and wpvp_options.
Thanks
Forum: Plugins
In reply to: [WP Video Posts] How to get ffmpeg to work on internal serverHmm… nevermind… it finds it, then when you go back to settings/WP Video Posts, it says not found. Then you re-check and says Found but every time you go back it goes back to Not Found…
Any ideas?
Forum: Plugins
In reply to: [WP Video Posts] How to get ffmpeg to work on internal serverHi! so I got it to detect now! ??
I’ll be as specific as possible to help other users:
First, I installed ffmpeg shared version which contains the DLL files, not the static version which only has the .exe files.
I installed it on c:\ffmpeg
I created the environmental variables to PATH to point the bin folder to the c:\ffmpeg\bin folder.I then went into my PHP folder which in my case was c:\Program Files (x86)\PHP\v5.4\ and opened the php.ini file
I went into the part where it talks about the extensions directories and what to include. The section looks like this:
;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;; UNIX: “/path1:/path2”
;include_path = “.:/php/includes”
;
; Windows: “\path1;\path2”
;include_path = “.;c:\php\includes”
include_path = “.;c:\ffmpeg\bin”;
; PHP’s default setting for include_path is “.;/path/to/php/pear”
; https://php.net/include-pathNotice the part in bold I added that to that section and restarted IIS.
After that, I Re-Checked and now it shows FFMEPG is found. I gotta test to see if this works now as far as encoding/decoding and see if this worked.