andrewk714
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Multisite links don't workOne of the other guys helping with coding, took a look at the .htaccess file and found out that this was causing errors:
# Change PHP memory limit, time limit, # max post size, and max upload file size php_value memory_limit 256M php_value max_execution_time 300 php_value upload_max_filesize 32M php_value post_max_size 32MHe said
Normally, these aren’t troublesome commands. It merely allows PHP scripts to use more memory (up to 256MB), take longer to execute, etc. However, on the new server, apparently these values are locked, and we can’t change them without errors
The site is working again……still slow, but that is the server.
Thank You for you help.
Forum: Networking WordPress
In reply to: Multisite links don't workYes, I know for a fact that the pages are there.
here is the link to the site: TrueFoodSolutions.com
Forum: Networking WordPress
In reply to: Multisite links don't workYep
Forum: Networking WordPress
In reply to: Multisite links don't workBy “ugly” do you mean default? fi so, no not even that works.
Forum: Networking WordPress
In reply to: Multisite links don't workIf I get rid of the .htaccess, links don’t work, no matter what permalinks setting I use.
Forum: Networking WordPress
In reply to: Multisite links don't work# BEGIN WordPress <IfModule mod_rewrite.c> 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] </IfModule> # END WordPress # Change PHP memory limit, time limit, # max post size, and max upload file size php_value memory_limit 256M php_value max_execution_time 300 php_value upload_max_filesize 32M php_value post_max_size 32MForum: Networking WordPress
In reply to: Multisite links don't workYes, there is a .htaccess file.
is this what you mean?:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]Forum: Networking WordPress
In reply to: wp-admin, Page Not Found.(sub-directory multisite)Thank You! It worked!
Forum: Networking WordPress
In reply to: wp-admin, Page Not Found.(sub-directory multisite)This is 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]
</IfModule># END WordPress
# Change PHP memory limit, time limit,
# max post size, and max upload file size
php_value memory_limit 256M
php_value max_execution_time 300
php_value upload_max_filesize 32M
php_value post_max_size 32M