lmannyr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help Adding Pull down menu.Anyone
Forum: Fixing WordPress
In reply to: Best way to have pics load Up fast?Class, your right it can, and I did. THANKS for everyone’s help.
Forum: Fixing WordPress
In reply to: Best way to have pics load Up fast?I have Photo Shop 8.0. Is there a way to do this with photoshop? I’ll look into Irfan View also.
Forum: Plugins
In reply to: HELP—–>Lazy Gallery Sidebar Positionwww. luisandcarla.com is the site sorry.
Forum: Plugins
In reply to: Help—-> Lazy Gallery Not WorkingThanks everyone for the help you have provided. I now have lazy gallery running. Just need to tweak it up.
Forum: Plugins
In reply to: Help—-> Lazy Gallery Not WorkingThanks for the link JWURSTER! One problem though I’ve never used a *.tar.gz
Forum: Plugins
In reply to: Help—-> Lazy Gallery Not WorkingAnyone else have any suggestions?
Forum: Plugins
In reply to: Help—-> Lazy Gallery Not WorkingNo luck finding the “fix” version of lazy-gallery. If this is the case, maybe someone can point me in the right direction with a link. thanks!!!
Forum: Plugins
In reply to: Help—-> Lazy Gallery Not WorkingYes, I have WP Ver. 1.5.1.3
Forum: Plugins
In reply to: Problem with IImage not creating thumbsI get this same error.
I’m running it on IIS5.1
PHP4.4
WP1.5Forum: Fixing WordPress
In reply to: Whats causing the permission error on wther Plugin.It’s running on IIS 5.1
How do I set the permission?
Forum: Fixing WordPress
In reply to: Can’t upload. ——WarningIt’s on my server at home. IIS 5.1 I thought I gave permission everywhere. Anyone know specifiics on IIS?
Forum: Themes and Templates
In reply to: is my site workingThanks for the reply, I think that will do it!!!
Forum: Installing WordPress
In reply to: Warning on initial install.this is a new install fresh, first time ever to install WP.
Just checked and I have version 1.5.1.3
I created a dir with the name before install and completed w/o error. The folder was empty after the install too. Pointless.
thanks for the help.
Forum: Installing WordPress
In reply to: Warning on initial install.// Create a site theme from the default theme.
function make_site_theme() {
// Name the theme after the blog.
$theme_name = __get_option(‘blogname’);
$template = sanitize_title($theme_name);
$site_dir = ABSPATH . “wp-content/themes/$template”;// If the theme already exists, nothing to do.
if ( is_dir($site_dir)) {
return false;
}// We must be able to write to the themes dir.
if (! is_writable(ABSPATH . “wp-content/themes”)) {
return false;
}umask(0);
LINE683 if (! mkdir($site_dir, 0777)) {
return false;
}if (file_exists(ABSPATH . ‘wp-layout.css’)) {
if (! make_site_theme_from_oldschool($theme_name, $template)) {
// TODO: rm -rf the site theme directory.
return false;
}
} else {
if (! make_site_theme_from_default($theme_name, $template))
// TODO: rm -rf the site theme directory.
return false;
}// Make the new site theme active.
$current_template = __get_option(‘template’);
if ($current_template == ‘default’) {
update_option(‘template’, $template);
update_option(‘stylesheet’, $template);
}
return $template;