RustyFish
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: admin screen seems to be a messThanks Esmi, Im all upgraded and admin screen is all good.
Thank you
Forum: Fixing WordPress
In reply to: admin screen seems to be a messBy the way, all my folders are set to 777 permissions and still fails
Forum: Fixing WordPress
In reply to: admin screen seems to be a messHi,
Im still using 3.4, and Im trying to upgrade. The reason I want rid of the mess was so I could see what I was doing with the upgrading!!
However, I dont seem to be able to up grade any plug-in’s or wordpress. It fails at the stage of removing the old plugin
I have tried to disable all plugin’s, but still the same
Any help on this??
Thanks
Forum: Fixing WordPress
In reply to: Screen seems to be a messsorry, try this link so my screen pic
Forum: Fixing WordPress
In reply to: Product TablesIm struggling to get this to display the image, any ideas??
<?php
global $wpdb;
$products = $wpdb->get_results(“SELECT * FROM mydatabase”);
echo “<table border=1>”;
foreach($products as $part_num){
echo “<tr>”;
echo “<td>”.$part_num->part_num.”</td>”;
echo ‘<td> <img src=”.$part_num->image.”> </td>’;
echo “</tr>”;
}
echo “</table>”;
?>Forum: Fixing WordPress
In reply to: Product TablesHi All,
Ive actually managed to solve this now using the $wpdb commands straight in to my database.
However, this leads me on to another question. Within this table is a field for a product image. I have set the field as a Varchar, and then added the address to this line. Example: /httpdocs/wordpress/wp-content/uploads/images/example.png
Unfortunately, it does not seem to pick up and show the image, so Im wondering if I have done this right?
Any help??