ravenmujitsuno
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Theme and other stuff doesn't load with MU/Subdomain/PleskOk.. I have managed to get my thinking cap on…
I was thinking what is the difference between wp-content/themes and wp-content/plugins.
both had the same filemod and the same username and group.
I checked the psacln group who is member and it was the system user which was created in plesk (in my case ws_1)
then I thought, maybe the subdomain is trying to use wrong credentials to access these files. So I went into plesk and created a new subdomain whith the same website place “httpdocs/” (and now the access to this domain will be accessed with the user ws_1).
And know everything (at least the errors above) is working like charm.
Question now is, how can I create new website with subdomain in wordpress without getting plesk involved?
Forum: Plugins
In reply to: [Album Gallery for Flickr] Pics are not loadingIt looks like I solved it. After checking every file (had no access to my logfiles 🙁 ) I commented “//” 2 lines out of the /fashionbuzz-pro/functions.php file:
function fashionbuzz_scripts() {
wp_enqueue_style( ‘fashionbuzz-gfonts-opensans’, ‘//fonts.googleapis.com/css?family=Open+Sans:400,600,700’ );
wp_enqueue_style( ‘fashionbuzz-gfonts-roboto’, ‘//fonts.googleapis.com/css?family=Roboto:400,100,300,500,700’ );
wp_enqueue_style( ‘fashionbuzz-gfonts-roboto-condence’, ‘//fonts.googleapis.com/css?family=Roboto Condensed:400,100,300,500,700’ );
wp_enqueue_style( ‘fashionbuzz-gfonts-lobster’, ‘//fonts.googleapis.com/css?family=Lobster’ );
wp_enqueue_style( ‘fashionbuzz-gfonts-opensanscondensed’, ‘//fonts.googleapis.com/css?family=Open+Sans+Condensed:300’ );
wp_enqueue_style( ‘fashionbuzz-gfonts-lato’, ‘//fonts.googleapis.com/css?family=Lato:400,900,400italic,700,300italic,300,700italic’ );wp_enqueue_style( ‘fashionbuzz-basic-style’, get_stylesheet_uri() );
wp_enqueue_style( ‘fashionbuzz-editor-style’, get_template_directory_uri().’/editor-style.css’ );
wp_enqueue_style( ‘fashionbuzz-base-style’, get_template_directory_uri().’/css/style_base.css’ );
wp_enqueue_style( ‘fashionbuzz-font-awesome-style’, get_template_directory_uri().’/css/font-awesome.min.css’ );
wp_enqueue_style( ‘fashionbuzz-bootstrap-style’, get_template_directory_uri().’/css/bootstrap.min.css’ );
wp_enqueue_style( ‘fashionbuzz-pretty-style’, get_template_directory_uri().’/css/prettyPhoto.css’ );
wp_enqueue_style( ‘fashionbuzz-supersized-style’, get_template_directory_uri().’/css/supersized.css’ );
wp_enqueue_style( ‘fashionbuzz-shutter-style’, get_template_directory_uri().’/css/supersized.shutter.css’ );
wp_enqueue_script( ‘fashionbuzz-bootstrap-script’, get_template_directory_uri().’/js/bootstrap.min.js’ );
wp_enqueue_script( ‘fashionbuzz-photogallery-script’, get_template_directory_uri().’/js/jquery.prettyPhoto.js’ );
wp_enqueue_script( ‘fashionbuzz-photofilter-script’, get_template_directory_uri().’/js/filter-gallery.js’ );
wp_enqueue_script( ‘fashionbuzz-custom-script’, get_template_directory_uri().’/js/custom.js’ );
wp_enqueue_script( ‘fashionbuzz-easing-script’, get_template_directory_uri().’/js/jquery.easing.min.js’ );
// if(is_home() || is_front_page()) {
wp_enqueue_script( ‘fashionbuzz-superfish’, get_template_directory_uri() . ‘/js/superfish.js’, array(‘jquery’) );
wp_enqueue_script( ‘fashionbuzz-supersized-slider’, get_template_directory_uri() . ‘/js/supersized.3.2.7.min.js’, array(‘jquery’) );
wp_enqueue_script( ‘fashionbuzz-supersized-shutter’, get_template_directory_uri() . ‘/js/supersized.shutter.js’, array(‘jquery’) );
// }
if ( is_singular() && comments_open() && get_option( ‘thread_comments’ ) ) {
wp_enqueue_script( ‘comment-reply’ );
}
}For some reason it did load at the index/home but not on another page