Chaz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Mobile pack base problemThis sounds more like WordPress’ version of TinyMCE messing with your code. Try installing Ultimate TinyMCE and see if you can get your code to remain unchanged.
This is listed as “resolved” but how? There are no other posts …
Forum: Fixing WordPress
In reply to: Importing from old WPThat seems to have worked, thanks!
Forum: Fixing WordPress
In reply to: Importing from old WPesmi,
There is an Export button. Here is the copy from the .xml file I downloaded:
<!-- generator="wordpress/2.3.1" created="2013-01-08 16:17"-->
Forum: Networking WordPress
In reply to: Displaying blog posts from "child" sitesFinally, it did start working but it was kinda bizarre as it wouldn’t show posts properly at first, but started working correctly the next day, even with fresh posts.
There’s one more thing I am working on with this. I would like to be able to display the blog name associated with each post. I assumed that the plugin would do that, but all I am getting is the post title. Here’s the code I am using for home.php:
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?> <a href="https://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a><br /> <a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>" target="_blank" rel="bookmark"><?php the_title();?> </a> <?php the_content(''); ?> <?php endwhile; ?><?php endif; ?>
I was originally thinking that
<a href="https://<?php echo $details[ 'domain' ] . $details[ 'path' ] ?>"><?php echo get_blog_option( $details[ 'blog_id' ], 'blogname' ) ?></a>
would automatically display the blog associated with a particular post, but it only displays the main blogname.
Am I going to have to try to edit the plugin to show the blog name as well?
Forum: Networking WordPress
In reply to: Displaying blog posts from "child" sitesOka, I installed and Network Activated the plug in, and followed the instructions to make sure there was a posts loop in my home.php page and I am still not getting posts from the other blogs published on the main page and selected to have the posts show on my main page for the main blog.
I have reading set to display my posts on the front page.
Any ideas about why this isn’t working properly?
Forum: Networking WordPress
In reply to: Displaying blog posts from "child" sitesThanks. I’ll check this out over the weekend.
Forum: Fixing WordPress
In reply to: Media Uploader IssueOkay … this started working and I figured out why it wasn’t working before. The problem was that the particular WP install that was giving me issues was installed on a subdomain and I had put my php5.ini file there. Upon closer inspection, all I had was a regular php.ini file in my domain’s root directory.
Ass soon as I deleted it and replaced wit with the file I had in the subdomain, it worked like a charm.
Thanks guys!
Forum: Fixing WordPress
In reply to: Media Uploader Issuejake – yes – I am running php5 and have the file names php5.ini
Forum: Fixing WordPress
In reply to: Media Uploader IssueJust checked all of that and still no change …
Forum: Fixing WordPress
In reply to: Media Uploader IssueOkay, I tried the .htaccess method and the server said it wasn’t configured properly and wouldn’t even let me log in.
I stole some of your code and plopped into my php5.ini file, but it still won’t change the 8Mb upload size:
register_globals = off expose_php = Off max_input_time = 960 max_execution_time = 7200 variables_order = "EGPCS" extension_dir = ./ upload_tmp_dir = /tmp precision = 12 SMTP = relay-hosting.secureserver.net url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset=" upload_max_filesize = 300M rg_emulation = off allow_url_fopen = on memory_limit = 500M post_max_size = 400M file_uploads = On [Zend] zend_extension=/usr/local/zo/ZendExtensionManager.so zend_extension=/usr/local/zo/4_3/ZendOptimizer.so
And I used the tip you gave me about how to check and see if the settings are being changed and it works; settings are begin changed.
I can’t believe that, with all the CMS platforms there are out there that upload videos, that WP can’t get this part of it right.
Forum: Fixing WordPress
In reply to: Media Uploader Issue*LOL* Just checkin’
And, yes, I do believe that GoDaddy allows me to change max_upload_filesize via php.ini.
I’ll try out your .htaccess solution and get back.
Forum: Fixing WordPress
In reply to: Media Uploader IssueVodoo … are those times in minutes or seconds?
Forum: Fixing WordPress
In reply to: WP Gurus Needed! It's NOT a validation problem either!You might want to reduce the size of your overall page width and display only smaller thumbnails and use Fancy Zoom to allow users to see larger images, or consider having such large images open in a separate page from a thumbnail.
Forum: Fixing WordPress
In reply to: Remove/block part of the dashboardWorks perfectly!!!
Thanks muchly!