Reformatted Advanced UNIX.COM Search Page (Desktop)


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Reformatted Advanced UNIX.COM Search Page (Desktop)
# 1  
Old 09-25-2018
Reformatted Advanced UNIX.COM Search Page (Desktop)

Just enabled Bootstrap for the advanced forum search page (desktop view):

https://www.unix.com/search.php

That' page still needs work, and to be converted from <table> elements to <div> elements, and to be redesigned, but in the meantime, it's OK using Bootstrap CSS.

Note: Before, we had temporarily required guests to login to use the advanced search function because this page was "under revision" but now that the page is "OK" (first step of renovation, this update), I have opened the page up to all users (guests and members). If the advanced search page starts to get hammered with search bots again, I'll restrict the advanced search page to registered users (again).
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. What is on Your Mind?

Mobile: Advanced Forum Statistics to Forum Home Page

For mobile users, I have just added a "first beta" Advanced Forum Statistics to the home page on mobile using CSS overflow:auto; so you can swipe if you need to see more. Google Search Console mobile usability says this page is "mobile friendly" so perhaps this will be useful for some of our... (12 Replies)
Discussion started by: Neo
12 Replies

2. What is on Your Mind?

Update to Advanced Search Page (Phase 1)

Update: I have completed the first phase of revamping the "Advanced Search" page using Bootstrap (desktop not mobile yet): https://www.unix.com/search.php https://www.unix.com/search.php I may change this to a Bootstrap modal later and change the CSS a bit more; but for now it is much... (0 Replies)
Discussion started by: Neo
0 Replies

3. What is on Your Mind?

Moved Advanced Stats to Search Results Pages

FYI, today I moved the "Advanced Stats" page from the forum home page to the search results pages. This means that at the top of the search results like "Today's Post" and "New Posts" and keyword searches, the stats will appear at the top of that page instead of the home page. The reason of... (3 Replies)
Discussion started by: Neo
3 Replies

4. What is on Your Mind?

Man Page Reformatted on Mobile (and Desktop)

After experimenting with various Linux utilities like man2html and mandocs and other formats and software, none of them worked as well (or as clear) as by formatting by using PHP preg_replace() to add some CSS elements (wrappers) and then using the <pre> element combined with using jQuery to... (1 Reply)
Discussion started by: Neo
1 Replies

5. Shell Programming and Scripting

Advanced string search + selection

Hi All, I want to run a script that will search backwards through a text file until it finds a certain string, something like "Date/Time/Eng" and select a string which happens to be a date and save that as a variable. The line will always be in the following exact format: Date/Time/Eng. ... (4 Replies)
Discussion started by: martin0852
4 Replies

6. Fedora

Desktop search and web history

Hi there, I'm back :D, I have a problem: even if I deleted my web history in mozilla, I noticed that I can still visualize web pages I visited two years ago by using Desktop Search (in FEDORA) :confused:... how could I delete completely my history? Thanks in advance for any suggestions!!! ... (2 Replies)
Discussion started by: Giordano Bruno
2 Replies

7. Shell Programming and Scripting

Advanced Search & Delete Text File

I have a file in which email messages are stored in. Every email is separated by by a ^Z character (Control-Z). I need to extract all emails after the 65,00th one to another file and delete them from the original file. Any suggests on accomplishing this? (2 Replies)
Discussion started by: maxcell
2 Replies

8. Post Here to Contact Site Administrators and Moderators

Advanced Search Problems.. Search by User Name

There seems to be some problems with Advanced Searching (by User Name & Keyword). I will try to fix this by upgrading vB soon. Thanks for your patience. Neo (1 Reply)
Discussion started by: Neo
1 Replies
Login or Register to Ask a Question
YAF_BOOTSTRAP_ABSTRACT(3)						 1						 YAF_BOOTSTRAP_ABSTRACT(3)

The Yaf_Bootstrap_Abstract class

INTRODUCTION
Bootstrap is a mechanism used to do some intial config before a Application run. User may define their own Bootstrap class by inheriting Yaf_Bootstrap_Abstract Any method declared in Bootstrap class with leading "_init", will be called by Yaf_Application::bootstrap one by one according to their defined order. EXAMPLES
Example #1 Bootstrap example <?php /* bootstrap class should be defined under ./application/Bootstrap.php */ class Bootstrap extends Yaf_Bootstrap_Abstract { public function _initConfig(Yaf_Dispatcher $dispatcher) { var_dump(__METHOD__); } public function _initPlugin(Yaf_Dispatcher $dispatcher) { var_dump(__METHOD__); } } $config = array( "application" => array( "directory" => dirname(__FILE__) . "/application/", ), ); $app = new Yaf_Application($config); $app->bootstrap(); ?> The above example will output something similar to: string(22) "Bootstrap::_initConfig" string(22) "Bootstrap::_initPlugin" CLASS SYNOPSIS
Yaf_Bootstrap_Abstract abstract Yaf_Bootstrap_Abstract Properties Methods PHP Documentation Group YAF_BOOTSTRAP_ABSTRACT(3)