JohnRazmus
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Broken Images on a MU Network Sub-domainsImages fixed – thank you all for the help attempts. Turns out some custom code I had at the end of wp-config.php was causing php to break when called to show an image – specifically the get_currentuserinfo() function.
Thanks again!
Forum: Networking WordPress
In reply to: Broken Images on a MU Network Sub-domainsIt’s installed in /home/username/public_html.
I tried adding the <Directory “/”> code to the httpd.conf as well as <Directory “/home/username/public_html”>, however both methods now make the images show up as 404 instead of blank.
Thanks again, and please let me know the next thing to try : D
Forum: Networking WordPress
In reply to: Broken Images on a MU Network Sub-domainsBlog number 3 – let me know if you need any other info; thanks for helping : D
Using the absolute filepath for the image, https://cat-genie.org/wp-content/blogs.dir/3/files/2011/02/cat-genie-e1298048555224.jpg shows up.
Forum: Networking WordPress
In reply to: Broken Images on a MU Network Sub-domainsThank you for the support thus far, however there is more evidence that it’s not that single image.
Here is a video of the problem when uploading media: https://johnrazmus.com/jing/2011-02-27_1056.mp4
When following Andrea’s advice in a previous thread about broken permalinks and images, I followed the recommendation of adding this to the httpd.conf:
<Directory “/”>
Options FollowSymLinks
AllowOverride All
</Directory>When I did that, the images showed up as 404 instead of blank. Any other clues?
Forum: Networking WordPress
In reply to: Permalinks broken and images not showing with Network installI have the same issue – my networked subdomains are working, but the images are broken.
I really, really need a solution to this, so please do help! I run my network on a VPS, CentOS, latest version of everything, full access to all files.
Here is a link to an image not working: https://cat-genie.org/files/2011/02/cat-genie-e1298048555224.jpg
Here is the contents of my .htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . index.php [L]
# END WordPressPlease send any recommendations and I’ll try em out & respond asap.