Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • add_filter( 'new_user_approve_email_admins', 'email_admins' );
    should be
    add_filter( 'new_user_approve_email_admins', 'email_admin' );

    function email_admin( $to ) {
        // add more email addresses
        $to[] = 'email@example.com';
    
        return $to;
    }
    add_filter( 'new_user_approve_email_admins', 'email_admin' );

    add_filter( 'new_user_approve_email_admins', 'email_admins' );
    should be
    add_filter( 'new_user_approve_email_admins', 'email_admin' );

    function email_admin( $to ) {
        // add more email addresses
        $to[] = 'email@example.com';
    
        return $to;
    }
    add_filter( 'new_user_approve_email_admins', 'email_admin' );

    Thread Starter tabzam

    (@tabzam)

    any one please?

    Thread Starter tabzam

    (@tabzam)

    any one??

    Thread Starter tabzam

    (@tabzam)

    Fixed it by changing the .htaccess file.

    changed from this:

    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) C:/wamp/www/050-VRH-Hotel-Wordpress2/$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ C:/wamp/www/050-VRH-Hotel-Wordpress2/$2 [L]

    To this:

    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) /050-VRH-Hotel-Wordpress2/$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ /050-VRH-Hotel-Wordpress2/$2 [L]

    Thank you

    Thread Starter tabzam

    (@tabzam)

    Hey HuddersfieldH,

    I made another site in my multisite setup with the permalink settings as you mentioned in your earlier comments. Now I am getting this error on my newly added sub site:

    ===================

    Forbidden
    
    You don't have permission to access /050-vrh-hotel-wordpress2/C:/wamp/www/050-VRH-Hotel-Wordpress2/wp-admin/ on this server.
    Apache/2.4.9 (Win64) PHP/5.5.12 Server at 192.168.2.6 Port 80

    ====================

    .htaccess file:

    RewriteEngine On
    RewriteBase /050-vrh-hotel-wordpress2/
    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).*) C:/wamp/www/050-VRH-Hotel-Wordpress2/$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ C:/wamp/www/050-VRH-Hotel-Wordpress2/$2 [L]
    RewriteRule . index.php [L]

    is there something wrong with my .htaccess file?

    Thread Starter tabzam

    (@tabzam)

    Thank you very much. worked like a charm.
    Really appreciate your help.

    Thank you once again;

    Thread Starter tabzam

    (@tabzam)

    Thanks for this, I am using a widget in sidebar. and it does not have a “Standard Resolution” option there.

    I can see that there is a “Standard Resolution” in Shortcode Generator under the settings, but i am not using a shortcode, I want to use “Simply Instagram: My Latest Photo” and i can’t see a standard resolution option there.

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)