I Dont use this account Anymore why is it still here
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I found an exploitNoted, thanks Samuel ??
Forum: Fixing WordPress
In reply to: I found an exploitJust bringing this back into light.
You’re right, it isn’t an exploit, only initial signs of the issue were showing me it was as non WordPress sites were unaffected on the same server.
However, 2 months on, I have found that it was an issue with WordPress running on IIS, namely permissions. Scanning the web this is a known issue which I believe I have found the answer too (finally!).
Anyway, it was resolved, sorry Justin for misleading you! :s
Forum: Fixing WordPress
In reply to: I found an exploitHi Shelley,
I am aware it is not an issue with WordPress and it was a security issue of the site. As I maintain various WordPress sites and a regular here, I thought it might be helpful for the people out there who may be trying to find the fix for it.
Nevermind.
Forum: Fixing WordPress
In reply to: Trouble changing fonts in Purity (HELP)Hi CC,
I was just going to suggest its something to do with your stylesheet overiding changes, but you’ve worked that one out ??
All of these tags are using “LeagueGothicRegular”, font weight normal:
.nav, h1, h2, h3, h4, .home_tagline h1, .tagline h1, .over span, .dropcap1, .dropcap2, .bold, .nivo-caption
You could try taking “Patua one” out of the h1 tag on the stylesheet to be sure (just by commenting it out), but as far as I can see it looks good.
Nice looking site btw ??
Forum: Hacks
In reply to: Creating a PHP form to insert data into a tableHi Globalfish,
I also found that
<?php require_once('../../../wp-load.php'); global $wpdb; $table_name = $wpdb->prefix . "imlisteningto"; $wpdb->insert( $table_name, array( 'album' => $_POST['album'], 'artist' => $_POST['artist'] ) ); ?>
Also worked, but yes I forgot to mention that $format as described here also caused problems. With that dropped, it worked.
Forum: Hacks
In reply to: Creating a PHP form to insert data into a tableUPDATE – I got it working by doing this:
<?php require_once('../../../wp-config.php'); global $wpdb; $table_name = $wpdb->prefix . "imlisteningto"; $wpdb->insert( $table_name, array( 'album' => $_POST['album'], 'artist' => $_POST['artist'] ) ); ?>
I.e. I need to include wp-config.php. If I drop that, it breaks.
Forum: Plugins
In reply to: PHP form data into a MySQL database using WordPress $wpdbStarting a new thread
Forum: Plugins
In reply to: PHP form data into a MySQL database using WordPress $wpdbOh, and also tried
$rows_affected = $wpdb->insert( 'music', array( 'album' => $album, 'artist' => $artist ), array( '%s', '%s' ) );
Forum: Plugins
In reply to: PHP form data into a MySQL database using WordPress $wpdbForgot to say, I also tried
$wpdb->insert( 'music', array( 'album' => $album, 'artist' => $artist ), array( '%s', '%s' ) )
with a semicolon at the end.still no success.
Forum: Installing WordPress
In reply to: Update to wp3.4 –> Installation failed –> Blank white page.Demon, whats your URL?
Forum: Installing WordPress
In reply to: Site is on download file when browseYou know, I’ve just had this exact problem on a clients server and fonglh is right, ensure PHP is running.
Forum: Installing WordPress
In reply to: Help installing wordpressI would guess that the username and password are correct, but the mysql user does not have sufficient permissions to do anything with the database. Check those details first, perhaps contacting your host if you need to.
All that needs to be done is what fonglh says, and that is to install WordPress once you have uploaded it.
Perhaps these instructions will help:
Forum: Installing WordPress
In reply to: Site is on download file when browseHowever, what I would recommend doing is installing WordPress, and then exporting the content from your current host and then importing in your new site.
Forum: Installing WordPress
In reply to: Site is on download file when browseSomething isn’t set up properly on your hosting side.
I manage to navigate to geologicalmicroscopes.com/index.html and found this:
<?php /* Short and sweet */ define('WP_USE_THEMES', true); require('./wp-blog-header.php'); ?>
So, WordPress appears to be there, but again it downlaoded the index.html. Speak to your hosts.