Jardry
Forum Replies Created
-
Forum: Plugins
In reply to: [NextGen Gallery Powertags] ErrorI’ve decided not to use this plugin.
For what its worth, I’m getting the same error after having upgraded.
Warning: Missing argument 2 for WPFB_Core::TitleFilter() in /home/XXXXXXXXX/public_html/mega/wp-content/plugins/wp-filebase/classes/Core.php on line 283
Forum: Plugins
In reply to: [Plugin: Participants Database] Stats WidgetThanks for the response xnau – my programming skills are ZILCH!
Looks like I’ll have to wait until you implement it, or another WordPress Guru comes to my rescue.
Forum: Plugins
In reply to: [Plugin: Twitter Tools] Not updatingNot sure what I did, but whatever it was it seesm to now be working.
Forum: Plugins
In reply to: Twitter Tools 1.5.1 No Longer Tweeting After Upgrade to WP2.7I’ve just installed version 1.5.1a of this plugin and find it does not automatically update my tweets.
FYI I am running WP 2.7 on a Windows hosting platform.
If I go to the plugin’s option page, I can manually update tweets, but that kind of defeats the purpose of having the plugin!
Forum: Fixing WordPress
In reply to: Install Plugin Fatal ErrorYes – I do.
Will remove it.Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Multiple Galleries in a PostAlexRabe,
Are you able to advise whether indivdual galleries in a post can be swithced between slideshow and list view.
Also, can the view be switched?
Forum: Plugins
In reply to: [Plugin: WP-Table] Need a fix for 2.5 compatabilityI deactivated cForms and activated WP-Table and the table works again!
I then tried activating cForms and received a Fatal Error.
Reversed the process and then WP-Table received a Fatal Error.
Has anyone been able to review the plugin code for WP-Table to make it compliant with the latest version of WordPress.
Forum: Alpha/Beta/RC
In reply to: Cannot load akismet-admin.For what its worth – I’m experiencing the same problem!!
Does anyone know of a fix?
Jardry
Forum: Fixing WordPress
In reply to: Can’t Manage Files in Admin Panelmoshu,
I do edit my files off line through dreamweaverand then FTP them.
The circumstance arose because a plugin writer wanted to access my blog to try and resolve an issue with his plugin and he needed to be able to edit the plugin file on the web site.
When he went to Manage –> Files, he couldn’t load the file that he needed to edit.
So once again, I would appreciate any comment as to whether my experience is an isolated occurance, or if it is something that others have also experienced.
Jardry
Forum: Plugins
In reply to: Top 10 Plugin – Local TimeI think I have this worked out!
I added into the $date_array “+(60*60*14.5)”:
$date_array = localtime(time()+(60*60*14.5)) ;
The server is in Dallas USA which is in timezone GMT -5, I’m in Australia in timezone GMT +9.5, which means I need to add 14.5 * 60 minutes * 60 seconds to get my local time.
When I uploaded the edited file, it indicated no views to date, then I visited a couple of posts and the counts commenced. I’ll check it throughout the day and hopefully when I check tomorrow morning the counts will be lower than what they were late tonight!
Forum: Plugins
In reply to: Search Everything 3.2The plugin’s option page allows you to selct pages.
WordPress Admin –> Options –> Search Everything
Forum: Plugins
In reply to: Top 10 Plugin – Local TimeThis is the date function within the plugin:
function todays_date() { $date_array = localtime(time()) ; $month = $date_array[4]+1; if ($month<10) { $month = "0".$month; } $day = $date_array[3]; if ($day<10) { $day = "0".$day; } $year = $date_array[5] + 1900 ; $cdate = "$year-$month-$day"; return $cdate; }
Where and how do I change the above code so as to offset the day to use my localtime rather than the server’s time.
Regards
Jardry
Forum: Plugins
In reply to: Hacking lightbox2.0 to show slideshows?Does anyone know of a wordpress plugin lighbox script that displays a group of images as a slideshow?
Forum: Plugins
In reply to: Roll-your-own Lightbox SlideshowThis appears to be the closest to a “lightbox slideshow” script that I have come across but it is not a WordPress plugin.
Has anyobe been able to modify the script for use within WordPress, if so, would they be so kind as to share.
Is there any other “lightbox” script that has a “slideshow” option that can be used within WordPress.
Jardry