NewsBot
Moderator-
Postów
9 017 -
Dołączył
-
Ostatnia wizyta
-
Wygrane w rankingu
25
Typ zawartości
Profile
Forum
Pliki
Galeria
Blogi
Sklep
Wydarzenia
Treść opublikowana przez NewsBot
-
We are pleased to announce the release of (NG30) Forum Icon Legend v1.0.0 This hook will display a Forum Icon Legend under the Board Totals. For Support, Please Visit Tiberium Studios. Release Notes First Initial Release Of Modification v1.0.0There Are No Settings For This Mod. To Disable The Mod, Please Disable The Hook. Known Issues None As Of First Release. Wyświetl pełny artykuł
-
[CodersRefuge.com - pliki] (SOS30) New Topic Rules v1.0.0
NewsBot opublikował(a) temat w Wiadomości z Invision Power Services
http://forum.sosinvision.com.br/uploads/images/SOS-1253065576-U1.png This MOD will create a specific rule for the forums you want, so users of specific groups, set by the administrator, must agree before they can create a new topic. Affected Files: admin/applications/forums/modules_admin/forums/forums.php admin/applications/forums/skin_cp/cp_skin_forums.php admin/applications/forums/sources/classes/post/classPostForms.php Wyświetl pełny artykuł -
File Name: (SOS30) New Topic Rules v1.0.0 File Submitter: SOSInvision File Submitted: 15 Sep 2009 File Category: IP.Board v3.0.x Mods Resource Type: Hook Version: 1.0.0 This MOD will create a specific rule for the forums you want, so users of specific groups, set by the administrator, must agree before they can create a new topic. Affected Files: admin/applications/forums/modules_admin/forums/forums.php admin/applications/forums/skin_cp/cp_skin_forums.php admin/applications/forums/sources/classes/post/classPostForms.php Click here to download this file Wyświetl pełny artykuł
-
We are pleased to announce the release of (NG30) Forum Icon Legend v1.0.0 This hook will display a Forum Icon Legend under the Board Totals. For Support, Please Visit Tiberium Studios. Release Notes First Initial Release Of Modification v1.0.0There Are No Settings For This Mod. To Disable The Mod, Please Disable The Hook. Known Issues None As Of First Release. Wyświetl pełny artykuł
-
If you're developing a userCP only application, you might find yourself in a place where you want to hide the tab for some groups. I've suggested that IPS add something to the main application that allows us to add raw PHP code, which is executed when forming the ipsRegistry::$applications array, were we could fetch our values for a different setting, and show/hide the application tab according to that. Until them, this will work. In the method "getLinks" in your applications usercpForms.php you can add something like this to the very beginning: if( expr ) { return false; } This will hide the tab, and even deny access if you're using the exact URL to reach it. Wyświetl pełny artykuł
-
[resources.invisionpower.com - pliki] Wine Diablo
NewsBot opublikował(a) temat w Wiadomości z Invision Power Services
COMPATIBLE FOR 3X ONLY LANGUAGE:ENGLISH SUPPORTS: FORUM, DOWNLOAD MANAGER AND GALLERY You may download this in the download manager on my site. A subscription to board is available to use download manager for as little as $3.00 TRIAL PACKAGE. Wyświetl pełny artykuł -
Sphinx search is excellent.. Until it stops working. It is quite difficult to troubleshoot, as it is new to IPB and as it it new, it tends to change rather frequently. This should settle down as time goes by, but in the beginning, you will have to make updates to it to keep it working. It does require maintenance whereas FullText searching is totally set it and forget it. The advantage, however, is that Sphinx beats the pants off FullText searching in performance, usability and resource usage. The first main problem seen is that Sphinx returns results for admins only. This is a problem in IPB 3.0.2 and lower. The suggestion would be to upgrade to 3.0.3 or higher, but if that is not possible, the quick fix would be to run the following query on your database.. update ibf_permission_index set authorized_users = NULL where authorized_users = '' You may need to adjust the query, pending on your database prefix. Then rebuild your master Sphinx indexes with the command /usr/local/bin/indexer --config /path/to/sphinx.conf --all --rotate Using your path to sphinx.conf. That should take care of it. ---------------------------------------------------------------------- Next.. General Sphinx problems. Run a search for the term test Click the tabs across the top of the search results for Members, Help Files, Calendar, Blogs, Gallery, etc (if installed). Are results returned for ANY of those items? If not.. It is likely that Sphinx is not running on your server.. Login as root and run the command ps -A | grep searchd Is anything returned? You should have a line returned similar to 20723 pts/0 00:00:00 searchd The numbers may be different, pending on what ID the process is, however, the searchd process should show up.. If it doesn't, you need to start the process using the command /usr/local/bin/searchd --config /path/to/sphinx.conf again, subbing your exact path to sphinx.conf. If you *DO* have results returned for other items, just not for posts.. Then you have a problem with your post indexes. On a default installation of Sphinx, according to the instructions at This Link, the indexes are built in /var/sphinx, so, go to that directory. cd /var/sphinx List the contents of that directory. ls -l You should see a listing of a number of .spa, .spd, .sph, .spi, .spl, .spm and .spp files. Things such as members_search_delta, members_search_main, core_search_main, core_search_delta and so on. One for each component of your forum. What we're interested in is the component that isn't working. Most likely, the forums component. If you are using IPB 3.0.2 or prior, ignore the below, because your problem is likely the above issue.. Login as admin and see if results are returned. The forums component is broken down into 2 sections, posts and topics as of 3.0.3. So, you should have 7 different files for each of the following.. forums_search_posts_main forums_search_posts_delta forums_search_topics_main forums_search_topics_delta If you have ANY other files, such as forums_search_main and forums_search_delta those indexes are being read, and that's causing the problem. Those files are likely being generated by the cron job. You'd need to delete the forums_search_main and forums_search_delta files, update the cron job and change forums_search_delta in the 15 minute update to forums_search_topics_delta and forums_search_posts_delta, then rebuild the indexes with /usr/local/bin/indexer --config /path/to/sphinx.conf --all --rotate THEN kill the sphinx process by finding the process id with ps -A | grep searchd note the number returned at the far left, in the previous example of 20723 pts/0 00:00:00 searchd that would be 20723.. So you would then run the command kill -9 20723 to stop the process. Now, you need to restart sphinx, by running /usr/local/bin/searchd --config /path/to/sphinx.conf And that should bring things back up. -------------------------------------------------------------------- Worst case situation.. We go nuclear. This just basically knocks out any potential problems. Really doesn't take long, and covers every base, so it should fix any problem. If you are running IPB 3.0.2 or LOWER, run this query from ACP->Support->SQL Toolbox, this step is not needed on IPB 3.0.3 or HIGHER. update ibf_permission_index set authorized_users = NULL where authorized_users = ''; Next, shut down sphinx ps -A | grep searchd Find the process ID and kill it (see process for doing that above) Go into the directory that holds your sphinx index files and clear it of all index files. Anything that has 'search' in it.. So *search* should be removed. Next, edit your crontab and verify that it is correct. THIS IS IMPORTANT. From IPB 3.0.3 on, it should read at a minimum */15 * * * * /usr/local/bin/indexer --config /path/to/sphinx.conf core_search_delta members_search_delta forums_search_posts_delta forums_search_topics_delta --rotate 0 4 * * * /usr/local/bin/indexer --config /path/to/sphinx.conf --all --rotate NOTE that it is forums_search_posts_delta and forums_search_topics_delta and NOT forums_search_delta. For IPB 3.0.2 and PRIOR, it should read at a minimum */15 * * * * /usr/local/bin/indexer --config /path/to/sphinx.conf core_search_delta members_search_delta forums_search_delta --rotate 0 4 * * * /usr/local/bin/indexer --config /path/to/sphinx.conf --all --rotate Note that it is forums_search_delta and NOT forums_search_topics_delta and forums_search_posts_delta. Next, rebuild your master indexes using the command /usr/local/bin/indexer --config /path/to/sphinx.conf --all Finally, restart sphinx itself with the command /usr/local/bin/searchd --config /path/to/sphinx.conf That is a total rebuild of all Sphinx data from the ground up. Pending on the size of your forum, it may take a while to rebuild the indexes, but it's almost a foregone conclusion that it will correct any problem if done properly. -------------------------------------------------------------------------------------------------- Learning a little about Sphinx, you can watch the logs.. You don't really see the internal workings, but you can watch it a bit from the peripheral. In your sphinx log directory, which should be /var/sphinx/log on a default installation, you will find a query.log and a searchd.log file. The query.log file contains information on what, where and when your users are searching, along with how long the search took. If you run the command tail -f query.log from the /var/sphinx/log directory, you can watch this file real-time. As users search, new lines will appear on screen. The first portion is the time the search was run, immediately after that is the time the search took, followed by some internal sphinx data, such as the number of results returned, then the location that was searched (normally forums) and at the very end, the term that was searched for. If you're not getting any results, this log might be worthwhile to check. You can press Ctrl-C to break out of that. The other file, searchd.log, contains information about the searchd process itself, when index rotation happens, when the process starts and stops, and things of that nature. If the process is stopping and you're having to restart it daily or something along those lines, that would be the file you would want to check. Wyświetl pełny artykuł
-
File Name: (DP30) Adverts in Topic 1.0.0 Author: DawPi Category: 3.x Mods Description:With this hook you can show one or two different adverts in topic view in post template - more info on screen_2. Features: enable/disable mod, enable/disable first advert, enable/disable second advert, ability to select forums and groups which will see adverts, ability to set different titles to each advert, ability to set different avatars for each advert, ability to set after which post each advert should be add. Screens: http://ipslink.pl/scr/dp30advt/en/screen_1.png http://ipslink.pl/scr/dp30advt/en/screen_2.png Wyświetl pełny artykuł
-
This is a little trick that I use for starting Sphinx. The method in the main Sphinx setup article will work on most servers, however, I like to have control over the service. When you use the supllied method, then the only way to start and stop the process is by killing it using ps and looking up the ID, and rerunning the command line start utilitiy. If your server uses the service command, which most Linux based servers do, this method will make things much simpler, by making Sphinx a service. These instructions assume that you have installed Sphinx in the default location as directed by the main article at http://resources.invisionpower.com/index.p...mp;article=7813 Go to /etc/rc.d/init.d and create a file named searchd using either nano or vi or whatever text editor you use on your server. Have that file contain the following.. #!/bin/bash # # Init file for searchd # # chkconfig: 2345 55 25 # # description: searchd # # USE "chkconfig --add searchd" to configure Sphinx searchd service # # original script and all credit to Vladimir Fedorkov Mar 1, 2006, [email protected] # # modified by zerosys # # public domain # Source function library. . /etc/rc.d/init.d/functions BASE_PATH=/usr/local PID_FILE=/var/sphinx/log/searchd.pid CONFIG_FILE=/var/sphinx/sphinx.conf EXEC_PATH=$BASE_PATH/bin LOG_PATH=/var/sphinx/log RETVAL=0 prog="searchd" do_start() { echo "Starting $prog" rm -rf /var/sphinx/*.spl daemon $EXEC_PATH/$prog --config $CONFIG_FILE RETVAL=$? echo return $RETVAL } do_stop() { echo "Stopping $prog" if [ -e $PID_FILE ]; then kill -15 `cat $PID_FILE` sleep 5 if [ -e $PID_FILE ]; then kill -9 `cat $PID_FILE` fi fi RETVAL=$? echo return $RETVAL } case $* in start) do_start ;; stop) do_stop ;; *) echo "usage: $0 {start|stop|}" >&2 exit 1 ;; esac exit $RETVAL Next, chmod that file to 777 permissions with the command chmod 777 searchd Finally, run the command chkconfig --add searchd To add the searchd process to the startup configuration of your server. So that it will run on startup. Now, Sphinx will start automatically when your server starts. Additionally, you can start and stop the process from the command line by running the command service searchd start and service searchd stop Which is far simpler than finding and killing the process or running the long command to start sphinx. This will work, with just a few simple modifications, no matter how you have installed Sphinx. You would just have to adjust it for where your sphinx.pid, sphinx binary and sphinx.conf file resides. Wyświetl pełny artykuł
-
Resource Type: Hook Version: 1.0.0 (10000) - Compatibility: IP.Board 3.0.3+ Author: Michael John (DevFuse) Description: Add the ability to print or download pm conversations in html or word formats. Set which groups can use this hook and which options they have. Screenshots: http://i31.tinypic.com/2yzlkq8.jpg http://i29.tinypic.com/1z306tv.jpg http://i30.tinypic.com/29pda1w.jpg Support Topics: http://www.invisionmodding.com/index.php?showtopic=42084 http://www.devfuse.com/forums/topic/3741-m...t-download-100/ Wyświetl pełny artykuł
-
Description: The Contact System is a highly customizable Feedback/Contact form, fully integrated with IP.Board as a zero file and skin edit application. Including sophisticated security features, custom fields and the option to allow attachments. View screenshots and feature list: http://www.devfuse.com/products/63-contact-system/ Wyświetl pełny artykuł
-
Description: Component based garage system, lets your members add there various vehicles along with any modifications made to that vehicle, as well as images for each vehicle and modification. Which now includes custom tabs and fields. View more screenshots and feature list: http://www.devfuse.com/products/62-garage-system/ Wyświetl pełny artykuł
-
File Name: (M30) PM Print / Download 1.0.0 File Submitter: MichaelJohn File Submitted: 14 Sep 2009 File Category: IP.Board v3.0.x Mods Resource Type: Hook Version: 1.0.0 Resource Type: Hook Version: 1.0.0 (10000) - Compatibility: IP.Board 3.0.3+ Author: Michael John (DevFuse) Description: Add the ability to print or download pm conversations in html or word formats. Set which groups can use this hook and which options they have. Click here to download this file Wyświetl pełny artykuł
-
Resource Type: Hook Version: 1.0.0 (10000) - Compatibility: IP.Board 3.0.3+ Author: Michael John (DevFuse) Description: Add the ability to print or download pm conversations in html or word formats. Set which groups can use this hook and which options they have. http://i31.tinypic.com/2yzlkq8.jpg http://i29.tinypic.com/1z306tv.jpg http://i30.tinypic.com/29pda1w.jpg Wyświetl pełny artykuł
-
[DevFuse.com - pliki] (M30) PM Print / Download 1.0.0
NewsBot opublikował(a) temat w Wiadomości z Invision Power Services
File Name: (M30) PM Print / Download 1.0.0 File Submitter: Michael File Submitted: 14 Sep 2009 File Category: IPB 3.0.x Mods Resource Type: Hook Version: 1.0.0 (10000) - Compatibility: IP.Board 3.0.3+ Author: Michael John (DevFuse) Description: Add the ability to print or download pm conversations in html or word formats. Set which groups can use this hook and which options they have. http://i31.tinypic.com/2yzlkq8.jpg http://i29.tinypic.com/1z306tv.jpg http://i30.tinypic.com/29pda1w.jpg Click here to download this file Wyświetl pełny artykuł -
[DevFuse.com - pliki] (M30) PM Print / Download 1.0.0
NewsBot opublikował(a) temat w Wiadomości z Invision Power Services
File Name: (M30) PM Print / Download 1.0.0 File Submitter: Michael File Submitted: 14 Sep 2009 File Category: IPB 3.0.x Mods Resource Type: Hook Version: 1.0.0 (10000) - Compatibility: IP.Board 3.0.3+ Author: Michael John (DevFuse) Description: Add the ability to print or download pm conversations in html or word formats. Set which groups can use this hook and which options they have. http://i31.tinypic.com/2yzlkq8.jpg http://i29.tinypic.com/1z306tv.jpg http://i30.tinypic.com/29pda1w.jpg Click here to download this file Wyświetl pełny artykuł -
[IPS Blog] Customer Access on Forums
NewsBot opublikował(a) temat w Wiadomości z Invision Power Services
We are working on making customer access here on our company forums work better. During our changes some clients may have been removed from Customers group and put in the Members group. If you are experiencing issues please first try this: Log out of the forums Log back in with the same email address and password you use for our client area The most common issue we have is with customers not logging in with the email they use in the client area. If you are still having trouble please submit a ticket. Zobacz całą wiadomość -
[InvisionModding.com - pliki] Web 2.0
NewsBot opublikował(a) temat w Wiadomości z Invision Power Services
File Name: Web 2.0 File Submitter: CelticTalk1 File Submitted: 10 Sep 2009 File Category: IP.Board v3.0.x Skins This is the Web 2.0 skin by Gaffney. There are two previews below Index http://celtictalk.co.uk/skins/web/Index.png Topic http://celtictalk.co.uk/skins/web/topic.png Click here to download this file Wyświetl pełny artykuł -
[resources.invisionpower.com - pliki] Web 2.0
NewsBot opublikował(a) temat w Wiadomości z Invision Power Services
This is the Web 2.0 skin by Gaffney. There are two previews below Index http://celtictalk.co.uk/skins/web/Index.png Topic http://celtictalk.co.uk/skins/web/topic.png Wyświetl pełny artykuł -
The first beta of the Clean Cut skin for IP.Board 3.0.3+ Wyświetl pełny artykuł
-
This is the CleanCut skin which supports IP.Board 3.0.3. This is a beta release of the skin and may change in a future, bundled release. Wyświetl pełny artykuł
-
Media Replacement Match - http://(|www.)liveleak.com/view?i={2} Media Replacement HTML - <object width="450" height="370"><param name="movie" value="http://www.liveleak.com/e/$2"></param><param'>http://www.liveleak.com/e/$2"></param><param name="wmode" value="transparent"></param><embed src="http://www.liveleak.com/e/$2" type="application/x-shockwave-flash" wmode="transparent" width="450" height="370"></embed></object> Wyświetl pełny artykuł
-
Media Replacement Match - http://(|www.)vimeo.com/{2} Media Replacement HTML - <object width="400" height="225"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=$2&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=$2&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object> Wyświetl pełny artykuł
