Pravin Paratey
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Adding “non-WordPress” files to a directoryThis ought to work by default. If you make a folder under wordpress, wordpress does not handle it.
ex.
https://www.dustyant.com (runs wordpress)
https://www.dustyant.com/forums/ (runs bbpress)If it doesn’t, I’ll need –
1. Is your webhost running Windows or Linux
2. If it runs apache, then paste your .htaccess (from your root folder) hereForum: Plugins
In reply to: Highslide issueInstead of giving negative margins, why dont you give the .img-shadow a right and bottom padding and set its background image.
Something of this sort –
.img-shadow { clear:both; float:left; background:url(images/shadow.gif) no-repeat bottom right; padding-right:4px; /* Assuming shadow takes 4px */ padding-bottom:4px; border: 1px solid #a9a9a9; }
.img-shadow img { display: block; padding:4px; }
I’m assuming that the div tag contains only the img tag. Other tags (and especially text) may mess this up.
Forum: Installing WordPress
In reply to: headers already sentYou have extra characters (the rr) in wp-config.php file. If you see nothing out-of-the-ordinary, it could be an encoding issue, in which case, do what radial did.
Forum: Fixing WordPress
In reply to: Merging two copies of wordpressIf you are importing xml, new ids will be created for those entries.
Forum: Everything else WordPress
In reply to: WordPress 2.2 CAN NOT delete postIt is a problem with the router. I had a similar problem. I don’t know how to fix it. I changed my router. And then the problem went away.
Forum: Fixing WordPress
In reply to: How to change h2 to h1 in single.php?Can you post a url to your site?
Forum: Everything else WordPress
In reply to: WordPress 2.2 CAN NOT delete postDo you have a d-link ADSL router?
Forum: Everything else WordPress
In reply to: Image ProblemsThis is because the css file has a float:left for your images.
Look for
#content img { float: left; margin: 5px 15px 0 0; border: 1px solid #e0e0d0; }
in your /wp-content/themes/relaxation-20/style.css and change it to
#content img { margin: 5px 15px 0 0; border: 1px solid #e0e0d0; }
Forum: Fixing WordPress
In reply to: Merging two copies of wordpressif you have access to phpmyadmin (web based ui for managing mysql) then,
1. Login
2. Select Database
3. Go to the Export tab
4. Select the following tables (more if you want to retain the other tables)wp_comments, wp_postmeta, wp_posts
(I’d suggest you add
wp_categories, wp_options, wp_links, wp_link2cat, wp_post2cat, wp_usermeta, wp_users
too)5. Press the export button and save the file on your pc
6. Open the phpmyadmin for your newer blog and import the exported file. You’ll have to drop those tables first if phpmyadmin complains.Forum: Plugins
In reply to: ToDo plugin released!This means that the tables haven’t been created. You’ll have to create the tables manually. I haven’t had time to maintain this plugin because of work. I don’t know when I’ll find time.
Till then, please look at the todo_install (something like this) function and run those steps manually.
Forum: Fixing WordPress
In reply to: Text too largeLocate the following lines
ul.sidebar_list li.widget, ul.sidebar_list li.linkcat {style.css (line 210) font-size:1.3em; line-height:1.4em; }
Remove the font-size:1.3em line. Or change it to 1.0em or 0.8em depending on what size you want.
Check https://codex.www.ads-software.com/Template_Tags/query_posts
The following code will show you a bulleted list of the last 20 posts:
<?php query_posts('showposts=20'); ?> <ul> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>" title="<?php the_time('F jS, Y') ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul>
Forum: Plugins
In reply to: Prevent google from reading comment…That is php code. It can go in one of two places
1. index.php, page.php, single.php, etc before the comment code
2. start of comment.php
I’d pick 2 because it involves changing only 1 file.
Forum: Themes and Templates
In reply to: theme viewer blacked out?I also see blacked out thumbnails
Forum: Fixing WordPress
In reply to: Redirecting blog elsewhereOr you can edit your index.php file and add
<?php header("Location: https://newurl.com"); exit; ?>
at the beginning