Pranav Rastogi
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Can WP connect to other Databases apart from MySQLWordPress only uses MySQL. WP can also manage an already existing MySQL database.
Forum: Fixing WordPress
In reply to: Logout: Error Page / 403 Forbidden.Hi,
You are not supposed to remove the _wpnonce=d8a9d7bfb7 part as it is used by WordPress to make sure that your request is valid.
Addressing issue #1, it’s probably your router causing the problem.
Forum: Fixing WordPress
In reply to: Image not properly updated in postHi,
Your theme must be showing the thumbnail from the post on category and home pages. Try looking in the custom fields in your post and you might find the thumbnail field. All you have to do is remove it from there.
Forum: Fixing WordPress
In reply to: Have I been hacked?? Extra line added to all php filesHello,
It’d be easier to help you if you can further explain about this extra line.
Forum: Hacks
In reply to: PHP conditional statement for User Agent / browser?Mike, what error are you getting from my code? Can you paste it here?
Forum: Installing WordPress
In reply to: Help please! Old blog exists but won't import/log-inHi,
This can help you – http://codex.wordpress.org/Changing_The_Site_URL
Forum: Hacks
In reply to: One session per user… Help Please!Hi,
You can also store their IPs and if an account gets accessed by many different IP ranges then you can just block it.
Forum: Hacks
In reply to: PHP conditional statement for User Agent / browser?You can do it with this:
<?php function detect_IE() { if(isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'],'MSIE') !== false)) { //blablabla } } ?>Forum: Installing WordPress
In reply to: Temp install directoryDevelop the WP version of the site in a different directory. Once it’s ready, just transfer it to the root directory of the site.
You can make use of relocate method, which automatically adjusts to the new server/directory.
Forum: Fixing WordPress
In reply to: viewers can't see imagesOnly 2 images are being sent. You need to add images for them to show.
Forum: Fixing WordPress
In reply to: viewers can't see imagesAnd revert your index.php back to how it was.
require('./wp-blog-header.php');You’re not supposed to edit this file.
Forum: Fixing WordPress
In reply to: viewers can't see imagesYes, transfer all yours files to /var/www/.
Forum: Fixing WordPress
In reply to: viewers can't see imagesAccessing http://vermithrax.is-a-geek.com/wp-admin gives a 404. Have you uploaded the files properly?
Forum: Installing WordPress
In reply to: Double install of WP for two blogsTry checking the .htaccess files.
Forum: Fixing WordPress
In reply to: viewers can't see imagesErr, you need to set the installation URL to http://vermithrax.is-a-geek.com/. There is also a blog URL which is different from installation URL. Check your WordPress settings.