markhoweiwen
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Looking for a wordpress mentor in SingaporeOh ok I will take it down
Thanks for the infoForum: Networking WordPress
In reply to: Newbie Multisite on localhost XAMPPThis is resolved
Forum: Networking WordPress
In reply to: Newbie Multisite on localhost XAMPPWell I actually was looking online and I came across this link
https://premium.wpmudev.org/blog/setting-up-xampp/Basically they taught you step by step what you had to do to install wordpress locally. I followed all their instructions and then came across the problem of entering the dashboard.
I installed xampp so its in the C:/ then as per the instructions in the link you download wordpress and place it in the htdocs folder. So you are correct that I am running out of a sub directory.
I think the issue came about was because the information given is for people who have a domain/web host. I think it needed to be configured to accept a localhost.
Forum: Networking WordPress
In reply to: Newbie Multisite on localhost XAMPPHi
Thanks for helping so I have a question from what you are telling. Does that mean when people install on to a server/host the system .htaccess file the above is correct. But because I am installing as an offline WordPress to work locally. The above won’t work?
Hence why I had to insert a different line due to this?However once I go online to my host I should make sure I change it back?
Forum: Networking WordPress
In reply to: Newbie Multisite on localhost XAMPPHi,
When I set up my .htaccess, I started with
1. Tools tab
2. Setup network
3. Copied from WordPress (the info they ask you to input)
define(‘WP_DEBUG’, false);
define(‘WP_ALLOW_MULTISITE’, true);
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘localhost’);
define(‘PATH_CURRENT_SITE’, ‘/wp/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);into the wp-config.php
4. went into htaccess and pasted
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [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).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]
# END WordPressFrom there I got the tab that says create new site. So I created it and I got the problem above. Spent the whole day looking for solutions and I cam across that and plug that in and it works.
Forum: Networking WordPress
In reply to: Newbie Multisite on localhost XAMPPFinally found something !!
I used the code from this link and got it working
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]I don’t know what the above did but it solved my Error 403 problem
Forum: Networking WordPress
In reply to: Newbie Multisite on localhost XAMPPHi many thanks for helping me out.
so I tried to do as you suggested. I opened up the .htaccess file and placed a garbage line like Rewrite Something and saved it.
I went back to my localhost file and couldn’t get in. I got a 500 error. Which means my .htaccess file is enabled. I took out the garbage line and I could access my localhost again and open up my first website I made.
By the way just to add, I can access my website (https://localhost/wp/newsite/) however its not properly laid out. All the sample text is stuck of the left screen such as the “hello world text and all the comments”
Its the dashboard that give me the Error 403