Welcome! Log In Create A New Profile

Advanced

WPMU 2.9.2 to Wordpress 3.0 MS

Posted by parkerj 
WPMU 2.9.2 to Wordpress 3.0 MS
July 19, 2010 03:41PM
Good afternoon, all. I was wondering if anyone could help me out with this issue. When I try to upgrade to Wordpress 3.0 multisite, I have an issue. The issue I have is that the dashboard widgets don't load because javascript is not responding around the whole site, so the install becomes unusable and then I have to downgrade back to 2.9.2. Has anyone else ran into this issue or know why I would have this issue? Also, for background info, I don't do the automatic upgrade nor do I use the svn, I upgrade with ftp, I have directory structure of /home/parkerj/public_html with user and group as parkerj:www-data. I look forward to hearing from you. Thank you.

Server Info:
Linux
Ubuntu Lucid
Nginx 0.7.62

Joshua Parker
http://www.7mediaws.org/
Re: WPMU 2.9.2 to Wordpress 3.0 MS
July 21, 2010 06:23AM
Ok, I've gotten as far as I can. Can someone tell me what is wrong with my rewrite rules?

[code]
server {
listen 174.142.142.92:80;
server_name _ 5pt.us *.5pt.us;
access_log /home/parkerj/public_html/5pt.us/log/access.log;
error_log /home/parkerj/public_html/5pt.us/log/error.log;

# Set this to off if you're hosting more than one site
server_name_in_redirect off;

location / {
try_files $uri $uri/ @wordpress;
root /home/parkerj/public_html/5pt.us/public/;
index index.php index.html;

client_max_body_size 10M;
client_body_buffer_size 128K;

#rewrite ^.*/files/(.*) /wp-content/blogs.php?file=$1;
rewrite ^.*/files/(.*)$ /wp-includes/ms-files.php?file=$1 last;
if (!-e $request_filename) {
rewrite ^.+/?(/wp-.*) $1 last;
rewrite ^.+/?(/.*\.php)$ $1 last;
rewrite ^ /index.php last;
#rewrite ^(.+)$ /index.php?q=$1 last;
}
}

location @wordpress {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME /home/parkerj/public_html/5pt.us/public/$fastcgi_script_name;
include /usr/local/nginx/conf/fastcgi_params;
fastcgi_param SCRIPT_NAME /index.php;
}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$
#location ~ wp\-.*\.php|wp\-admin|\.php$
{
try_files $uri @wordpress;
#rewrite ^/.*(/wp-.*/.*.php)$ $1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include /usr/local/nginx/conf/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /home/parkerj/public_html/5pt.us/public/$fastcgi_script_name;
}
}
[/code]

Joshua Parker
http://www.7mediaws.org/
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 255
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready