Tag: PHP

  • Create Users Automatically In WordPress

    WordPress is a web application by many – often you have to create a bridge to other systems. For example, to give users a single sign-on via the web applications. Therefore, automated creating users might be necessary. Depending on which system is the leader, the data must be synchronized. From past experience, the users are…

  • Stop WordPress From Ever Logging Out

    You don’t always want to login in WordPress – so I’ve turned off the login for my local development environment, since I don’t need it. So far I know two ways how to do this, which I want to introduce you briefly. Decide for yourself which is the right way for you if you don’t…

  • debugConsole with WordPress

    For debugging inside of WordPress there are different approaches and preferences. I like xDebug and in some cases I use FirePHP. Now there is another possibility which I had to test at least once – debugConsole – I like it. The debugConsole is a tool for debugging and tracing PHP5 applications on productive servers without…

  • Memory Size of xxx Bytes Exhausted – It’s Really Annoying

    Memory Size of xxx Bytes Exhausted – It’s Really Annoying

    Since the release of version 3.0 of WordPress more people are seeking for help because of this problem: My memory limit is exhausted! I also had some problems while testing my Plugin Codestyling Localization with the new version when it was editing a large Plugins or WordPress itself. So I started to research the problem,…

  • Use WordPress Shortcodes outside the Editor

    The Shortcode-API can help to make your Editor more advance especially with the help of Shortcodes to insert external content to your posts or pages easily. There are many possibilities, as you can see in this example Easy Way For Advertisement. But if sometimes you like to use a Shortcode in your Template or just…

  • Control WordPress Content via Userrights or Time

    WordPress comes with its own user administration, therefore we can control on the basis of various roles and objects the content. In some cases, it is a typical request that you give access to a complete content only to registered users. The same is possible only for parts of the content. There are certainly different…