Aller au contenu
Règlement du forum ×
IPTV et arnaques ×

Comment installer Vbulletin ???


A-M-A-B

Messages recommandés

pas tout a fait

 

y a des hebergeur qui autorise les script nulled

 

en plus presque tt les forum algerien utilise vbulletin sans licence ( j'en suis un )

 

voila :D

I guess, je ne vois pas un Algérien acheter la licence :D Mais trouver un hebergeur gratuit qui autorise les scripts piratés est plus dur j'imagine ..

Lien vers le commentaire
Partager sur d’autres sites

Voici un Bon Forum qui donne plus de détaille a l'installation de VB ...mais tu dois sans doute faire attention car les hébergeurs n'autorise pas des version Piraté ( machi kamel biensure ) mais je pense qu'avec PHPBB se sera miex bref voilà le lien :

http://www.vbulletin-ressources.com/forum/showthread.php?t=9716

Lien vers le commentaire
Partager sur d’autres sites

  • 2 weeks later...

<?php

/*======================================================================*\

|| #################################################################### ||

|| # vBulletin 3.7.3

|| # ---------------------------------------------------------------- # ||

|| # All PHP code in this file is ©2000-2008 Jelsoft Enterprises Ltd. # ||

|| # This file may not be redistributed in whole or significant part. # ||

|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||

|| # http://www.vbulletin.com | http://www.vbulletin.com/license.html # ||

|| #################################################################### ||

\*======================================================================*/

 

/*-------------------------------------------------------*\

| ****** NOTE REGARDING THE VARIABLES IN THIS FILE ****** |

+---------------------------------------------------------+

| If you get any errors while attempting to connect to |

| MySQL, you will need to email your webhost because we |

| cannot tell you the correct values for the variables |

| in this file. |

\*-------------------------------------------------------*/

 

// ****** DATABASE TYPE ******

// This is the type of the database server on which your vBulletin database will be located.

// Valid options are mysql and mysqli, for slave support add _slave. Try to use mysqli if you are using PHP 5 and MySQL 4.1+

// for slave options just append _slave to your preferred database type.

$config['Database']['dbtype'] = 'mysql';

 

// ****** DATABASE NAME ******

// This is the name of the database where your vBulletin will be located.

// This must be created by your webhost.

$config['Database']['dbname'] = '';

 

// ****** TABLE PREFIX ******

// Prefix that your vBulletin tables have in the database.

$config['Database']['tableprefix'] = '';

 

// ****** TECHNICAL EMAIL ADDRESS ******

// If any database errors occur, they will be emailed to the address specified here.

// Leave this blank to not send any emails when there is a database error.

$config['Database']['technicalemail'] = '';

 

// ****** FORCE EMPTY SQL MODE ******

// New versions of MySQL (4.1+) have introduced some behaviors that are

// incompatible with vBulletin. Setting this value to "true" disables those

// behaviors. You only need to modify this value if vBulletin recommends it.

$config['Database']['force_sql_mode'] = false;

 

 

 

// ****** MASTER DATABASE SERVER NAME AND PORT ******

// This is the hostname or IP address and port of the database server.

// If you are unsure of what to put here, leave the default values.

$config['MasterServer']['servername'] = 'localhost';

$config['MasterServer']['port'] = 3306;

 

// ****** MASTER DATABASE USERNAME & PASSWORD ******

// This is the username and password you use to access MySQL.

// These must be obtained through your webhost.

$config['MasterServer']['username'] = '';

$config['MasterServer']['password'] = '';

 

// ****** MASTER DATABASE PERSISTENT CONNECTIONS ******

// This option allows you to turn persistent connections to MySQL on or off.

// The difference in performance is negligible for all but the largest boards.

// If you are unsure what this should be, leave it off. (0 = off; 1 = on)

$config['MasterServer']['usepconnect'] = 0;

 

 

 

// ****** SLAVE DATABASE CONFIGURATION ******

// If you have multiple database backends, this is the information for your slave

// server. If you are not 100% sure you need to fill in this information,

// do not change any of the values here.

$config['SlaveServer']['servername'] = '';

$config['SlaveServer']['port'] = 3306;

$config['SlaveServer']['username'] = '';

$config['SlaveServer']['password'] = '';

$config['SlaveServer']['usepconnect'] = 0;

 

 

 

// ****** PATH TO ADMIN & MODERATOR CONTROL PANELS ******

// This setting allows you to change the name of the folders that the admin and

// moderator control panels reside in. You may wish to do this for security purposes.

// Please note that if you change the name of the directory here, you will still need

// to manually change the name of the directory on the server.

$config['Misc']['admincpdir'] = 'admincp';

$config['Misc']['modcpdir'] = 'modcp';

 

// Prefix that all vBulletin cookies will have

// Keep this short and only use numbers and letters, i.e. 1-9 and a-Z

$config['Misc']['cookieprefix'] = 'bb';

 

// ******** FULL PATH TO FORUMS DIRECTORY ******

// On a few systems it may be necessary to input the full path to your forums directory

// for vBulletin to function normally. You can ignore this setting unless vBulletin

// tells you to fill this in. Do not include a trailing slash!

// Example Unix:

// $config['Misc']['forumpath'] = '/home/users/public_html/forums';

// Example Win32:

// $config['Misc']['forumpath'] = 'c:\program files\apache group\apache\htdocs\vb3';

$config['Misc']['forumpath'] = '';

 

// ****** COOKIE SECURITY HASH ******

// This option allows you to encode cookie.

// You may use any latin and/or any other alphanumeric symbols.

// Leave this blank to use the default value.

// Note: if you change this all users will be logout.

$config['Misc']['cookie_security_hash'] = '';

 

 

// ****** USERS WITH ADMIN LOG VIEWING PERMISSIONS ******

// The users specified here will be allowed to view the admin log in the control panel.

// Users must be specified by *ID number* here. To obtain a user's ID number,

// view their profile via the control panel. If this is a new installation, leave

// the first user created will have a user ID of 1. Seperate each userid with a comma.

$config['SpecialUsers']['canviewadminlog'] = '1';

 

// ****** USERS WITH ADMIN LOG PRUNING PERMISSIONS ******

// The users specified here will be allowed to remove ("prune") entries from the admin

// log. See the above entry for more information on the format.

$config['SpecialUsers']['canpruneadminlog'] = '1';

 

// ****** USERS WITH QUERY RUNNING PERMISSIONS ******

// The users specified here will be allowed to run queries from the control panel.

// See the above entries for more information on the format.

// Please note that the ability to run queries is quite powerful. You may wish

// to remove all user IDs from this list for security reasons.

$config['SpecialUsers']['canrunqueries'] = '';

 

// ****** UNDELETABLE / UNALTERABLE USERS ******

// The users specified here will not be deletable or alterable from the control panel by any users.

// To specify more than one user, separate userids with commas.

$config['SpecialUsers']['undeletableusers'] = '';

 

// ****** SUPER ADMINISTRATORS ******

// The users specified below will have permission to access the administrator permissions

// page, which controls the permissions of other administrators

$config['SpecialUsers']['superadministrators'] = '1';

 

// ****** DATASTORE CACHE CONFIGURATION *****

// Here you can configure different methods for caching datastore items.

// vB_Datastore_Filecache - to use includes/datastore/datastore_cache.php

// vB_Datastore_APC - to use APC

// vB_Datastore_XCache - to use XCache

// vB_Datastore_Memcached - to use a Memcache server, more configuration below

// $config['Datastore']['class'] = 'vB_Datastore_Filecache';

 

// ******** DATASTORE PREFIX ******

// If you are using a PHP Caching system (APC, XCache, eAccelerator) with more

// than one set of forums installed on your host, you *may* need to use a prefix

// so that they do not try to use the same variable within the cache.

// This works in a similar manner to the database table prefix.

// $config['Datastore']['prefix'] = '';

 

// It is also necessary to specify the hostname or IP address and the port the server is listening on

/*

$config['Datastore']['class'] = 'vB_Datastore_Memcached';

$i = 0;

// First Server

$i++;

$config['Misc']['memcacheserver'][$i] = '127.0.0.1';

$config['Misc']['memcacheport'][$i] = 11211;

$config['Misc']['memcachepersistent'][$i] = true;

$config['Misc']['memcacheweight'][$i] = 1;

$config['Misc']['memcachetimeout'][$i] = 1;

$config['Misc']['memcacheretry_interval'][$i] = 15;

*/

 

// ****** The following options are only needed in special cases ******

 

// ****** MySQLI OPTIONS *****

// When using MySQL 4.1+, MySQLi should be used to connect to the database.

// If you need to set the default connection charset because your database

// is using a charset other than latin1, you can set the charset here.

// If you don't set the charset to be the same as your database, you

// may receive collation errors. Ignore this setting unless you

// are sure you need to use it.

// $config['Mysqli']['charset'] = 'utf8';

 

// Optionally, PHP can be instructed to set connection parameters by reading from the

// file named in 'ini_file'. Please use a full path to the file.

// Example:

// $config['Mysqli']['ini_file'] = 'c:\program files\MySQL\MySQL Server 4.1\my.ini';

$config['Mysqli']['ini_file'] = '';

 

// Image Processing Options

// Images that exceed either dimension below will not be resized by vBulletin. If you need to resize larger images, alter these settings.

$config['Misc']['maxwidth'] = 2592;

$config['Misc']['maxheight'] = 1944;

 

/*======================================================================*\

|| ####################################################################

|| # CVS: $RCSfile$ - $Revision: 26534 $

|| ####################################################################

\*======================================================================*/

 

 

 

 

alors ??????? comment en fait ????

Lien vers le commentaire
Partager sur d’autres sites

je pense que si tu aurai pris 5 minute de ton temps a lire ce qu'il y a dedans tu aurai compris facilement ! je te conseille de lire bien et Configuré

 

// ****** MASTER DATABASE SERVER NAME AND PORT ******

// This is the hostname or IP address and port of the database server.

// If you are unsure of what to put here, leave the default values.

$config['MasterServer']['servername'] = 'IP address de ton db server';

$config['MasterServer']['port'] = 3306;

 

// ****** MASTER DATABASE USERNAME & PASSWORD ******

// This is the username and password you use to access MySQL.

// These must be obtained through your webhost.

$config['MasterServer']['username'] = 'TON USER NAME DE DB';

$config['MasterServer']['password'] = 'PASSWORD';

 

// ****** DATABASE NAME ******

// This is the name of the database where your vBulletin will be located.

// This must be created by your webhost.

$config['Database']['dbname'] = 'Nom de la db';

 

j'ai pas installer des forum vbulletin avant mais a premier vu c'est sa le problème .

par contre c'est bizar que vBulletin on pas un script d'installation o.o

Lien vers le commentaire
Partager sur d’autres sites

  • 10 months later...

Rejoindre la conversation

Vous pouvez publier maintenant et vous inscrire plus tard. Si vous avez un compte, connectez-vous maintenant pour publier avec votre compte.

Invité
Répondre à ce sujet…

×   Collé en tant que texte enrichi.   Coller en tant que texte brut à la place

  Seulement 75 émoticônes maximum sont autorisées.

×   Votre lien a été automatiquement intégré.   Afficher plutôt comme un lien

×   Votre contenu précédent a été rétabli.   Vider l’éditeur

×   Vous ne pouvez pas directement coller des images. Envoyez-les depuis votre ordinateur ou insérez-les depuis une URL.

  • Messages

    • A Roadside Car First Aid Kit is an essential safety item for every vehicle owner. It equips drivers and passengers with the necessary tools to handle minor injuries or emergencies that may occur while traveling. The first moments after an accident or sudden health issue can be critical, and having the right supplies on hand can make a significant difference. Yonoel First Aid offers a reliable Roadside Car First Aid Kit designed to provide comprehensive support during such times. Yonoel First Aid specializes in producing well-organized kits that include a variety of medical essentials such as bandages, antiseptics, gauze, and other supplies necessary for immediate treatment. These kits are compact, portable, and easy to store within the vehicle, ensuring quick access when needed. With attention to quality and durability, Yonoel ensures their products meet international safety standards, giving users confidence in their reliability. The benefits of carrying a first aid kit go beyond immediate wound care. Roadside emergencies can be unpredictable, ranging from cuts and burns to allergic reactions or shock. Being prepared helps reduce panic and provides a systematic way to address these situations until professional help arrives. This preparedness is especially important for long-distance travelers or those driving in remote areas. In addition to basic medical supplies, a complete roadside first aid kit often includes tools such as gloves, scissors, safety pins, and instructional guides to assist untrained individuals in delivering first aid effectively. The Yonoel Roadside Car First Aid Kit is designed with these considerations, providing a practical and thorough solution for motorists seeking peace of mind. For those interested in equipping their vehicles with a dependable safety kit, more information and product options can be found by visiting Yonoel First Aid's product section at https://www.yonoelfirstaid.com/product/roadside-emergency-kit/ .
    • A First Aid Bag is an indispensable item for ensuring safety and preparedness in various settings. Whether at home, in the workplace, or on the road, having a well-stocked first aid bag allows individuals to respond promptly to injuries and emergencies. It provides essential medical supplies to address common injuries such as cuts, burns, sprains, and other minor medical issues. By having a first aid bag readily available, individuals can administer immediate care before professional medical help arrives, potentially preventing complications and promoting quicker recovery. Yonoel First Aid is a reputable manufacturer specializing in producing high-quality first aid bags and kits. Their products are designed to meet international standards, ensuring reliability and effectiveness in emergency situations. Yonoel offers a wide range of first aid bags tailored to different needs and environments. Whether it's a compact kit for personal use or a comprehensive bag for workplaces and vehicles, Yonoel provides solutions to suit various requirements. Each product is meticulously assembled with essential medical supplies, organized for easy access during emergencies. The versatility of Yonoel's first aid bags makes them suitable for diverse applications. For instance, the Home & Office Family First Aid Kit is designed to address common household injuries, while the Outdoor Survival First Aid Kit caters to the needs of adventurers and outdoor enthusiasts. Additionally, the Tactical First Aid Kit is equipped to handle more severe injuries, making it suitable for military personnel and emergency responders. Each bag is organized with clearly labeled compartments, ensuring quick and easy access to the necessary supplies during an emergency. To explore the full range of first aid bags and kits, visit the product section of Yonoel First Aid's website at https://www.yonoelfirstaid.com/product/ .
    • Salam, Quel logiciel PC utiliser pour de l'IPTV avec timeshifting/replay/catch-up/start-over? J'ai essayé DVBViewer et ProgDVB. Ils marchent bien, mais ils ne semblent pas gérer le déplacement sur la timeline, je ne peux que visionner en direct. Pas possible de reprendre une émission depuis le début, ni de visionner une émission passée. Pourtant mon fournisseur IPTV offre cette possibilité, et à la télé, avec TiviMate, je peux revenir en arrière, reprendre une émission depuis le début, revisionner une émission passée. Mais sur PC, je ne peux pas. Avez-vous des suggestions de logiciels pour PC Windows, avec une interface sympa, qui offre ces possibilités, et qui prenne en charge aussi les films et les séries présentes dans la playlist de mon fournisseur de contenu ? Merci ! 😉
    • Salem, est ce que vous l'avez fait l'inscription ? je cherche moi aussi à faire un inscription pareille et je veux confirmer si c possible. merci d'avance .
    • Même en ADSL l'iptv peut bien fonctionner sans lags à partir de 8Mbps de débit  sans VPN. Il faut juste avoir un bon fournisseur , une bonne application et utiliser du code Stalker (URL+MAC) au lieu du m3u. Sous Android je recommande l'application OTT Navigator (disponible sur le Play Store en gratuit) , elle gère tous les codes (m3u ,xtream,Stalker) , elle a beaucoup d'options et n'est pas sensible aux fluctuations de l'ADSL. Je la trouve plus intéressante que Tivimate qui en gratuit est très (trop) basique,...j'allais dire avare .
×
×
  • Créer...