Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Downloads (http://www.bvlist.com/forumdisplay.php?f=16)
-   -   CodeX Installer v4 (http://www.bvlist.com/showthread.php?t=1203)

Strikey 10th April 2009 05:23

Great Source
 
As far as i can see this is a great source, the only problem that i have is that if i set something on the site, for example the theme or turn the shout off or even if i log off on some pages it will be there and some pages it will not it doesn't work correctly unless i cleare my cache everytime may i have some assistance on this.

XxBraveGuyxX 12th April 2009 05:49

For some reason takelogin.php wont work...

as soon i try to login i get a huge error...

Code:

Warning: is_file() [function.is-file]: open_basedir restriction in effect. File(/usr/local/apache/htdocs/dictbreaker/21b1fee3321bfbac73542e0b2f0747998e0eb86d) is not within the allowed path(s): (/home/:/usr/lib/php:/tmp) in /home/a7726278/public_html/takelogin.php on line 6


PHP Error Message
Warning: fopen() [function.fopen]: open_basedir restriction in effect. File(/usr/local/apache/htdocs/settings/STAFFNAMES) is not within the allowed path(s): (/home/:/usr/lib/php:/tmp) in /home/a7726278/public_html/include/bittorrent.php on line 258


PHP Error Message
Warning: fopen(/usr/local/apache/htdocs/settings/STAFFNAMES) [function.fopen]: failed to open stream: Operation not permitted in /home/a7726278/public_html/include/bittorrent.php on line 258


and it continues.......any idea wats wrong....here is a website take a look ...testingfortorrent.netii.net

KiD 12th April 2009 10:26

...
 
have you traid this:

http://bvlist.com/5602-post8.html

thereal 12th April 2009 10:39

Code:

Warning:  mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /home/content/m/a/r/marselt/html/beta/takelogin.php on line 36

Warning:  Missing argument 1 for bark(), called in /home/content/m/a/r/marselt/html/beta/takelogin.php on line 47 and defined in /home/content/m/a/r/marselt/html/beta/takelogin.php on line 23


I get this error screen, whats wrong?

brysf150 12th April 2009 23:14

Quote:

Originally Posted by naspoli (Post 10554)
I have the same problem. How to fix?


thanks guys! :drink:



for new staff add them to STAFFNAMES and STAFFIDS in /settings


Quote:

Originally Posted by thereal (Post 10741)
Code:

Warning:  mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /home/content/m/a/r/marselt/html/beta/takelogin.php on line 36

Warning:  Missing argument 1 for bark(), called in /home/content/m/a/r/marselt/html/beta/takelogin.php on line 47 and defined in /home/content/m/a/r/marselt/html/beta/takelogin.php on line 23


I get this error screen, whats wrong?


on takelogin.php replace

Code:

function bark($text)
{
print("Error!");
print("
");
print("

Error:

" . htmlspecialchars($text) . "

");
print("
");
print("
");
die;
}

with

Code:

function bark($text = "Username or password incorrect")
{
  stderr("Login failed!", $text);
}


thereal 12th April 2009 23:52

Quote:

Originally Posted by brysf150 (Post 10754)
for new staff add them to STAFFNAMES and STAFFIDS in /settings





on takelogin.php replace

Code:

function bark($text)
{
print("Error!");
print("
");
print("

Error:

" . htmlspecialchars($text) . "

");
print("
");
print("
");
die;
}

with

Code:

function bark($text = "Username or password incorrect")
{
  stderr("Login failed!", $text);
}



but now it takes me to a blank screen after login?

Strikey 13th April 2009 01:09

try removing the htaccess file and can somebody please respond to my previous post

Bigjoos 14th April 2009 13:11

Installer
 
If you get a bit code in the installer causing issue replace it with default code from 01.01.08 , thats the core of the installer - If your getting issues and dont understand how to work with the maxcoder function then comment the function out on bittorrent.php and then comment out all the

Code:

maxcoder():
Thats on every file and thats it job done no more banned for unauthorized staff :)

@strikey thats simply a cache issue - the stdhead and stdhead files need - pragma no cache added - i know that because as the installer sits at an advanced stage it works perfect with IE FF3 ect now no problems.

@xxthebraveguyxx - Free Web Hosting
PHP Error Message
Warning: fopen() [function.fopen]: open_basedir restriction in effect.

Your told and clearly instructed on readme to use on a dedicated server only not even shared - are you suprised.

All the versions of this code thats out there are old now - all posted issues were resolved ages ago.

starisloven 15th April 2009 09:37

How to disable PIN code when logging in, or to remain only during the verification of registration? Also interested in me that I can be set to the registration is only through invitation?

brysf150 20th April 2009 06:58

On login.php remove

PHP Code:

<script type="text/javascript" src="captcha/captcha.js"></script> 

and
PHP Code:

  <tr>
    <td>&nbsp;</td>
    <td>
      <div id="captchaimage">
      <a href="<?php echo $_SERVER['PHP_SELF']; ?>" onclick="refreshimg(); return false;" title="Click to refresh image">
      <img class="cimage" src="captcha/GD_Security_image.php?<?php echo time(); ?>" alt="Captcha image is messed atm" />
      </a>
      </div>
     </td>
  </tr>
  <tr>
      <td class="rowhead">PIN:</td>
      <td>
        <input type="text" maxlength="6" name="captcha" id="captcha" onBlur="check(); return false;"/>
      </td>
  </tr>

and on takelogin.php change

PHP Code:

if (!mkglobal("username:password:captcha"))
    die();
    
session_start();
  if(empty(
$captcha) || $_SESSION['captcha_id'] != strtoupper($captcha)){
      
header('Location: login.php');
      exit();


to

PHP Code:

if (!mkglobal("username:password"))
    die();
    
session_start(); 



All times are GMT +2. The time now is 14:25.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.