726

(25 replies, posted in PunBB 1.3 troubleshooting)

Dr.Jeckyl wrote:

I think we got a bit off track here. tongue

by the way ... when you say offical 1.3 styles ... do u mean styles with no images like the old offical styles of 1.2 to make it fast or any style which looks bitter. ...

FSX wrote:

Or maybe right after the final is released. Maybe the CSS is going to be changed before the the final is released.

I think a contest would be cool ^^. I would certainly make a style for it. But I think there should be a (cool) price for the winner else not much people would join the contest. 2 People at Punres organised a contest and almost nobody joined it.

what kind of reward are u thinking for it ...

some thing like ... i dont know .. what does punbb users want so badly that will make them make styles for it ....

here i will post the suggestions of extension that developers may consider making it ....



1- Auto Email Inactive Ordinary Users (based on smf mod here http://custom.simplemachines.org/mods/i … p?mod=1025)

2- Download System (any kind .. may be old punbbs .. or the phpbb ones bitter)

3- bot & Spiders (based on but modified to all bots and spiders http://custom.simplemachines.org/mods/index.php?mod=143)


----------------------------------------------------------------------------------------------------------
here are intresting mods that i find in mybb after searching and reading all the mybb mods
----------------------------------------------------------------------------------------------------------

4- Shoutbox (based on mybb Shoutbox 2.0.1) or some thing bitter

5- ads after first post ... but this time you type the full code or ur and also right left center option

6- who views forum ... like 1.3 beta talk (15 viewers) based on mybb - Who views thread mod

7- birthday mailer ... also based on mybb mod

8- Banned Fun (very intresting mod i saw in mybb and for ones who are bad in theire forums ...)
Enable Ban:
Change This To Off to completly disable this plugin
Good Page:
Actually Let the user get to the page you want to.  Default for most of the others if no is set
Pop-up torture:
Endless amount of popups smile  FUN
Timeouts:
Make People wait X amount of seconds before doing stuff
Random Page:
Every once in a while, this person MIGHT just go somewhere unexpected...

9- Forums Icons (also based on mybb mod)

10- Posts Required To View This Forum (also mybb mod)

11- akismet

12-  Delete Me (delete me option to users ... if u still cant code it then find it in mybb)

13- Ad rotar system (also mybb mod)

14- youtube videos gallery ... (also mybb mod ...if possible to convert it to all the other online videos sites embed videos too)

15- ayax chatbox ... also mybb mod

16- sitemap ... (but this time for punbb 1.3 type and also include all the other pages like if u use custom pages extension)

17- thank you mod (also based on mybb mod)

18- hide link until u reply /// also mybb mod

-----------------------thats all for mybb ---------------------------------

starts of punbb old ones -----------------------------

19- Icon Topics

20- Sub Forums (this might be offical extension)

21- Pun Toolbar with Smiley's

22- Send to friend

23- Quick Quote

24- Custom Multi Quote function

25- Rate Topic

26- Karma Mod

27- Country Flags

28- Printable Topics

29- Forum Notes

30- DIGG and del.ici.ous topic submission

31- Gender MOD

32- Adsense Options

33-  Affiliates

34- Backup

35- BotDetect

36- Feed Aggregator

37- Languages and styles

38- Polls (might be offical extension)

39- Private messaging (might be offical extension)

40-  Allow HTML

41- Attachment Mod (might be offical extension)

42- Did You Mean Mod

43- Arcade Mod (i think stevenbullen is working on this)

44- Actual Posts (should be implemented to core punbb)

45- Broadcast Email

46- DB management ( which works correctly this time .. unfortuanitly the old one dosent worked which distroied my 2 bords)

47- Merge Forums

48- User Merge

49- Audio Private Message Notification 1.0.1

50- online page which shows who is where online and thier ip /// that was punonline i guess

---------------------

50 suggestions is enough for today ... if any one dosent like the topic like this then i request the mods to delete it ...but i think its improtant for extension developers to know what others are doing ... so they dont dublicate extensions ...

thanks

728

(25 replies, posted in PunBB 1.3 troubleshooting)

d3visi0n wrote:
SuperMAG wrote:
d3visi0n wrote:

http://pagedown.co.nz/new/forum

Something I was working on, Smarty said it was too dark. I'll make a lite version when i cba.

PS: this design was similar to the haveamint forum awhile back

Smartys right ... its tooooo dark ... why do u need that much dark in ur site that no one can see what is written ...

bitter luck with your next style since i dont like this one ...

Hm, I believe it comes down to the type of monitor you have, I've tested other such displays at work, and its darker. I designed this on my sony laptop. But yeah I fully agree its too dark. Thus I will not be continuing this one smile

Thanks for the feed back though

sorry to see u unhappy ... but i have to be honest with my talk so others can learn

729

(25 replies, posted in PunBB 1.3 troubleshooting)

d3visi0n wrote:

http://pagedown.co.nz/new/forum

Something I was working on, Smarty said it was too dark. I'll make a lite version when i cba.

PS: this design was similar to the haveamint forum awhile back

Smartys right ... its tooooo dark ... why do u need that much dark in ur site that no one can see what is written ...

bitter luck with your next style since i dont like this one ...

i am trying to convert SimplePunRewrite mod of thorze to my Megapun foum but i have some problems

since punrewrite 1.0 and PunOOGle were not working with MP then i fond this one

For Demo go here: http://supermag.wsnw.net

here

open footer.php

find

// END SUBST - <pun_include "*">

add after


// SimplyPunRW by Thorze
// It begins with pid recover all ties which require a specific message
$pattern = 'viewtopic.php?pid=<PID>'; // URL Rewriting ?
preg_match_all('#'.str_replace('\<PID\>', '([0-9]+)', preg_quote($pattern, '#')).'#', $tpl_main, $pids);
$pids = array_unique($pids[1]);

 
if(!empty($pids)) {
 
    // It then recover the id of topics that correspond to different pid
    $result = $db->query('SELECT id, topic_id FROM '.$db->prefix.'posts WHERE id='.implode(' OR id=', $pids)) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
    if (!$db->num_rows($result))

        message($lang_common['Bad request']);
 
    while ($pid_id = $db->fetch_assoc($result))
    {
        $adresse[$pid_id['id']] = Array('topic_id' => $pid_id['topic_id']);

 
        if (isset($query))
            $query .= ' OR topic_id='.$pid_id['topic_id'];
        else
            $query = $pid_id['topic_id'];
    }

 
    // We recover and then we classify the pid of all posts by all concerned topics
    $result = $db->query('SELECT topic_id, id FROM '.$db->prefix.'posts WHERE topic_id='.$query.' ORDER BY posted') or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
    while ($id_pid = $db->fetch_assoc($result))

        $posts[$id_pid['topic_id']][] = $id_pid['id'];
 
    // It looks for pid links in the pid of topics and recover on their positions to calculate their page
    foreach ($posts AS $id => $pids)

    {
        foreach(array_keys($adresse) AS $pid) {
            if(($position = array_search($pid, $pids)) !== false)

                $adresse[$pid]['p'] = ceil(($position + 1) / $pun_user['disp_posts']);
        }
    }
 

    // It replaces finally addresses with the addresses by pid unique and direct with the idea of specifying topic page
    foreach($adresse AS $pid => $url)
        $tpl_main = str_replace(str_replace('<PID>', $pid, $pattern), 'viewtopic.php?id='.$url['topic_id'].'&p='.$url['p'].'', $tpl_main);

}
 
// It is using this opportunity to turn all? Or p = 1 & p = 1, which also unnecessarily duplicate pages
$tpl_main = preg_replace('#(\?|&)p\=1#', NULL, $tpl_main);

 
// Function rewrite
function pun_url($str,$more=false) {
        if((!isset($more)) || ($more == false)){

            $max = 2;
         }else{
            $max = $more;
         }
         $str = strtr($str,"A?A???à?â?????O?????ô???EEEEèéêë??II??îïU?UUù?ûü???Cç'`",
                           "AAAAAAaaaaaaOOOOOOooooooEEEEeeeeIIIIiiiiUUUUuuuuyNnCc  ");
         $str = strtolower($str);
         $str = preg_replace('/[^a-z0-9_\.\s]/',' ',$str);
         $str = preg_replace('/[^a-z0-9_\s]\./','',trim($str));
         $str = str_replace('.',' ',$str);
         $str = str_replace('_',' ',$str);
         $str = " ".$str." ";
 
         $str = ereg_replace(' .{1,'.$max.'} ', ' ', $str);
         $str = ereg_replace(' .{1,'.$max.'} ', ' ', $str);
         $rep = array(" quel ", " crois ", " etes ", " quand ", " suis ", " aux "," moi ", " sont ", " quelle ", " quoi ", " mon ", " est ", " plus ", " que ", " vous ", " faites ", " par "," dans "," pour "," pas "," les "," des "," que "," une "," avec "," qui "," sur "," mes ");
         $str = str_replace($rep," ",$str);
         $str = trim($str);
         $str = preg_replace('/[\s]+/','-',$str);
 
         if(count(explode("-", $str)) >= 8){

            $max++;
            $str = pun_url(str_replace('-',' ',$str),$max);
         }
         if(!$more){
         if((!isset($str)) || ($str == "")){

            $str = "punseo";
           }
         }
           return $str;
  }
 
 
// Rewrite the navbar
$tpl_main = preg_replace('#<a href="index.php#', '<a href="index.html', $tpl_main);
$tpl_main = preg_replace('#<a href="userlist.php#', '<a href="userlist.html', $tpl_main);
$tpl_main = preg_replace('#<a href="search.php#', '<a href="search.html', $tpl_main);
$tpl_main = preg_replace('#<a href="register.php#', '<a href="register.html', $tpl_main);
$tpl_main = preg_replace('#<a href="login.php#', '<a href="login.html', $tpl_main);
$tpl_main = preg_replace('#<a href="login.html\?action=forget#', '<a href="forgot_password.html', $tpl_main);
$tpl_main = preg_replace('#<a href="downloads.php#', '<a href="downloads.html', $tpl_main);
$tpl_main = preg_replace('#<a href="message_list.php#', '<a href="message_list.html', $tpl_main);
 
// Rewrite of viewforum and we add the name of the forum in the url
$pattern = 'viewforum.php?id=<ID>';
preg_match_all('#'.str_replace('\<ID\>', '([0-9]+)', preg_quote($pattern, '#')).'#', $tpl_main, $out);
$out2 = array_unique($out[1]);

if(!empty($out2)) 
{
    $tabunique2=array_values($out2);
    $i=0;
    while ($i<count($tabunique2)) 
    {

        $id7 = $tabunique2[$i];
        $result = $db->query('SELECT id, forum_name FROM '.$db->prefix.'forums WHERE id='.$id7) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
        while ($fnom = $db->fetch_assoc($result))

        {
            $tpl_main = preg_replace('#<a href="viewforum.php\?id='.$fnom['id'].'#', '<a href="f'.$id7.'-'.pun_url($fnom['forum_name']).'.html', $tpl_main);
            $tpl_main = preg_replace('#<a href="f([0-9]+)-'.pun_url($fnom['forum_name']).'.html([0-9]+)#', '<a href="f\\1\\2.html', $tpl_main);
            $tpl_main = preg_replace('#<a href="f'.$id7.'-'.pun_url($fnom['forum_name']).'.html&p=([0-9]+)#', '<a href="f'.$fnom['id'].'-page\\1-'.pun_url($fnom['forum_name']).'.html', $tpl_main);
        }

        $i++;
    }
}
 
// Rewrite of viewtopic and adds the title of the post in the url
$pattern = 'viewtopic.php?id=<ID>';
preg_match_all('#'.str_replace('\<ID\>', '([0-9]+)', preg_quote($pattern, '#')).'#', $tpl_main, $out);
$out3 = array_unique($out[1]);

if(!empty($out3)) 
{
    $tabunique3=array_values($out3);
    $i=0;
    while ($i<count($tabunique3)) 
    {

        $id7 = $tabunique3[$i];
        $result = $db->query('SELECT id, subject FROM '.$db->prefix.'topics WHERE id='.$id7.'') or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());
        while ($fnom = $db->fetch_assoc($result))

        {
            $tpl_main = preg_replace('#<a href="viewtopic.php\?id='.$fnom['id'].'#', '<a href="s'.$fnom['id'].'-'.pun_url($fnom['subject']).'.html', $tpl_main);
            $tpl_main = preg_replace('#<a href="s([0-9]+)-'.pun_url($fnom['subject']).'.html([0-9]+)#', '<a href="s\\1\\2.html', $tpl_main);
            $tpl_main = preg_replace('#<a href="s'.$fnom['id'].'-'.pun_url($fnom['subject']).'.html&p=([0-9]+)#', '<a href="s'.$fnom['id'].'-page\\1-'.pun_url($fnom['subject']).'.html', $tpl_main);
            $tpl_main = preg_replace('#<a href="s'.$fnom['id'].'-'.pun_url($fnom['subject']).'.html&action=new#', '<a href="s'.$fnom['id'].'-show-new.html', $tpl_main);
        }

        $i++;
    }
}
 
// Rewrite profile
$tpl_main = preg_replace('#<a href="profile.php\?id=([0-9]+)#', '<a href="profil-\\1.html', $tpl_main);
 

// Rewrite links research
$tpl_main = preg_replace('#<a href="search.html\?action=show_24h#', '<a href="search-24-hours.html', $tpl_main);
$tpl_main = preg_replace('#<a href="search.html\?action=show_unanswered#', '<a href="search-unanswered.html', $tpl_main);
$tpl_main = preg_replace('#<a href="search.html\?action=show_subscriptions#', '<a href="show_subscriptions.html', $tpl_main);
$tpl_main = preg_replace('#<a href="search.html\?action=show_new#', '<a href="show_new.html', $tpl_main);
$tpl_main = preg_replace('#<a href="search.html\?action=show_user&user_id=([0-9]+)#', '<a href="messages_by-\\1.html', $tpl_main);
$tpl_main = preg_replace('#<a href="search.html\?search_id=([0-9]+)#', '<a href="search\\1.html', $tpl_main);
$tpl_main = preg_replace('#<a href="search([0-9]+).html&p=([0-9]+)#', '<a href="search\\1-page\\2.html', $tpl_main);

 
//Divers misc.php
$tpl_main = preg_replace('#<a href="misc.php\?action=rules#', '<a href="rules.html', $tpl_main);
$tpl_main = preg_replace('#<a href="misc.php\?action=markread#', '<a href="mark_read.html', $tpl_main);

and add this to you .htaccess file

RewriteEngine on
 
RewriteRule ^index.html$ index.php [L]
 
RewriteRule ^f([0-9]+)-page([0-9]+)-(.*).html$ viewforum.php?id=$1&p=$2 [L]

RewriteRule ^f([0-9]+)(.*)$ viewforum.php?id=$1 [L]
 
RewriteRule ^s([0-9]+)-page([0-9]+)-(.*).html$ viewtopic.php?id=$1&p=$2 [L]

RewriteRule ^s([0-9]+)-new-messages.html$ viewtopic.php?id=$1&action=new [L]
RewriteRule ^s([0-9]+)(.*)$ viewtopic.php?id=$1 [L]

 
RewriteRule ^profil-([0-9]+)(.*)$ profile.php?id=$1 [L]
 
RewriteRule ^register.html$ register.php [L]
RewriteRule ^login.html$ login.php [L]

RewriteRule ^(.*).rss$ extern.php?action=$1&type=rss [L]

RewriteRule ^forum.html$ forum.php [L]
RewriteRule ^message_list.html$ message_list.php [L]
RewriteRule ^contact.html$ contact.php [L]
RewriteRule ^chatbox.html$ chatbox.php [L]
RewriteRule ^online.html$ online.php [L]
RewriteRule ^Links.html$ Links.php [L]
RewriteRule ^gallery.html$ gallery.php [L]

RewriteRule ^downloads.html$ downloads.php [L]

RewriteRule ^forgot_password.html$ login.php?action=forget [L]
RewriteRule ^search.html$ search.php [L]
 
RewriteRule ^search([0-9]+).html$ search.php?search_id=$1 [L]
RewriteRule ^search([0-9]+)-page([0-9]+).html$ search.php?search_id=$1&p=$2 [L]

RewriteRule ^userlist.html$ userlist.php [L]
RewriteRule ^search-24-hours.html$ search.php?action=show_24h [L]
RewriteRule ^([0-9]+)-my-messages.html$ search.php?action=show_user&user_id=$1 [L]

RewriteRule ^show_subscriptions.html$ search.php?action=show_subscriptions [L]
RewriteRule ^search-unanswered.html$ search.php?action=show_unanswered [L]
RewriteRule ^show_new.html$ search.php?action=show_new [L]
RewriteRule ^messages_by-([0-9]+).html$ search.php?action=show_user&user_id=$1 [L]

 
RewriteRule ^userlist-pseudo(.*)-group(.*)-sort(.*)-order(.*)-([0-9]+)(.*)$ userlist.php?username=$1&show_group=$2&sort_by=$3&sort_dir=$4&p=$5 [L]    

 
RewriteRule ^rules.html$ misc.php?action=rules [L]
RewriteRule ^mark_read.html$ misc.php?action=markread [L]

and also change the links that are in the nav bars in the option area to this

1 = <a href="forum.html">Forum</a>
3 = <a href="chatbox.html">ChatBox</a>
4 = <a href="gallery.html">Gallery</a>
8 = <a href="Links.html">Links</a>
10 = <a href="contact.html">Contact Us</a>
11 = <a href="online.html">Online</a>

but still all the things are not changed to .html ...

can any one help me with this

i want to change the following

-blog posts
i mean check this to see what to change: http://supermag.wsnw.net/blogs.php

-downloads insided the directory and also directory url
also check this: http://supermag.wsnw.net/downloads.php

-rss that is around every forum
check this page: http://supermag.wsnw.net/forum.html as see all the rss links inside it

-and when i click on my avator in the main page it go to as an old url
check by clicking on avator at the right menu: http://supermag.wsnw.net

-in the online page the users profile links are still old links
check it : http://supermag.wsnw.net/online.html

-and the subforms links are still old php links
look at the subforum links: http://supermag.wsnw.net/forum.html

-arcade mod links ...
look: http://supermag.wsnw.net/arcade.php

-affiliates links also
http://supermag.wsnw.net at the left menu

-also want to change the links of topics and forums from

this:
http://supermag.wsnw.net/f37.html (some urls of forums has this bug ... look at other forum url:
http://supermag.wsnw.net/f56-general-discussions.html
to this
http://supermag.wsnw.net/forum37-web-de … pment.html

and
http://supermag.wsnw.net/s2-how-build-w … cepts.html
to this
http://supermag.wsnw.net/topic2-how-bui … cepts.html


- and if possible to redirect all the old php links to new html links
---------------------------------------------------------------------

i know its alot to ask ... but can some one help ... if you can help with any part of it then that will be appreaciated ...


Thanks

Paul wrote:

The trouble with this one is which way is better depends on the number and type of extensions. If somebody adds a couple of major extensions then the best way is probably extra submenu items. If somebody adds two or three extensions with a few options each then the best way is new sections on the settings page. If somebody adds a mixed bag of 20 extensions then it might be cleaner to manage the extensions seperately from the rest of the admin interface. The short answer is there is no right answer.

exactly ...  its just  a suggestion ... nothing more ...

elbekko wrote:

'Normally,' as you define it, is just what you are used to.
I much prefer putting settings where they belong - with similar settings.

not that i am used to ... because its bitter and cleaner way ... i cant beleave no one agree with that ...

733

(119 replies, posted in PunBB 1.3 extensions)

yea but will change the orignal files ...shouldnt the devolopers change that ...

and what do u think about the other thing that i said ...

thanks

kierownik wrote:

Or we developers can define where the url settings goes to, then the admin just has to click on settings and he will be taken to the right page, is that an option?

thats a good option but still my idea was bitter ... why do u guys want to mix every thing when you have chance to do it normally....

735

(119 replies, posted in PunBB 1.3 extensions)

hi there are some things

like

if i want to add a banner under Welcome Message Before active topics ...
----------------------------------------------------------------------------


                                                                                                I
-----------------------------------------------------------------------------I


how can i add that ....

for solution

in the pannels sittings

put also at

(  Center    )
1- welcome message
2- banner (for example)
3- active topics
4- news
5- another banner

----------------------------------------------------------

about articles ... i thought they do a seperate page ... but this dublicates urls ... like

http://supermag.wsnw.net/1.3/article1-test-post.html
http://supermag.wsnw.net/1.3/topic1-test-post.html

so if it possible to add a seperate page for

articles (menu
(Post Article)
(Delete Artilce)
Your Articles)
--
Latest articles
.........
........
........

... there must be seperate posting and edit place for articles which contains bbcode too ....


this is a big thing


-------------------------------------------------------------------------------

thanks

736

(119 replies, posted in PunBB 1.3 extensions)

error when i update portal sittings :



Notice: Array to string conversion in /home/supermag/public_html/1.3/admin/options.php on line 44

Notice: Array to string conversion in /home/supermag/public_html/1.3/admin/options.php on line 44

intedinmamma wrote:

I understand, but I don't agree. I believe it's a lot more logical to look for settings under "Settings" than under "Extensions". When you've got an extension with maybe just one or two settings then it'll be unneccessary (speling) to give them their own page. When it's got so many settings that it needs it's own page, then put it under settings.

you will see what i mean for this when you install 20 extensions and will insall 10 more ... and recheck all the sittings again and again ...

this is very important and will not mix the sittings with orignal punbb sittings

but when only have 2 options in your extension ... on - off

then do not put the (sittings) in that extension

Check these two Posts and you will understand

SuperMAG wrote:
SuperMAG wrote:
kierownik wrote:

I just installed mybb on my localhost and I took a look at the admincp and I got lost in where I should look for things hmm
Let me just stick with punbb where everything is cristal clear smile and you can decide yourself what extra's you want smile

good post

speaking about admin area in 1.3 .. i am realy dissapointed ...

i mean its to complicated for extensions sittings to be mixed with the orignal sittings ... in 1.2 you have plugins seperated ... this is a little complicated ... i wanted to ask them to make an page along with every extensions if they need sittings ... like  (Disible - Unistall - Sitting)

but i guess i am alittle late for that ... am i

and


SuperMAG wrote:
lie2815 wrote:
SuperMAG wrote:

speaking about admin area in 1.3 .. i am realy dissapointed ...

i mean its to complicated for extensions sittings to be mixed with the orignal sittings ... in 1.2 you have plugins seperated ... this is a little complicated ... i wanted to ask them to make an page along with every extensions if they need sittings ... like  (Disible - Unistall - Sitting)

but i guess i am alittle late for that ... am i

It is kind of easy to disable them. Just go to extensions and click "disable"...

i am not talking about disibling them ... i am talking about some extensions that have sittings and own pages ... but that sittings and pages are mixed with the orignal Admin sittings ... so its hard to find where these sittings are ... it would be alot eaiser if the extension page has like this

(Disable  Uninstall  Sittings)

in which sittings consist all the sittings that are related to the extension

739

(15 replies, posted in PunBB 1.3 extensions)

for the next release make it like this

when you click on edid .. a small menu shows up and tells you what to choose

mean

---EDIT---
-Quick Edit
- Full Edit

http://img253.imageshack.us/img253/5966/editsuggesionim6.jpg

740

(119 replies, posted in PunBB 1.3 extensions)

hea daris i edited my two posts

this http://punbb.org/forums/viewtopic.php?p … 53#p110553

and

this http://punbb.org/forums/viewtopic.php?p … 12#p110512

741

(119 replies, posted in PunBB 1.3 extensions)

hea daris forget this thing that i said ... i has benn wrong about it ... so stick with the dashes

i mean this:

accourding to google and a member of punbb community:

Solovey wrote:

Google doesn't design web standards. The W3C does, and the RFC. I don't know what the standard is

Thats absolutely right. Google is merely following W3C standards and RFC.

Here is the RFC: http://www.ietf.org/rfc/rfc2396.txt

Uniform Resource Identifiers (URI): Generic Syntax
August 1998

Notice the date? 1998? 10 years ago? And you are suggesting it is too early for PunBB to support it?

It is regretable that closed-minded and possibly xenophobic Western developers like you are so block headed about standards that support languages of the world.

It is unfortunate that you still resist internationalizaton, even when you promise us utf-8 support in the new PunBB.

This is not a small issue. Do it right the first time, and you won't have complaints in the future.

From a pure, very basic seo point of view that's nonsense. Google sees - as a word separator, not _.

I suggest you do some reading on Google's latest thoughts on this.

July 23, 2007 10:24 PM PDT
Underscores are now word separators, proclaims Google

http://www.news.com/8301-10784_3-9748779-7.html

so can you change all the page1-examplepage.html and all other urls to page1_example.html ...

i also recommend the  core 1.3 devlopers to change that ...

742

(38 replies, posted in PunBB 1.3 troubleshooting)

Smartys wrote:

http://www.mattcutts.com/
And if you took the time to actually read the article that was linked to by Solovey and the last entry which I quoted, you would see Google did NOT say that underscores are now word separators. Solovey's article was written by Stephan Spencer.
In other words, Matt Cutts is the one to listen to, not Stephan Spencer wink

i thought that the first article was came directly from google ... but i want wrong i guess ... but that confuezed me ... so i search my own in google ... most of them were saying dashes but they didnt have good proff ...

finnally i got an article that was very convincing and with example that proffed the dashes are sperators:

http://www.webpronews.com/topnews/2004/ … kings-more

the example i used is the heading of this post:

http://punbb.org/forums/viewtopic.php?id=13244

first i searched this: The supposed "poison NULL byte vulnerability"
this is result:
http://img239.imageshack.us/img239/8006/normalsearchob5.jpg

then i searched this: The_supposed_"poison_NULL_byte_vulnerability"
this is result:
http://img135.imageshack.us/img135/8873/underscoresearchbk4.jpg

at last i searched this: The-supposed-"poison-NULL-byte-vulnerability"
this is result:
http://img519.imageshack.us/img519/548/dashessearchhf3.jpg


so thats it ... by the way do u want to why did choose that topic for example ... that reminded me of myself now big_smile

so thats ends it this disscussion i think ....

---------------------------------------------------------------------------------

there is other thing smarty .... about the dublicate urls you remember the post dont you

did u guys did any progress on that

743

(38 replies, posted in PunBB 1.3 troubleshooting)

____ I WAS WRONG SO I DONT WANT ANY ONE TO CONFUSE WIH MY POST ____

744

(38 replies, posted in PunBB 1.3 troubleshooting)

____ I WAS WRONG SO I DONT WANT ANY ONE TO CONFUSE WIH MY POST ____

if any one even finds a mannual solution to db ... i am ready to do it

746

(119 replies, posted in PunBB 1.3 extensions)

there are other suggesiton too

1- RSS / ATOM Feeds for Articles ... with correct urls (mean if the sittings of urls are set to SEF urls then it must show SEF Fancy urls in rss and atom too ...

2- Social bookmarks buttons ... this is very important for aticles .... make it important social bookmarks like

Digg.com / Del.icio.us / Google Bookmarks / Yahoo Bookmarks / Technorati.com / Spurl / Furl.net / Newsvine
( if u have others that u feel important then add it ... and make it as buttons icons ...

747

(22 replies, posted in PunBB 1.2 show off)

hi quacker ... the archive is curropt ... can u reupload

748

(17 replies, posted in PunBB 1.2 discussion)

lie2815 wrote:
SuperMAG wrote:
SuperMAG wrote:

good post

speaking about admin area in 1.3 .. i am realy dissapointed ...

i mean its to complicated for extensions sittings to be mixed with the orignal sittings ... in 1.2 you have plugins seperated ... this is a little complicated ... i wanted to ask them to make an page along with every extensions if they need sittings ... like  (Disible - Unistall - Sitting)

but i guess i am alittle late for that ... am i

It is kind of easy to disable them. Just go to extensions and click "disable"...

i am not talking about disibling them ... i am talking about some extensions that have sittings and own pages ... but that sittings and pages are mixed with the orignal Admin sittings ... so its hard to find where these sittings are ... it would be alot eaiser if the extension page has like this

(Disable  Uninstall  Sittings)

in which sittings consist all the sittings that are related to the extension

749

(22 replies, posted in PunBB 1.2 show off)

thanks alot ... i will check it now

750

(17 replies, posted in PunBB 1.2 discussion)

SuperMAG wrote:
kierownik wrote:

I just installed mybb on my localhost and I took a look at the admincp and I got lost in where I should look for things hmm
Let me just stick with punbb where everything is cristal clear smile and you can decide yourself what extra's you want smile

good post

speaking about admin area in 1.3 .. i am realy dissapointed ...

i mean its to complicated for extensions sittings to be mixed with the orignal sittings ... in 1.2 you have plugins seperated ... this is a little complicated ... i wanted to ask them to make an page along with every extensions if they need sittings ... like  (Disible - Unistall - Sitting)

but i guess i am alittle late for that ... am i