Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 171
Search took 0.01 seconds.
Search: Posts Made By: nico_swd
Forum: vBulletin 3.8 Add-ons 04-16-2008, 08:08 AM
Replies: 375
Miscellaneous Hacks - Hide Links From Guests
Views: 220,530
Posted By nico_swd
The latest version v132_36x does work on 3.6.7,...

The latest version v132_36x does work on 3.6.7, but I had to edit the plugin Guests will not see links in posts.

Admin CP -> Plugins & Products -> Plugin manager -> Guests will not see links in...
Forum: vB3 Programming Discussions 12-10-2007, 11:07 AM
Replies: 3
Views: 846
Posted By nico_swd
Since you're not telling us what the error is, we...

Since you're not telling us what the error is, we can only guess.

My guess is that your new php.ini file hasn't enabled allow_url_fopen (http://www.php.net/filesystem#ini.allow-url-include).
...
Forum: vB3 Programming Discussions 09-17-2007, 11:59 AM
Replies: 10
Views: 1,299
Posted By nico_swd
You can put PHP code in if conditions, like this....

You can put PHP code in if conditions, like this.

<if condition="strpos($_SERVER['HTTP_REFERER'], 'www.x.') !== false">

<!-- show your content here //-->

</if>
Forum: vB3 Programming Discussions 08-29-2007, 11:38 AM
Replies: 4
Views: 798
Posted By nico_swd
The code is probably all in a database, and the...

The code is probably all in a database, and the zip files are generated on the fly. So when the code is pulled from the database, the dates can be parsed easily. You can use str_pad...
Forum: vB3 Programming Discussions 08-17-2007, 12:08 PM
Replies: 41
Views: 5,348
Posted By nico_swd
Create a backup of the database and save it on...

Create a backup of the database and save it on your computer. So IF he really messes with anything, you can restore it anytime.
Forum: vB3 Programming Discussions 08-17-2007, 11:40 AM
Replies: 41
Views: 5,348
Posted By nico_swd
Select the database from the dropdown ->Select...

Select the database from the dropdown ->Select the table on the left -> Operations -> And "Repair table" on the bottom.
Forum: vB3 Programming Discussions 08-17-2007, 11:18 AM
Replies: 8
Views: 1,312
Posted By nico_swd
I found this searching for "payment": ...

I found this searching for "payment":

https://vborg.vbsupport.ru/showthread.php?t=125369
Forum: vB3 Programming Discussions 08-17-2007, 11:13 AM
Replies: 4
Views: 791
Posted By nico_swd
What is the error you're getting? Double click...

What is the error you're getting? Double click the yellow icon and click on details to see it.
Forum: vB3 Programming Discussions 08-16-2007, 10:53 AM
Replies: 1
Views: 751
Posted By nico_swd
Post your code.

Post your code.
Forum: vB3 Programming Discussions 08-14-2007, 09:40 PM
Replies: 3
Views: 886
Posted By nico_swd
You have to edit the $_REQUEST variable. ...

You have to edit the $_REQUEST variable.



if (empty($_REQUEST['sortfield']))
{
$_REQUEST['sortfield'] = 'lastvisit';
}
Forum: vB3 Programming Discussions 08-14-2007, 09:36 PM
Replies: 16
Views: 2,367
Posted By nico_swd
https://vborg.vbsupport.ru/faq.php?faq=vb_board_us...

https://vborg.vbsupport.ru/faq.php?faq=vb_board_usage#faq_vb_rss_syndication
Forum: vB3 Programming Discussions 08-13-2007, 06:26 PM
Replies: 8
Views: 1,056
Posted By nico_swd
As far as I know, there's no way to override...

As far as I know, there's no way to override functions in PHP. But isn't the point of updating changing your code?

You could do a batch search and replace...

http://www.abacre.com/afr/


It...
Forum: vB3 Programming Discussions 08-13-2007, 05:44 PM
Replies: 8
Views: 1,056
Posted By nico_swd
standard_error (line 2366) Halts execution...

standard_error (line 2366)

Halts execution and shows the specified error message
void standard_error ([string $error = ''], [string $headinsert = ''], [boolean $savebadlocation = true], [string...
Forum: vB3 Programming Discussions 08-13-2007, 11:41 AM
Replies: 18
Views: 1,788
Posted By nico_swd
Try $vbulletin->userinfo['field6'];

Try

$vbulletin->userinfo['field6'];
Forum: vB3 Programming Discussions 08-13-2007, 11:37 AM
Replies: 1
Views: 695
Posted By nico_swd
Like this? ...

Like this?

https://vborg.vbsupport.ru/showthread.php?t=138805

(You could just place the text between <marquee> tags and it would "run")
Forum: vB3 Programming Discussions 08-10-2007, 05:12 PM
Replies: 9
Views: 971
Posted By nico_swd
Mind sharing the solution, in case someone else...

Mind sharing the solution, in case someone else has the same problem?
Forum: vB3 Programming Discussions 08-10-2007, 05:11 PM
Replies: 4
Views: 647
Posted By nico_swd
I just tested it on my host and it works. I...

I just tested it on my host and it works. I placed the htaccess file in the same directory as the image.php file.

Btw, I guess that # is only gonna be a numeric value?

Maybe try:
...
Forum: vB3 Programming Discussions 08-10-2007, 11:09 AM
Replies: 4
Views: 647
Posted By nico_swd
RewriteEngine On RewriteRule...

RewriteEngine On
RewriteRule ^sig_(\d{1,11})\.png$ image.php?u=$1
Forum: vB3 Programming Discussions 08-08-2007, 06:38 PM
Replies: 9
Views: 971
Posted By nico_swd
If you use the same values you're using here, in...

If you use the same values you're using here, in your FTP client which you usually use to transfer your files... does it work?
Forum: vB3 Programming Discussions 08-08-2007, 06:21 PM
Replies: 9
Views: 971
Posted By nico_swd
This means that ftp_connect() fails and returns...

This means that ftp_connect() fails and returns false. Is your port 21? If not, specify another one in the second parameter of ftp_connect(). Does your server maybe have another FTP subdomain such as...
Forum: vB3 Programming Discussions 08-08-2007, 02:24 PM
Replies: 6
Views: 783
Posted By nico_swd
What is "top10"?

What is "top10"?
Forum: vB3 Programming Discussions 08-08-2007, 02:21 PM
Replies: 6
Views: 908
Posted By nico_swd
You have to unescape the quotes. $array =...

You have to unescape the quotes.

$array = unserialize(stripslashes($array));



Also, if you don't get an array, set error reporting to E_ALL to see where the error lays.
...
Forum: vB3 Programming Discussions 08-08-2007, 02:16 PM
Replies: 4
Views: 1,633
Posted By nico_swd
I can't answer any of those questions. I've never...

I can't answer any of those questions. I've never used it. I just remembered it 'cause a friend of mine made it. Just try it out... Or ask in the thread above.
Forum: vB3 Programming Discussions 08-08-2007, 11:30 AM
Replies: 6
Views: 908
Posted By nico_swd
I'm under the impression that...

I'm under the impression that $find_monster['m_equipment'] is a serialized array. So you could do something like this to work way easier with it.

$find_equipment =...
Forum: vB3 Programming Discussions 08-08-2007, 11:24 AM
Replies: 4
Views: 1,633
Posted By nico_swd
You mean like this? ...

You mean like this?

https://vborg.vbsupport.ru/showthread.php?t=128587
Showing results 1 to 25 of 171

 
Forum Jump

All times are GMT. The time now is 12:16 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03448 seconds
  • Memory Usage 2,042KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (15)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete