Search found 291 matches
- Mon Sep 26, 2011 11:44 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Use Google's jQuery
- Replies: 60
- Views: 113314
Re: [RFC] Use Google's jQuery
As I said, you need to have certain conditions. Try loading a script from a site which blackholes all traffic sent to it, or that accepts a request and sleeps for 1 hour. On freebsd, https://bugzilla.mozilla.org/show_bug.cgi?id=684758 causes firefox 3.x-6.x to burn 100% cpu indefinitely when it ...
- Sun Sep 25, 2011 12:14 pm
- Forum: [3.x] Discussion
- Topic: New template variables
- Replies: 12
- Views: 24856
Re: New template variables
http://tracker.phpbb.com/browse/PHPBB3-10387
Seems there is actually an ON_PAGE variable which maybe set.
Seems there is actually an ON_PAGE variable which maybe set.
- Mon May 09, 2011 10:54 pm
- Forum: [4.x] Discussion
- Topic: Default Editor - BBCode Shortcuts
- Replies: 14
- Views: 67631
Re: Default Editor - BBCode Shortcuts
phpBB already supports accelerator keys: with MSIE or FFOX on Windows you can hit ALT+B for clicking the Bold-button. With OPER it's not that easy ( SHIFT+ESC , then press the key of choice) unless you use an extension which enables you to do the same with ALT+SHIFT+B . While "accelerator keys" is ...
- Mon May 09, 2011 10:43 pm
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168406
Re: [RFC|Accepted] Include and use jQuery
Couple of things I've picked up on.
First off jQuery's no conflict option should be enabled by default, it stops people using the $ shortcut directly. All phpBB JS should be wrapped in a closure or use the jQuery wellvariable directly, this keeps things clean and means people who embed their board ...
First off jQuery's no conflict option should be enabled by default, it stops people using the $ shortcut directly. All phpBB JS should be wrapped in a closure or use the jQuery wellvariable directly, this keeps things clean and means people who embed their board ...
- Sun Nov 21, 2010 10:39 pm
- Forum: [3.0/Olympus] Discussion
- Topic: WinCache ACM backend
- Replies: 13
- Views: 32700
Re: WinCache ACM backend
I have an implementation of this sat in my repository, I've just never got around to testing it. https://github.com/cs278/phpbb3/compare ... ncache-acm
- Sat Oct 09, 2010 8:58 pm
- Forum: [3.x] Discussion
- Topic: Replace download.php src by direct src for inline images
- Replies: 9
- Views: 25006
Re: Replace download.php src by direct src for inline images
They exist, and there are others with worse restrictions for example realpath() returning an empty string for any input.TerryE wrote:I don't know of any ISP shared web service which doesn't include GD, so the flexibility and performance impacts of this as a default option would be minimal.
- Thu Sep 30, 2010 6:54 pm
- Forum: [3.x][Archive] RFCs
- Topic: [RFC]Remove Install file
- Replies: 17
- Views: 34353
Re: [RFC]Remove Install file
Could probably expanded to chmoding the cache/ etc. directories as well.
- Mon Sep 27, 2010 11:36 am
- Forum: [3.1/Ascraeus] Merged RFCs
- Topic: [RFC|Merged] Include and use jQuery (originally for 3.2)
- Replies: 74
- Views: 168406
Re: [RFC] Include and use jQuery
Hmm, I just tested out Invision IP.Board.
They provide an option in the Admin section that lets you choose to have javascript files (they use scriptaculous and prototype) load from Google's servers or from your own server.
Kind of a nice option. Maybe phpBB could implement it that way. In terms ...
They provide an option in the Admin section that lets you choose to have javascript files (they use scriptaculous and prototype) load from Google's servers or from your own server.
Kind of a nice option. Maybe phpBB could implement it that way. In terms ...
- Mon Sep 27, 2010 11:35 am
- Forum: [3.x] Discussion
- Topic: Last topic titles
- Replies: 19
- Views: 35709
Re: Last topic titles
No, but I'd like to think we could deliver it in 3.2.
- Mon Sep 27, 2010 11:32 am
- Forum: [3.x] Discussion
- Topic: sql_build_query change proposal
- Replies: 3
- Views: 9604
Re: sql_build_query change proposal
As a crude hack you could probably do
Code: Select all
'FROM' => array(
TOPICS_TABLE => 't1',
TOPICS_TABLE . ' ' => 't2',
)