|
|
| [wordpress][plugin] Plugin to simply add a lot of posts/pages |
Author
ramon fincken
:: Posted: Sat Feb 13, 2010 10:51 pm
:: Category: CMS-ses (Joomla, WordPress, etc..)
Tagged: about, add, admin, admins, default, easy, mass, multiple, page, pages, plugin, post, posts, simple, simply, wordpress
Every time I have a new client/WP install I need to add some default pages like "Home, Contact, About, Products" etc..
Because of the autosave function and the fact that it takes a few minutes I decided this could be done in a much faster way.
Therefore I created this plugin. You simply add the titles of multiple posts OR pages in a textarea, select the author of those posts/pages and hit submit. That's it !
Download:
http://wordpress.org/extend/plugins/sim...-or-posts/
Screenshots below!
| Code: | === Simple add pages or posts ===
Contributors: Simon Dirlik, Ramon Fincken
Donate link: http://donate.ramonfincken.com
Tags: admin,admins,add,mass,simple,easy,post,posts,page,pages,multiple,about,default
Requires at least: 2.0.2
Tested up to: 2.9.2
Stable tag: 1.0
Plugin to simply add multiple posts or pages at once by entering their titles. Handy tool if you have a new blog and want to quickly add pages like Home, About, Contact ...
== Description ==
Plugin to simply add multiple posts or pages at once by entering their titles. Handy tool if you have a new blog and want to quickly add pages like Home, About, Contact ...
== Installation ==
1. Upload directory `simple-add-pages-or-posts` to the `/wp-content/plugins/` directory
2. Activate the plugin through the 'Plugins' menu in WordPress.
3. Visit Plugins menu to add your post(s) or page(s).
== Frequently Asked Questions ==
None available
== Changelog ==
= 1.0 =
First release
== Screenshots ==
1. Enter title
2. After submit
|
Update: @16022010: More people have been waiting for this plugin:
40 Most Wanted Wordpress Plugins > http://loveishs.com/40-most-wanted-word...ugins.html
|
| Idea for NASA |
Author
ramon fincken
:: Posted: Wed Feb 10, 2010 6:52 pm
:: Category: Lounge
I am watching Discovery channel right now, program "Extreme Engineering".
The problem presented was that the Orbiter when docking to the ISS or any other space station.
Now the actual problem is that a viewing window for the astronauts is made of glass (doh..) however this weighs a LOT compared to the other materials.
Now ... just a wild idea.. why not mount some cameras instead of this viewing window and present the info on a screen inside? ( you can still have a small window for a backup ... )
|
| [wordpress] A quick guide when changing urls, subdomains, or subdomain |
Author
ramon fincken
:: Posted: Sun Jan 24, 2010 12:57 pm
:: Category: CMS-ses (Joomla, WordPress, etc..)
Tagged: change, database, move, mysql, server, servers, subdomain, subdomains, transfer, url, urls, wordpress, wp-config
- Creating the dump/export
- Make a full backup of your current online files
- Make a full backup of your current database using PhpMyadmin
- Setting up the new host (Only when not on the same server)
- Create webspace / set up FTP ( write these down ! )
- Create a database with user and password ( write these down ! )
- Transfer files
Transfer the files to their new location/server/directory
- Transfer database (Only when not on the same server)
- Import your database using PhpMyadmin
- Edit wp-config.php using values from 2b. (Only when not on the same server)
| Code: | // ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'database_name_here');
/** MySQL database username */
define('DB_USER', 'database_user_here');
/** MySQL database password */
define('DB_PASSWORD', 'database_pass_here');
/** MySQL hostname */
define('DB_HOST', 'localhost'); // Mostly (99%) localhost |
Update website url in database (Only when changing URL !)
- Open you options table and edit the siteurl and home option values into your new URL location
Permisions and file uploads
- Make sure any plugin or upload directories are writable by PHP/your webserver
- Log in at /wp-admin/ and go to miscellaneous settings ( options-misc.php ).
Now edit/update this folder: "Store uploads in this folder" (Only when changing URL !)
Update url "referals" (Only when changing URL !)
- Update your theme hardcoded paths
- Update your content if they point to an old URL location, use this plugin: http://wordpress.org/extend/plugins/find-replace/
Thanks to http://www.linkedin.com/in/stephanieleary for mentioning the file upload path
|
| [wordpress][solution] Phpbb single signon phpbb_captcha_factory not found no object |
Author
ramon fincken
:: Posted: Sat Jan 02, 2010 10:10 pm
:: Category: CMS-ses (Joomla, WordPress, etc..)
Tagged: authentication, captcha, class, connector, factory, login, password, phpbb, sign on, single, solution, wordpress, wrapper
I client had the phpbb single signon plugin installed but he encountered an error when he had to many login tries on WordPress itself.
http://wordpress.org/extend/plugins/php...e-sign-on/
| Code: | | class or object phpbb_captcha_factory not found |
Why?
Phpbb3 logs every login attempt. If you have too many failed logins you must enter a code (CAPTCHA). But this WP plugin does not facilitate in that.
Here is the solution:
OPEN
FIND
| Code: | // AUTHENTICATE
add_action('wp_authenticate_user','op_login',10,2);
function op_login(&$userdata,$password){
if(file_exists(ABSPATH.'/'.PHPBBPATH.'config.php')){ // check to see if phpBB exists
if(defined('IN_PHPBB')){
return $userdata; // return if we're already in phpBB (to avoid a loop)
} |
AFTER, ADD
| Code: |
// FIX start, RamonFincken.com WebsiteFreelancers.nl
// Fix for phpbb3 login attempts. If too many failed logins, phpbb demands you enter a visual code
// So include ( but do not use ) the class to make phpbb happy :)
define(IN_PHPBB,true);
include_once('./'.PHPBBPATH.'includes/captcha/captcha_factory.php');
// FIX end, RamonFincken.com WebsiteFreelancers.nl
|
This solution has been reported to the author and placed at http://wordpress.org/support/topic/347509?replies=1
|
| Forum |
Topics |
Posts |
Last Post |
| General forums |
|
 |
About this blog
Moderator ramon fincken |
4 |
4 |
Mon Jan 05, 2009 5:47 pm ramon fincken  |
 |
Lounge
Chit - chat
Moderator ramon fincken |
50 |
65 |
Wed Feb 10, 2010 6:52 pm ramon fincken  |
 |
Reviews
Movie reviews - Goodie reviews and much more !
Moderator ramon fincken |
5 |
5 |
Sun Oct 11, 2009 8:00 pm ramon fincken  |
 |
Rants
Rants about things in daily life ...
|
5 |
10 |
Thu Oct 22, 2009 10:25 am ramon fincken  |
| The world of freelance |
|
 |
Freelancing
Moderator ramon fincken |
2 |
2 |
Wed Jan 21, 2009 9:52 am ramon fincken  |
 |
Coping with clients
Moderator ramon fincken |
1 |
1 |
Thu Jan 08, 2009 12:00 pm ramon fincken  |
 |
Services
I offer many webdevelopment services such as custom coding, photoshop webdesign and W3 valid slicing and basing !
Feel free to ask for a quote !
Moderator ramon fincken |
1 |
1 |
Tue Jun 10, 2008 11:12 am ramon fincken  |
| Programming |
|
 |
PHP coding
Moderator ramon fincken |
56 |
66 |
Sat Nov 21, 2009 8:51 pm ramon fincken  |
 |
Mysql databases
Moderator ramon fincken |
6 |
6 |
Sat Feb 20, 2010 3:04 pm ramon fincken  |
 |
HTML and other markup&programming languages
Moderator ramon fincken |
15 |
15 |
Sun Jan 24, 2010 8:02 pm ramon fincken  |
 |
Control panels (plesk, cpanel, direct admin)
Moderator ramon fincken |
4 |
6 |
Thu Oct 30, 2008 11:53 pm ramon fincken  |
 |
CMS-ses (Joomla, WordPress, etc..)
Moderator ramon fincken |
23 |
32 |
Sun Feb 14, 2010 1:49 pm ramon fincken  |
| Other projects |
|
 |
Antispam
Moderator ramon fincken |
5 |
5 |
Tue Aug 18, 2009 1:12 pm ramon fincken  |
 |
Other projects
Moderator ramon fincken |
7 |
13 |
Mon Oct 19, 2009 7:26 pm ramon fincken  |
| Who is Online |
 |
Our users have posted a total of 235 articles We have 10 registered users The newest registered user is Tenedios
|
In total there are 4 users online :: 0 Registered, 0 Hidden and 4 Guests [ Administrator ] [ Moderator ] Most users ever online was 40 on Tue Jan 05, 2010 11:59 pm Registered Users: None |
| This data is based on users active over the past five minutes |
 |
New posts |
|
 |
No new posts |
|
 |
Forum is locked |
|
|
|