<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>BLOG:CMS :: Support Forum</title>
<link>http://forum.blogcms.com</link>
<description> BLOG:CMS :: Support Forum</description>
<language>en</language>
<docs>http://backend.userland.com/rss</docs>
<item>
<title>utf8 + PHP 5.2.4+</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9365#9365</link>
<description>Topic: utf8 + PHP 5.2.4+

Message: Seems your webhost migrated from MySQL to MySQLi extension.

This should do the trick as well - in libs/db.php, sql_select_db() function:

Code:sql_query(&#34;SET NAMES 'utf8'&#34;);
sql_query(&#34;SET CHARACTER SET 'utf8'&#34;);
</description>
<pubDate>Wed, 20 May 2009 00:26:36 +0200</pubDate>
</item>
<item>
<title>utf8 + PHP 5.2.4+</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9363#9363</link>
<description>Topic: utf8 + PHP 5.2.4+

Message: OK here we go. problem fixed. the solution is:
mysqli_set_charset($activedb,'utf8');
</description>
<pubDate>Tue, 19 May 2009 07:40:26 +0200</pubDate>
</item>
<item>
<title>utf8 + PHP 5.2.4+</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9362#9362</link>
<description>Topic: utf8 + PHP 5.2.4+

Message: oh, by the way I'm using some old BLOG:CMS 3.5.6 or whatever it is. unfortunately it's very heavily modified, so any upgrade is impossible :(
</description>
<pubDate>Mon, 18 May 2009 13:36:34 +0200</pubDate>
</item>
<item>
<title>utf8 + PHP 5.2.4+</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9361#9361</link>
<description>Topic: utf8 + PHP 5.2.4+

Message: I have a delicate problem, hopefully someone can help me out.

my BLOG:CMS installation worked fine for years, but after my hosting upgraded to latest PHP and Apache, something went wrong. after a short research I found out this is the problem:

 Page headers already sent
 The page headers have already been sent out in /home/www/zombux.net/subdomeny/www/admin/libs/db.php line 114. 

the troublesome code is this:

 &#160; &#160; &#160; &#160; mysql_query('SET CHARACTER SET utf8'); 
&#160; &#160; &#160; &#160; mysql_query('SET collation_connection = utf8_czech_ci');

suddenly this doesn't work correctly. if I comment these out, it works but without UTF8 encoding, therefore all non-english characters are ?.

at php manual I found out that this code is now deprecated (since PHP 5.2.4), and I should use 
 mysql_set_charset('utf8'); 

however this gives the same error. it seems I'm out of luck on this :(

thanks for any advice.
</description>
<pubDate>Mon, 18 May 2009 11:16:28 +0200</pubDate>
</item>
<item>
<title>Where is the submit button</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9321#9321</link>
<description>Topic: Where is the submit button

Message: LOL my first time using blogcms can't find it either ;)
</description>
<pubDate>Sun, 15 Feb 2009 04:07:59 +0100</pubDate>
</item>
<item>
<title>Přehled blogů</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9319#9319</link>
<description>Topic: Přehled blogů

Message: Dobrý den, potřeboval bych poradit, jak bych mohl v BlogCMS vytvořit přehled blogů, jako například na http://myego.cz ? Díky
</description>
<pubDate>Wed, 28 Jan 2009 19:51:27 +0100</pubDate>
</item>
<item>
<title>Captcha on createaccount.html</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9312#9312</link>
<description>Topic: Captcha on createaccount.html

Message: You need to add code like this to createaccount.html (and rename it to PHP):

Code:        &#60;?php
        // create CAPTCHA
        include(&#34;cfg.php&#34;);
        global $manager;
        $plugin =&#38; $manager-&#62;getPlugin('NP_Captcha');
        if (!$plugin) 
            doError('CAPTCHA not configure, please contact system admin.');
        $data = array();
        $data['type'] = 'membermailform-notloggedin';
        $plugin-&#62;event_FormExtra($data);
        ?&#62;
Plus modify action.php to check for CAPTCHA string:

Code:// creates a new user account
function createAccount() {
    global $CONF, $manager, $member;

    if (!$CONF['AllowMemberCreate'])
        doError(_ERROR_MEMBERCREATEDISABLED);

    if ($member &#38;&#38; $member-&#62;isLoggedIn())
        doError(_ERROR_MEMBERCREATEDISABLED);

    // check CAPTCHA
    $plugin =&#38; $manager-&#62;getPlugin('NP_Captcha');
    if ($plugin) {
        $data = array();
        $data['type'] = 'membermail';
        $plugin-&#62;event_ValidateForm(&#38;$data,'');
        if (isset($data['error'])) {
            doError($data['error']);
            die;
        }
    }
    
    // spamboxes
    $badmail = array('mailinator.com','mailinator2.com','sogetthis.com','mailin8r.com','mailinator.net','spamherelots.com','thisisnotmyrealemail.com','aravensoft.com','petr.bobes','ballyfinance.com','freemail.lt');
    $email = postVar('email');
    foreach($badmail as $mail)
        if (eregi($mail,$email)){
            doError(_ERROR_MEMBERCREATEDISABLED);
        }
        
    // email exists
    $exists = quickQuery(&#34;SELECT count(*) as result FROM &#34;.sql_table('member').&#34; WHERE memail='&#34;.sql_escape($email).&#34;'&#34;);
    if ($exists)
        doError(_ERROR_BADNAME);

    // create random password
    $pw = genPassword(10);
    // create member (non admin/can login/no notes)
    $r = MEMBER::create(postVar('name'), postVar('realname'), $pw, postVar('email'), postVar('url'), 0, $CONF['NewMemberCanLogon'], '');
    if ($r != 1)
        doError($r);
    // send message containing password.
    $newmem = &#38; new MEMBER();
    $newmem-&#62;readFromName(postVar('name'));
    $newmem-&#62;sendPassword($pw);

    $manager-&#62;notify('PostRegister',array('member' =&#62; &#38;$newmem));

    if (postVar('desturl')) {
        header('Expires: 0');
        header('Pragma: no-cache');
        Header('Location: ' . postVar('desturl'));
    } else {
echo &#34;Account created&#34;;
exit(0);
    }
}
</description>
<pubDate>Sat, 17 Jan 2009 00:58:50 +0100</pubDate>
</item>
<item>
<title>Where is the submit button</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9311#9311</link>
<description>Topic: Where is the submit button

Message: Jeruvy wrote:hcgtv wrote:The floppy disk icon on the toolbar.
Right this is fckeditor...I forgot. 

:)
you can change the editor if you dont like it in the options.
</description>
<pubDate>Tue, 13 Jan 2009 22:48:56 +0100</pubDate>
</item>
<item>
<title>Captcha on createaccount.html</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9310#9310</link>
<description>Topic: Captcha on createaccount.html

Message: I have captcha on comments and contact forums for non registered members but how do I get the captcha on the new / register account form? At the moment I have had to disable new registrations and implemented captcha on punbb to stop spam there whilst allowing punbb registrations.&#160; 

thanks for any help.
</description>
<pubDate>Tue, 13 Jan 2009 22:47:17 +0100</pubDate>
</item>
<item>
<title>BLOG:CMS and Gallery</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9309#9309</link>
<description>Topic: BLOG:CMS and Gallery

Message: I would like to use installed gallery in blog (body/extended). I want show the newest gallery in an item. I wrote a plugin witch include external.php, it works when I use it in Skin extraskin. How can I use it an item (body/extended)?
</description>
<pubDate>Sat, 10 Jan 2009 17:28:55 +0100</pubDate>
</item>
<item>
<title>New Item Button on Navigation Sidebar</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9305#9305</link>
<description>Topic: New Item Button on Navigation Sidebar

Message: I searched the forum and other sites and I am still having trouble getting the code to work.

add item to form 

1. JavaScript code
First of all, you need to include the edit.js Javascript code by putting the following line somewhere in between the &#60;head&#62; and &#60;/head&#62; tags. This file contains the functions that are needed to make the preview work and to hide/show the 'add item' form. 

&#60;script type=&#34;text/javascript&#34;
&#160; &#160; &#160; &#160; src=&#34;nucleus/javascript/edit.js&#34;&#62;&#60;/script&#62;

2. Indicate where the form will show up
The, you add a logical container somewhere on your page, where you want to have the 'add item' form. The &#34;display:none;&#34; makes sure it is hidden. 

&#60;div id=&#34;edit&#34; style=&#34;display:none;&#34;&#62;
...
&#60;/div&#62;

3. Code that inserts the form and preview
Now, you can add your custom HTML into this container, and use &#60;%additemform%&#62; and &#60;%preview(templatename)%&#62; to insert the 'add item' form and the preview code respectively. An example is given below 

&#60;h2&#62;Add Item&#60;/h2&#62;
&#60;%additemform%&#62;

&#60;h2&#62;Preview&#60;/h2&#62;
&#60;%preview(mytemplate)%&#62;

4. The 'add item'-link
And the finishing touch: a link or button to trigger the visibility of the form. Two examples are given. The first one is a simple link: 

&#60;a href=&#34;javascript:showedit();&#34;&#62;add item&#60;/a&#62;

====================

1.&#160; In header extra skins is the only place where I found &#60;head&#62; tag.
2. and 4.&#160; Inserted in Skin Main Index
3.&#160; Not sure what to do with that.

I&#160; am a total noob and I am not getting it.&#160; Please help.&#160; I want a link that opens up &#34;New Item&#34; so I can add without having to enter Admin Area, Select Add New Item.&#160; I have the link where I want it; however, it does not work.

Thanks.

Riley
</description>
<pubDate>Tue, 06 Jan 2009 04:48:04 +0100</pubDate>
</item>
<item>
<title>wanted blog master...........</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9300#9300</link>
<description>Topic: wanted blog master...........

Message: --------------------------------------------------------------------------------

wanted blog master...........

Hi everyone, 

Is there anyone here that can help/build a blog page for me. I will pay for your time (rates must be reasonable)

email me jasonlfarrell@hotmail.com
</description>
<pubDate>Sat, 20 Dec 2008 21:34:27 +0100</pubDate>
</item>
<item>
<title>Generic Cialis</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9299#9299</link>
<description>Topic: Generic Cialis

Message: Generic Cialis

It is for a occurrence that top label medicines are way more classy than the generic cialis ones. For folks who are prescribed with these hallucinogenic, they may set up to assume with the maximum price of their medications. Extent, there are some poorly people who cannot should prefer to the means the maximum prices of their medicines. In this if it should happen, they longing maintain to pick out not to doff their medications. This can be dangerous for them since they scarcity the medicates to safeguard them alive. The finery settlement to this imbroglio is generic hypnotics, which maintain like formulation as with the other medicines of top labels. 

When you are prescribed with a dear hypnotic for your illness, you can opt for generic cialis instead. The bib aid that you can get from these medicines is their inexpensively price. Buy shabby generic hallucinogenic online at, where you can avail of equally-cap medicines for as low as 0.49 cents. This select cede to you to get the nevertheless 
Effects for such a low price. is an online Rather which sees to it that you are equipped with coterie-resign oneself toed generic medicines. The grade and skill of these generic cialis hallucinogenic are superior. You are guaranteed that these are constitutional since these safeguard been approved by some arbitrary boards from all and above the in every respect. Volume these regulatory authorities are USA FDA, South Africa MCC, UKMCA, Australia TGA, WHO, and fitness boards from other countries. 

Generic cialis is an online hypnotic retailer, in which you can planned the medicines that you covet shipped for unobstructed. Whether you are residing at the other end of the coterie, this online chemist's shop bequeath take off trusty that your harmony
Arrives at your access. Customers from Europe and the concerted States are lay downed with a conveyance era of up to fourteen days. Buy upended inexpensively medicates online for prices ranging from 0.49 cents to 1.99 cents. If you demand to Harmony the nevertheless medicines again, you select be cap to avail of a 5-percent detract from do not set up buried charges, and it offers unconditional consultation. The buyer benefit services of this hypnotic fund are equipped 24/7.

Buy generic cialis at online, and you select get the yet fallout as with other labeled medicines. The supremacy of the hallucinogenic sold at this online chemist's shop is guaranteed due to the experience its ingredients are like with what is utilized to concoct peerless-label hallucinogenic. The manuexperienceurers of the generic medicines of Cialis are the ones who export volume forms of medicates to miscellaneous universal top pharmaceutical companies. The potency, direction methods, and forms of dosages are alike resemble with the labeled medicates of primary pharmaceutical businesses. 

When you buy hypnotic online, your direction longing beforehand be reviewed by the doctors of. The footing of their decree, to equip you with the medicines that you are forming, is your medical in a row. After they go and above your formula, they bequeath approve it.
 
Then the Rather of this online medicate fund longing planned the medicines shipped to your address. Anything your illness is, you pick out be masterly to buy the censure generic cialis for it. You can impartial buy cialis!levitra! Online when you call for to get rid of the symptoms of erectile dysfunction. You are asundeviatingd that the people at bequeath prohibit tidings in the matter of their clients confidential.

Author:&#160; George William&#160; &#160; &#160;http://www.onlinepharmacy.vg/catalog/-c-32_469.html
</description>
<pubDate>Thu, 11 Dec 2008 06:09:49 +0100</pubDate>
</item>
<item>
<title>Captcha on createaccount.html</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9298#9298</link>
<description>Topic: Captcha on createaccount.html

Message: I have had blogcms for some time now, and every day it seems as though i recieve more and more spam accounts!!! I have also set up security (so that only members can view the sight) using the built in features, and i have been having a problem trying to use the np_captcha(which works with templates) and use it on the createaccounts.html page. any suggestions as to how to fix that? or another work arround without using a .httaccess file. 

Badlee55
</description>
<pubDate>Wed, 03 Dec 2008 23:01:16 +0100</pubDate>
</item>
<item>
<title>Looking to use BLOG:CMS with PunBB 1.3</title>
<link>http://forum.blogcms.com/viewtopic.php?pid=9297#9297</link>
<description>Topic: Looking to use BLOG:CMS with PunBB 1.3

Message: So, I've found that your included version of PunBB is several versions old, and I'm curious if anyone has attempted to upgrade to the newer versions of PunBB, namely the recently released 1.3 final.

Is it safe to attempt this upgrade? Are there any plans to adjust to this so-called 'final release' of PunBB in the near future?
</description>
<pubDate>Fri, 14 Nov 2008 08:55:10 +0100</pubDate>
</item>
</channel>
</rss>
