fka
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Vantage] Few issuesThank you Greg,
#2 above works.
As far as #1 above, I have used the following to customize the menu bar:#menu-item-115, #menu-item-115 { text-indent: -9999px; width: 175px; height: 93px; padding-right: 140px; } #menu-item-115 a, #menu-item-115 a { background: url(http://example.com/wp-content/uploads/sites/2/sites/2/logo.png) top center no-repeat !important; height: 93px; } #menu-item-115 a:hover, #menu-item-115 a:hover { background: url(http://example.com/wp-content/uploads/sites/2/sites/2/logo.png) top center no-repeat !important; }For number 3: I meant no spaces between attributes.
The source reads like (changed domain name and title):
<hgroup class=”full-container”>
<img src=”http://example.com/wp-content/uploads/sites/2/sites/2/logo.png”width=”175″height=”93″data-retina-image=”http://example.com/wp-content/uploads/sites/2/sites/2/logo.png” />#4- not really important for me because of the site structure I’ll be using.
Forum: Plugins
In reply to: [Networks for WordPress] upgrade from WP ver. 3.6.1Woks. Thanks gmmedia.
Forum: Plugins
In reply to: [Networks for WordPress] upgrade from WP ver. 3.6.1Does this go wp-config.php?
Forum: Plugins
In reply to: [Networks for WordPress] [Plugin: Networks for WordPress] Subdomains additionHi David,
I changed back the subdomain_install from false to true below the comments that begin with:
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/so below this comment, I have the following lines:
define('WP_DEBUG', false); define('WP_ALLOW_MULTISITE', true ); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', true ); $base = '/';Forum: Plugins
In reply to: [Networks for WordPress] [Plugin: Networks for WordPress] Subdomains additionThanks David. You are right.
I looked into it and someone I had working on a theme made changes to wp-config among other things. I changed things back and it is working fine.
I am making the status of this thread resolved.Forum: Plugins
In reply to: [Networks for WordPress] [Plugin: Networks for WordPress] Subdomains additionI guess the only way to do it is to create a new network for the subdomain if you want to be reachable in the format:
http://subdomain.example.comSolved the last problem. There is a space beneath the #uploaded files line, once removed in .htaccess the error stopped. I got a white screen and the problem came from file permissions. This article recommends setting wp-config.php permissions to 600 resulting in php error because it can’t be opened from a call from wp-load.php and once the permissions changed 660 it started working.
The front page of the sites are reachable too.
Thanks for all the assistance. There is a wealth of information in the mutisite forum thanks to Ipstenu and Andrea.Thanks Ipstenu.
OK, so after spending some time with this, I decide to reinstall. Removed DB and created new one (different name) and no plugins or themes added. Apache handles the directory redirects in httpd.confBeginning the install went fine and I made sure I can look at different pages in dashboard, then created network, copied lines provided in .htaccess and wp-config.php (I use notepad++) and when I went to logon again I got internal server error page. Apache’s error logs say: RewriteRule: bad argument line ‘^([_0-9a-zA-Z-]+/)?files/(.+)’
So, after looking at some threads, the only thing I could safely add is the word blog as recommended here
Here’s what .htaccess file contain:
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+)
wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]