CybreTron
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite media only work for main siteInteresting yet, when I reinstall WP and set to subfolder mode, I can’t even go to the new site’s dashboard (Object not found] right after I added the site. I tried it twice and the problem was repeated.
wp-content.php added:
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, false );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘www.example.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );
.htaccess:
RewriteEngine On
RewriteBase /
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]Now I reinstall back to subdomain mode, everything stays fine except I can’t use the media, not even view it from the list.
Forum: Networking WordPress
In reply to: Multisite media only work for main sitesorry, should be subdomain, NOT subfolder
Forum: Networking WordPress
In reply to: Multisite media only work for main siteAs I checked the cropped-abc.jpg file, it is located at
/srv/www/htdocs/wp-content/blogs.dir/2/files/2012/02and in the web page, the same files points to
https://abe.example.com/files/2012/02/cropped-abc.jpgand currently the permalink is set to Day and name
/%year%/%monthnum%/%day%/%postname%/don’t know if permalink make any differences, but I have tried them all without success.
Forum: Networking WordPress
In reply to: Multisite media only work for main siteThis is the .htaccess file, and I installed as subfolder:
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]Thanks in advance.
Forum: Networking WordPress
In reply to: Multisite Domain Mapping Tutorial link doesn't workI see, thanks.
Forum: Networking WordPress
In reply to: Setting root on multisite – please helpThanks Ipstenu, I think I have to uninstall it and do it the traditional way as everybody does.
Thanks for pointing me the right way.
Just find out that I cannot find or install any theme or plugins from the admin panel. Strange, I had installed one before. Now I get “An Unexpected HTTP Error occurred during the API request.” when I click [Search]
typo meetsky.com should be mysite.com in define line
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]
respectively
10. Logout and tried to login again
This is where I get “The page isn’t redirecting properly” error.
I cannot see the login page until I commented out the newly copied define lines in wp-config.php.I am lost and don’t know what went wrong.
Please help. Thanks in advance.Forum: Networking WordPress
In reply to: Bitnami stack with MU Domain Mapping pluginThanks a lot for your reply Andrea.
One more question, if I have a registered domain name, say, https://www.abc.com (and it already pointed to my current fixed IP address), can I enter it in replacing /127.0.0.1/org without a fake domain?
Thanks in advance
Forum: Networking WordPress
In reply to: Bitnami stack with MU Domain Mapping pluginThanks again,
It fully make sense, so that means I need to uninstall Bitnami stack and install LAMP and then WordPress in sequence? And when I install WordPress I need to make sure to enter the address is ‘root’ (‘/127.0.0.1/’)? Is that all?
Sorry for asking so much details as I am a total WP newbie.
p.s. I am using opensuse 12.1
Forum: Networking WordPress
In reply to: Bitnami stack with MU Domain Mapping pluginThanks Ipstenu, what you mean install it manually is that I install LAMP and then WordPress? Actually the default installion path that Bitnami suggests is /opt/wordpress-3-3-2. I have tried / but it didn’t allowed and now I install it in /wp. With no luck the same problem appeared.
Copy WP into the root is that means copy my current /wp/ contents to /? That’s include mysql and apache2, or I just need to copy /apps?
Thanks Andrea, I realized I have /wordpress/ as the folder name but not / after I activated multi-site, but I cannot change it even in super admin mode. Is there any setting that I can do to solve this issue? Should I uninstall Bitnami stack and install LAMP then WordPress instead? Let’s say I have two domains https://www.first.com and https://www.second.com, should I type https://www.first.com to replace 127.0.0.1 during installation?
I am new to WordPress and I think that’s the wave of the future, please help, many thanks ??