Forum Replies Created

Viewing 15 replies - 1 through 15 (of 23 total)
  • same prob here. downgraded….all good.

    Thread Starter drexnefex

    (@drexnefex)

    changed the contents of my wp_capabilities to
    a:1:{s:13:"administrator";b:1;}
    still can’t preview drafts.

    Thread Starter drexnefex

    (@drexnefex)

    Nope. That didn’t do it either.

    any idea if there’s some standard info that i(administrator) should have in ‘wp_capabilities’ in the wp_usermeta table?

    Thread Starter drexnefex

    (@drexnefex)

    contents:

    # Use PHP5 Single php.ini as default
    AddHandler application/x-httpd-php5s .php
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    
    <Files 403.shtml>
    order allow,deny
    allow from all
    </Files>
    
    # compress the files
    AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/x-javascript
    # removes some bugs
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    Header append Vary User-Agent

    Thread Starter drexnefex

    (@drexnefex)

    thanks esmi – i’ve seen that you’ve responded to similar questions in the forum.

    yes, i’ve tried all of the/your suggestions prior to posting this question.

    i do have an .htaccess file in my root.

    or actually i meant this plugin: Shadowbox JS

    Forum: Plugins
    In reply to: Ads on Plugins

    shouldn’t really be any limits.

    there’s a few plugins out there that allow you to integrate ad’s from various ad services…

    or you can just add a text widget and paste whatever ad code in. just need to make sure that the ad dimensions work with whatever widget dimensions you’re working with.

    i bet WP-Slimbox2 would do what you’re looking for…

    Thread Starter drexnefex

    (@drexnefex)

    I had the webserver people enable AllowOverride and FollowSymLinks.

    They did it for only the WP root dir. Im still having the same problem (Page not found).

    Any ideas?

    Thread Starter drexnefex

    (@drexnefex)

    i know i have mod_rewrite set to on. doesn’t look like allowOverride is on??

    here’s my modules:
    mod_dav, mod_auth_mysql, mod_php4, mod_rewrite, mod_proxy, mod_ssl, mod_so, mod_setenvif, mod_auth, mod_access, mod_alias, mod_userdir, mod_actions, mod_imap, mod_asis, mod_cgi, mod_dir, mod_autoindex, mod_include, mod_status, mod_negotiation, mod_mime, mod_log_config, mod_env, http_core

    Thread Starter drexnefex

    (@drexnefex)

    so when the “day” in UTC time turns over (whatever time that is in PST) is when the “day” flips in the WP.com Stats plugin.

    so i’d either have to set my blog UTC time to something way off from where i am located or hack the plugin.

    im basically SOL.

    you might try deleting the plugin folder, then re-downloading it??

    clear all the settings…

    for version 1.32, here’s code for a Sidebar1 Only Template and a Sidebar2 Only Template:

    <?php
    /*
    Template Name: Sidebar 1 Template
    */
    ?>
    
    <?php
    	global $dirs;
    
    	get_header();
    
    	$tag_posttitle_single = get_option('mandigo_tag_posttitle_single');
    ?>
    	<td id="content" class="narrowcolumn">
    
    	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    		<div class="post" id="post-<?php the_ID(); ?>">
    		<?php if (!get_option('mandigo_no_animations')): ?>
    			<span class="switch-post">
    				<a href="javascript:toggleSidebars();" class="switch-sidebars"><img src="<?php echo $dirs['www']['icons']; ?>bullet_sidebars_hide.png" alt="" class="png" /></a><a href="javascript:togglePost(<?php the_ID(); ?>);" id="switch-post-<?php the_ID(); ?>"><img src="<?php echo $dirs['www']['icons']; ?>bullet_toggle_minus.png" alt="" class="png" /></a>
    			</span>
    		<?php endif; ?>
    		<<?php echo $tag_posttitle_single; ?> class="posttitle"><?php the_title(); ?></<?php echo $tag_posttitle_single; ?>>
    			<div class="entry">
    				<?php the_content('<p class="serif">'. __('...Read the rest of this page','mandigo') .' &raquo;
    '); ?>
    
    				<?php link_pages('<strong>'. __('Pages','mandigo') .':</strong> ', '
    ', 'number'); ?>
    
    			<div class="clear"></div>
    			</div>
    		</div>
    	<?php edit_post_link('<img src="'. $dirs['www']['scheme'] .'images/edit.gif" alt="" /> '. __('Edit this page','mandigo'), '', '
    '); ?>
    	<?php endwhile; endif; ?>
    
    	</td>
    
    <?php
    
    		if (get_option('mandigo_1024') && get_option('mandigo_3columns')) include (TEMPLATEPATH . '/sidebar2.php');
    
    	get_footer(); 
    
    ?>

    and Sidebar2

    <?php
    /*
    Template Name: Sidebar 2 Template
    */
    ?>
    
    <?php
    	global $dirs;
    
    	get_header();
    
    ?>
    	<td id="content" class="narrowcolumn">
    
    	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    		<div class="post" id="post-<?php the_ID(); ?>">
    		<?php if (!get_option('mandigo_no_animations')): ?>
    			<span class="switch-post">
    				<a href="javascript:toggleSidebars();" class="switch-sidebars"><img src="<?php echo $dirs['www']['icons']; ?>bullet_sidebars_hide.png" alt="" class="png" /></a><a href="javascript:togglePost(<?php the_ID(); ?>);" id="switch-post-<?php the_ID(); ?>"><img src="<?php echo $dirs['www']['icons']; ?>bullet_toggle_minus.png" alt="" class="png" /></a>
    			</span>
    		<?php endif; ?>
    
    			<div class="entry">
    				<?php the_content('<p class="serif">'. __('...Read the rest of this page','mandigo') .' &raquo;
    '); ?>
    
    				<?php link_pages('<strong>'. __('Pages','mandigo') .':</strong> ', '
    ', 'number'); ?>
    
    			<div class="clear"></div>
    			</div>
    		</div>
    	<?php edit_post_link('<img src="'. $dirs['www']['scheme'] .'images/edit.gif" alt="" /> '. __('Edit this page','mandigo'), '', '
    '); ?>
    	<?php endwhile; endif; ?>
    
    	</td>
    
    <?php
    	if (!get_option('mandigo_nosidebars')) {
    		include (TEMPLATEPATH . '/sidebar.php');
    }
    
    	get_footer();
    ?>

    ive had similar problems with having two different versions of Mandigo in the theme dir.

    if you haven’t already, i’d completely delete the theme folder, disable all your plugins, and re upload.

    Here is code for a No Sidebar Page Template. this works for v1.32

    <?php
    /*
    Template Name: No Sidebar
    */
    ?>
    
    <?php
    	global $dirs;
    
    	get_header();
    
    	$tag_posttitle_single = get_option('mandigo_tag_posttitle_single');
    ?>
    	<td id="content" class="narrowcolumn">
    
    	<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    		<div class="post" id="post-<?php the_ID(); ?>">
    		<?php if (!get_option('mandigo_no_animations')): ?>
    			<span class="switch-post">
    				<a href="javascript:toggleSidebars();" class="switch-sidebars"><img src="<?php echo $dirs['www']['icons']; ?>bullet_sidebars_hide.png" alt="" class="png" /></a><a href="javascript:togglePost(<?php the_ID(); ?>);" id="switch-post-<?php the_ID(); ?>"><img src="<?php echo $dirs['www']['icons']; ?>bullet_toggle_minus.png" alt="" class="png" /></a>
    			</span>
    		<?php endif; ?>
    		<<?php echo $tag_posttitle_single; ?> class="posttitle"><?php the_title(); ?></<?php echo $tag_posttitle_single; ?>>
    			<div class="entry">
    				<?php the_content('<p class="serif">'. __('...Read the rest of this page','mandigo') .' &raquo;</p>'); ?>
    
    				<?php link_pages('<p><strong>'. __('Pages','mandigo') .':</strong> ', '</p>', 'number'); ?>
    
    			<div class="clear"></div>
    			</div>
    		</div>
    	<?php edit_post_link('<img src="'. $dirs['www']['scheme'] .'images/edit.gif" alt="" /> '. __('Edit this page','mandigo'), '<p>', '</p>'); ?>
    	<?php endwhile; endif; ?>
    
    	<?php comments_template(); ?>
    
    	</td>
Viewing 15 replies - 1 through 15 (of 23 total)