sullivanka
Forum Replies Created
-
You’re welcome!
Kathleen
Forum: Plugins
In reply to: [IvyCat AJAX Image Slider] Resize the sliderHey Eric
Thanks for your speedy reply. Appreciate it.
Forum: Plugins
In reply to: [MyCurator Content Curation] White Screen after publishingOK got it. It was conflicting with another plugin. I uninstalled the other one because I like MyCurator better lol.
Thanks
Forum: Installing WordPress
In reply to: Memory exhausted error in admin panel after upgrade to 2.8I had the same issue so called my host. We first went to file manager–> and in the public_html found the php.ini file and right clicked on it and chose edit code. code window opened and used the keyboard combo Control F to open a search field where I typed in “Memory”. Brought to code line where I was able to change memory limit from 32 M to 128 Meg (by the way, this is arbitrary, and based on whatever you want to allow scripts to use). Saved the changes and fixed.
Forum: Fixing WordPress
In reply to: Dashboard??OK Michael and cipote
I went into my files through my FTP and deleted plugins. Got the dashboard back. Now to figure out which one was not compatible.
K
Forum: Fixing WordPress
In reply to: Dashboard??Hi Cipote
I will try that, thanks. For future use, it would still be great to know where the dashboard is.
K
Forum: Fixing WordPress
In reply to: Dashboard??Thanks Michael
If I could just get the dashboard back to check my plugins…
Forum: Fixing WordPress
In reply to: Uploading pics to template, but getting this errorThis was an issue that the host company was able to resolve, but it originated with the way the folders were set up. I think it was as a result of a widget I uploaded yesterday to try. I forget the name of it right now, but it was to show photos as a slide show. I think it changed the folder settings. thank you all and I will try to find the name of the widget to post here as well.
Forum: Fixing WordPress
In reply to: Uploading pics to template, but getting this errorI have gone in there. What do you recommend I do in my files. should I go to wp-content and change permissions from there down? and what should the permission settings be for both directories and files?
Thanks
Forum: Plugins
In reply to: [Plugin: Events Calendar] Is anyone going to fix this plugin?Hi all
I installed the events calendar and it has messed up the formatting on my template.
I get error code: Fatal error: Call to undefined function: ec3_get_calendar() in /home2/xxxxxxxx/public_html/wp-content/plugins/eventcalendar3/widget.php on line 56
I cannot remove the widget, but would love to. I have purchased a set of 10 themes and no matter which theme I use, the formatting is destroyed. I have used a free them as well and the error is still there, the widget cannot be removed and I am unable to add or remove any other widgets.
I have gone to my cpanel file manager and followed the error. This is what the code looks like:
/** Event Calendar widget. */
function ec3_widget_cal($args)
{
extract($args);
$options = get_option(‘ec3_widget_cal’);
echo $before_widget . $before_title;
echo ec3_default_string($options[‘title’],’Event Calendar’);
echo $after_title;
ec3_get_calendar();
echo $after_widget;
}function ec3_widget_cal_control()
{
$options = $newoptions = get_option(‘ec3_widget_cal’);
if ( $_POST[“ec3_cal_submit”] )
{
$newoptions[‘tiAnyone know what is going on?