[wp-testers] Bug Report (WP3.0 Beta1)

HelixGalaxy helixgalaxy at gmail.com
Fri Apr 16 06:31:47 UTC 2010


Hello,

Can only see htaccess file attached and it look ok to me.

>> But I do not seem to have any "Super Admin" features that should come
from
>> enabling the Multi-Site feature. Also, the 'Network' section under
'Tools'
>> is no longer appearing.
I don't have an idea at this point.

Regards,
Martin



2010/4/16 Richard Matthews <richard at nlightonline.com>

> Okay,
>
> I made those changes.
>
> 1) I removed this:
>  define ('WP_ALLOW_MULTISITE', true  ) ;
>
> 2) I edited the .htaccess file so that it contains only the lines suggested
> by WP and nothing else.
>
>
> I am no longer receiving the permission error and have access to my back
> end.
>
> But I do not seem to have any "Super Admin" features that should come from
> enabling the Multi-Site feature. Also, the 'Network' section under 'Tools'
> is no longer appearing.
>
> I have attached my config.php file and htaccess file for review (removed my
> passwords of course)
>
> Richard Matthews
> richard at nlightonline.com
> http://www.monetizemylife.com
>
>
>  On Fri, Apr 16, 2010 at 1:14 AM, HelixGalaxy <helixgalaxy at gmail.com>
> wrote:
>
> > 1. You can remove this :
> > define ('WP_ALLOW_MULTISITE', true  ) ;
> >
> > 2.
> > The code for htaccess you got should *replace* the one that already was
> > there, *not* be added, which you did!
> >
> > Regards,
> > Martin
> >
> >
> >
> > 2010/4/16 Richard Matthews <richard at nlightonline.com>
> >
> > > I don't know if this helps or not... but this is a screen shot of the
> > codes
> > > that WP asked me to add to my config.php and .htaccess files.
> > >
> > >
> > > Richard Matthews
> > > richard at nlightonline.com
> > > http://www.monetizemylife.com
> > >
> > >
> > > On Fri, Apr 16, 2010 at 1:06 AM, Richard Matthews
> > > <richard at nlightonline.com>wrote:
> > >
> > > > Hello,
> > > >
> > > > Here is a portion of my config.php file. I highlighted the parts I
> > edited
> > > > in yellow - I hope that shows up for you. Let me know if I need to
> > > highlight
> > > > my changes another way.
> > > >
> > > >
> > > >  * Authentication Unique Keys.
> > > >  *
> > > >  * Change these to different unique phrases!
> > > >  * You can generate these using the {@link
> > > > https://api.wordpress.org/secret-key/1.1/ WordPress.org secret-key
> > > > service}
> > > >  * You can change these at any point in time to invalidate all
> existing
> > > > cookies. This will force all users to have to log in again.
> > > >  *
> > > >  * @since 2.6.0
> > > >  */
> > > > define('AUTH_KEY',
> ';{Ix}RUc4lU%:MFlb3e`.W^/=^U|M`SwFSce8=,eYZW at 6oC5O3
> > > > [-`4WT{Z%8nclg');
> > > > define('SECURE_AUTH_KEY', '2F<0c.)#v32u:/(Ig)#Z^Ir&p)&r&!lRk8p at eL5
> > $CP>s
> > > > ^9r:YU)F50nPokTXCpX');
> > > > define('LOGGED_IN_KEY',
> > > > '61!`Lc]}~;!-yjP,O/V-Y%D:i<@%VIV3MrL&gx-4~zxS2+]HBuFgj*RZ%DHG](3Z');
> > > > define('NONCE_KEY', 'u -n_(*A]s0QEPA~FqQ*:+b@)27W|Tfux|1<|$y-
> > > > :8k,b;SD++S+&h3~6 u9JlY');
> > > > /**#@-*/
> > > >
> > > > /**
> > > >  * WordPress Database Table prefix.
> > > >  *
> > > >  * You can have multiple installations in one database if you give
> each
> > a
> > > > unique
> > > >  * prefix. Only numbers, letters, and underscores please!
> > > >  */
> > > > $table_prefix  = 'wp_';
> > > >
> > > > /**
> > > >  * WordPress Localized Language, defaults to English.
> > > >  *
> > > >  * Change this to localize WordPress.  A corresponding MO file for
> the
> > > > chosen
> > > >  * language must be installed to wp-content/languages. For example,
> > > install
> > > >  * de.mo to wp-content/languages and set WPLANG to 'de' to enable
> > German
> > > >  * language support.
> > > >  */
> > > > define ('WPLANG', '');
> > > >
> > > > /** WordPress absolute path to the Wordpress directory. */
> > > > if ( !defined('ABSPATH') )
> > > > define('ABSPATH', dirname(__FILE__) . '/');
> > > >
> > > > /** Sets up WordPress vars and included files. */
> > > > require_once(ABSPATH . 'wp-settings.php');
> > > >
> > > > /** Sets up WordPress to allow multi-site. */
> > > > define ('WP_ALLOW_MULTISITE', true  ) ;
> > > > define( 'MULTISITE', true );
> > > > define( 'VHOST', 'yes' );
> > > > $base = '/';
> > > > define( 'DOMAIN_CURRENT_SITE', 'nlightonline.com' );
> > > > define( 'PATH_CURRENT_SITE', '/' );
> > > > define( 'SITE_ID_CURRENT_SITE', 1 );
> > > > define( 'BLOG_ID_CURRENT_SITE', 1 );
> > > >
> > > > /* That's all, stop editing! Happy blogging. */
> > > >
> > > > Here's the Set of Code I added to my htaccess file. Changes
> highlighted
> > > in
> > > > yellow.
> > > >
> > > > RewriteEngine On
> > > > RewriteBase /
> > > >
> > > > #uploaded files
> > > > RewriteRule ^(.*/)?files/$ index.php [L]
> > > > RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
> > > > RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
> > > >
> > > > # add a trailing slash to /wp-admin
> > > > RewriteCond %{REQUEST_URI} ^.*/wp-admin$
> > > > RewriteRule ^(.+)$ $1/ [R=301,L]
> > > >
> > > > RewriteCond %{REQUEST_FILENAME} -f [OR]
> > > > RewriteCond %{REQUEST_FILENAME} -d
> > > > RewriteRule . - [L]
> > > > RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
> > > > RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
> > > > RewriteRule . index.php [L]
> > > >
> > > > <IfModule mod_security.c>
> > > > <Files async-upload.php>
> > > > SecFilterEngine Off
> > > > SecFilterScanPOST Off
> > > > </Files>
> > > > </IfModule>
> > > >
> > > >
> > > > # 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
> > > >
> > > >
> > > >
> > > > I hope I did all of that correctly. I've never used been apart of the
> > > > tester community before. So If i need to be doing something different
> > for
> > > > bug reports or problems... please let me know.
> > > >
> > > > Richard Matthews
> > > > richard at nlightonline.com
> > > > http://www.monetizemylife.com
> > > >
> > > >
> > > > On Fri, Apr 16, 2010 at 12:57 AM, HelixGalaxy <helixgalaxy at gmail.com
> > > >wrote:
> > > >
> > > >> Hello,
> > > >>
> > > >> >> 2) Add Two sets of code to end of config.php file
> > > >>
> > > >> It shouldn't be at the very end .... so it depends of where you put
> > it.
> > > >>
> > > >> Regards,
> > > >> Martin
> > > >>
> > > >> 2010/4/16 Richard Matthews <richard at nlightonline.com>
> > > >>
> > > >> > Running WP 3.0 Beta 1
> > > >> > Theme Thesis 1.7
> > > >> >
> > > >> > Turned on Mutli-Site setting and followed instruction on page.
> > > >> Including:
> > > >> > 1)
> > > >> > Add blog.dir 2) Add Two sets of code to end of config.php file (I
> > can
> > > >> post
> > > >> > if you need) 3) add lines to .htaccess file, replacing existing wp
> > > >> > instructions.
> > > >> >
> > > >> > I did all of these step, then click on the link to return to
> > > dashboard.
> > > >> I
> > > >> > was returned to my login screen for the test site and asked to log
> > in.
> > > I
> > > >> > did
> > > >> > so and was presenting with the following error:
> > > >> >
> > > >> > You do not have sufficient permissions to access this page.
> > > >> > The url is this: http://nlightonline.com/wp-admin
> > > >> >
> > > >> > I'd like to know if I can fix this or if I just need to delete and
> > > >> > re-install.
> > > >> >
> > > >> > Richard Matthews
> > > >> > richard at nlightonline.com
> > > >> > http://www.monetizemylife.com
> > > >> > _______________________________________________
> > > >> > wp-testers mailing list
> > > >> > wp-testers at lists.automattic.com
> > > >> > http://lists.automattic.com/mailman/listinfo/wp-testers
> > > >> >
> > > >> _______________________________________________
> > > >> wp-testers mailing list
> > > >> wp-testers at lists.automattic.com
> > > >> http://lists.automattic.com/mailman/listinfo/wp-testers
> > > >>
> > > >
> > > >
> > >
> > > _______________________________________________
> > > wp-testers mailing list
> > > wp-testers at lists.automattic.com
> > > http://lists.automattic.com/mailman/listinfo/wp-testers
> > >
> > >
> > _______________________________________________
> > wp-testers mailing list
> > wp-testers at lists.automattic.com
> > http://lists.automattic.com/mailman/listinfo/wp-testers
> >
>
> _______________________________________________
> wp-testers mailing list
> wp-testers at lists.automattic.com
> http://lists.automattic.com/mailman/listinfo/wp-testers
>
>


More information about the wp-testers mailing list