News:

Click here for Toll-Free Service for your business starting at $2.00 per month

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - Jrrwizard

#1
Support Requests / Joomla Installer Error
August 11, 2006, 06:36:30 PM
I have installed Joomla seemingly successfully and everything works except for the installers. I am unable to install any new components, modules, mambots, templates or anything else! This is very frustrating as I cannot even install it manually.

I have tried everything and no, there is not a zip inside a zip of what I am trying to install. I have installed the joomla system multiple times, everytime I get the same error in the installers! Here is a screenshot:



Thanks for your help!

-JWiz
#2
Hey everyone,

I figure since there is a contest regarding this it can be answered fast. The problem lies in my user system. When I ( or any user) logs in they experience errors, I'm guessing regarding cookies but I'm no good with php :P.

Heres what I get:

Warning: session_register(): Cannot send session cache limiter - headers already sent (output started at /home/jim/public_html/index.php:5) in /home/jim/public_html/mem_index.php on line 6

-In one section and then two more in another (all on same page, just different areas on the page)

Warning: Cannot modify header information - headers already sent by (output started at /home/jim/public_html/index.php:5) in /home/jim/public_html/check_member.php on line 40

Warning: Cannot modify header information - headers already sent by (output started at /home/jim/public_html/index.php:5) in /home/jim/public_html/check_member.php on line 43


Here are the files in question by the errors

Checkmember.php
<?

   include ("admin/authconfig.php");

   if (isset($_COOKIE['LMUSERNAME']) && isset($_COOKIE['LMPASSWORD']))
    {
        // Get values from superglobal variables
        $USERNAME = $_COOKIE['LMUSERNAME'];
        $PASSWORD = $_COOKIE['LMPASSWORD'];

        $CheckSecurity = new auth();
        $check = $CheckSecurity->page_check($USERNAME, $PASSWORD,$dbhost,$dbusername,$dbpass,$dbname);

$connection = mysql_connect($dbhost, $dbusername, $dbpass);
$SelectedDB = mysql_select_db($dbname);
$result0=mysql_query("SELECT signup from authuser where uname='$USERNAME' and reg_validate=1 and status=1");
while($row = mysql_fetch_array($result0, MYSQL_NUM)) {
$v=$row[0];
}
if($v=='1') {
$query = "SELECT access_name FROM authaccess WHERE signup=1";
}
else {
$query = "SELECT access_name FROM memberaccess WHERE uname='$USERNAME'";
}
$result = mysql_query($query) or die("Query failed : " . mysql_error());

//get group_name value
$i=0;
while ($thisrow=mysql_fetch_row($result))  //get one row at a time
{
$gname="access_".$i;
setcookie ($gname, $thisrow[0]);
$i++;
  }
setcookie ("access_num", $i);

mysql_free_result($result);
  mysql_close($connection);

    }
    else
    {
        $check = false;
    }

if ($check == false)
{

echo "<META http-EQUIV='Refresh' content='0; URL=$url_root/login.php'>";
exit;
}


function getip() {
if (getenv(HTTP_X_FORWARDED_FOR)) {
$ip=getenv(HTTP_X_FORWARDED_FOR);
}
else {
$ip=getenv(REMOTE_ADDR);
}
return $ip;
}
?>


Index.php
<HTML>
<HEAD><link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<TITLE>[+] - JimsResource Version 4.0 - [+]</TITLE>
<style type="text/css">
<!--
@import url("style.css");
.style13 {color: #CCCCCC}
.style24 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
}
-->
</style>
</HEAD>


Please let me know if it could be a problem elsewhere? But it looks like the problem is in the css style and that doesn't make any sense to me. I tried almost everything regarding session starts and all that. Please help me as soon as possible  ;D

Thanks a lot!
-JWiz