mikachewie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: An unexpected error occurred.Hi !
I have the same problem and I followed step by step the solution of argelsences but I don’t understand what I have to do in the last step
Save :wq
Can anyone explain me what it stands for?
Thank youThat is the command to save & quit in vi.
Forum: Plugins
In reply to: Plugin: JWPlayer not working on iOS devices?Ah, sorry. I forgot to post the solution here; I created a blog post on the issue and how to fix it. It essentially stems from the fact of how Multi-Site WordPress handles byte range support and needed to use an apache module to deal with this shortcoming.
Issue + Fix: https://www.technowut.com/2012/05/14/how-to-stream-videos-to-ios-devices-with-multisite-wordpress/
Forum: Fixing WordPress
In reply to: Multiesite Byte Handling?Finally have the solution;
After 6 days of pure sadness, this ended up being the fix: https://maisonbisson.com/blog/post/14489/install-mod-x-sendfile-apache-wordpress/
Here’s how to get it working on CentOS 5 with the packaged Apache httpd:
Nils Maier wrote the module for Apache httpd. Download the source and take some time to review the docs there. Compile and install the module on the command line: /usr/sbin/apxs -cia mod_xsendfile.c If you don’t have apxs, you probably need to install the httpd-devel package.
Get that with this command:
yum install httpd-devel
Once compiled and installed, you’ll need to enable it in your httpd.conf or .htaccess (I enabled it by putting a file in my conf.d directory). These are the directives you’ll need to set: *(Note, I put this in my /etc/httpd/conf.d/wordpress.conf file instead of the httpd.conf.)
XSendFile on
XSendFileAllowAbove onNow restart Apache httpd
/sbin/service httpd restart
Finally, you’ll need to enable the support in your wp-config.php: define(‘WPMU_SENDFILE’, true);
Forum: Plugins
In reply to: Plugin: JWPlayer not working on iOS devices?I am noticing that if I use a video that is hosted locally (aka uploaded via the WordPress player) that it doesn’t work. However, if it’s something that’s on another site … it works fine.
Any ideas?