neil@gufc.org
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Movement SagaRobin! It worked like a charm. Thank you and everyone that participated for their help. You help steer me out of a dark place. I have to tweak some final things but otherwise, Resolved.
Forum: Fixing WordPress
In reply to: Unable to login to WordPressThanks Tara,
Good point. It has been 24 hours. I am fairly sure it is updated because when I type mydomain.org and place an index.html file in the root, that page comes up successfully.Forum: Fixing WordPress
In reply to: Confusing file structureIt appears as though my content, admin, and wordpress folders are buried within various levels of subdirectories. I fear if I retain this structure my new server will not read the files properly, however to consolidate would probably break the links. Maybe I just need the top level, but then I go an look and I see my images for example are buried at the different levels with old images found deeper within the file structure.
Forum: Fixing WordPress
In reply to: Confusing file structureCorrection above, the first instance wp-admin is at:
/public/docs/docs/docs/docs/docs/docs/docs/docs/docs/docs/docs/docs/docs/wp-admin
And within each of the docs folders is my htaccess and .php files repeaded over and over within each /docs folder.Forum: Fixing WordPress
In reply to: Downloading WordPress and moving serversIs there a tool you recommend for optimizing my database and removal/optimization of images.
Forum: Fixing WordPress
In reply to: Downloading WordPress and moving serversSo 10.6GB seems possible to you. Do you thinking removing all my plugins and the reinstalling them on the new server would be worth the effort in terms of size reduction vs. the time to reinstall?
Forum: Plugins
In reply to: [Image Widget] [Plugin: Image Widget] Image Link – Beyond ImageCan anyone give me the code to remove the “hot link” around the image. I believe the portion that needs to be changed is:
if ( $imageurl ) {
echo “<img src=\”{$imageurl}\” style=\””;
if ( !empty( $width ) && is_numeric( $width ) ) {
echo “max-width: {$width}px;”;
}
if ( !empty( $height ) && is_numeric( $height ) ) {
echo “max-height: {$height}px;”;
}
echo “\””;
if ( !empty( $align ) && $align != ‘none’ ) {
echo ” class=\”align{$align}\””;
}
if ( !empty( $alt ) ) {
echo ” alt=\”{$alt}\””;
} else {
echo ” alt=\”{$title}\””;
}
echo ” />”;