agileArt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Running in a showstopper – establish connection warning.Hello Black road, thank you for the suggestion but a quick search for the “defined(‘WP_INSTALLING’)” in the include.php page did not bring anything up.
this seems however to be firewall related. So maybe i’ll have to wait until i can access a non vpn.
thx
DForum: Fixing WordPress
In reply to: Running in a showstopper – establish connection warning.Pioneer before posting i googled for the answer. overall i was as specific as the other posts and i put in what i thought was necessary.
I don’t always know what information might be needed.Forum: Fixing WordPress
In reply to: Running in a showstopper – establish connection warning.have not done anything at all w/the exception of installing.
this was a new project i was starting.
DForum: Fixing WordPress
In reply to: error when upgrading from 3.9 to 3.9.1Since it was still open, figured it’d be ok
but sure, will start a new thread.
DForum: Fixing WordPress
In reply to: error when upgrading from 3.9 to 3.9.1Am going to add that i have allowed this in the firewall settings. and tried to re-install a couple of times over.
Forum: Fixing WordPress
In reply to: error when upgrading from 3.9 to 3.9.1using wp4.1 and am getting:
Warning: An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums. (WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.) in C:\xampp\htdocs\testFolder\wp-includes\update.php on line 295
Warning: An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums. (WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.) in C:\xampp\htdocs\testFolder\wp-includes\update.php on line 457
And this is on a local sandbox.
and when i tried to go to appearance > themes…i getFatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\cdi\wp-includes\class-http.php on line 1511
Any solutions yet?
thx
DForum: Fixing WordPress
In reply to: unable to link javascript with script tag.<script src=”<?php echo get_stylesheet_directory_uri(); ?>/myJs.js”></script>
thx Pullo at sitepoint forumsForum: Plugins
In reply to: [Custom Content Shortcode] Navbar modifiation.hello Akira:
Thank you for your replay. I have actually found a solution since posting this.
And looks like i might not need to use your plugin(i am sure it is awesome, but don’t think i’ll need it after all)
I was however wondering…I think it knocked off the “screen options” tab & deactivation and re-install of wp did not help.
Any advice there?
thank you
DForum: Fixing WordPress
In reply to: including a carouselHey guys. thank you. You were also right I found and used
<?php get_template_part(‘carousel’, ‘page’); ?>
And it worked.Thank you for letting me know about the deprecation!
You all have a good weekend
Dps
if you know of a good link for styling the navbar w/bootsrap let me know please!Forum: Themes and Templates
In reply to: Don't understand the instructions for "ost format specific"Thank you Stephen. does that mean that I an also just use as is if I don’t want to change it?
thx
DThank you. As i mentioned i am using a child theme, did not want to use the css to remove the tags.
Eventually found the<?php ?> tag in the page.php and commented it out.
Thank you tough.
DForum: Fixing WordPress
In reply to: post filtering/selection.But this one did work:
<?php $new_query = new WP_Query( 'category_name=seasonal' ); while ( $new_query->have_posts() ) : $new_query->the_post(); ?> <li> <h5><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5> <?php the_excerpt(); ?> <hr> </li> <?php endwhile; ?>however there is no limit on posts here.
Forum: Fixing WordPress
In reply to: post filtering/selection.nope tried
$new_query = new WP_Query( array( 'cagtegory_name' => 'seasonal', 'posts_per_page' => 5 ) ); while ( $new_query->have_posts() ) : $new_query->the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile;and also
<?php // The Query query_posts( 'cagtegory_name=seasonal&showposts=5' ); // The Loop while ( have_posts() ) : the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Query wp_reset_query(); ?>yes i know. but wanted to see if it worked. it didn’t.
Forum: Fixing WordPress
In reply to: post filtering/selection.Chris thank you very much.
I did try get_post (i think) did not get anything at all back.will try it (crossing fingers here)& report back.
DForum: Fixing WordPress
In reply to: how do i move the entire site from the sandbox to a live site.That is really basically it.
I am creating a child theme. I am filling out the content in the posts and pages.
And would like to be able to move everything to the server w/out having to recreate pages and posts.
I’d imagine there should be a way to do that? move the database?
Thank you
Daniela