161
xsell
Re: Admin page Not found 2.3.3
  • 2009/3/16 1:30

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


Well Every Horse has a Fall ...



162
xsell
Re: Admin page Not found 2.3.3
  • 2009/3/16 1:27

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


Did you update the system module via the Module Cpanel?

Yes>>

or try changing Admin GUI to another one?

I did and they work except legacy ..

I have reported this bug since XOOPS 2.3.3rc i have wrote a comment about it when the RC copy was released .. sorry i should reported it direct to bug traker but i thought it just my explorer .. but Now after i changed the legacy theme to another theme . the problem gone



163
xsell
Re: Admin page Not found 2.3.3
  • 2009/3/16 1:24

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


i have updated the post .. the bug is with legacy theme with the file 'cp_functions.php' because i replaced it with the old one from 2.3.2b and it works very well.. and for ur quastion Yah other themes works ok it just if i use legacy theme.. other themes works Ok not problem ..



164
xsell
Admin page Not found 2.3.3
  • 2009/3/16 0:59

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


Hello
i have just done upgrading from 2.32 to 2.33 . i have problem when i go to the admin page it says page not found . the admin file there the system module there . but i get This program cannot display the web page.. this with Explorer 7 i tried to log in from FireFox and i had no problem i signed to the admin did different stuff without problem but with explorer 7 i get error 'This program cannot display the web page' and i cant use the admin page .its strange . with FireFox there no problem accessing the admin page it just the Explorer 7 shown the error .
i have disabled and uninstalled protector but it didt help . i have deleted all the files but the mainfile.php and uploaded Fresh files and i still have the problem , i have upgraded the MySQL and still have the problem . when i remove the system module and upload the old One from 2.32 , the error gone and i can log in to the admin page .

By the way i did empty the cash folders ..

Update :

i have replaced the file 'cp_functions.php' modules/system/class/gui/legacy/cp_functions.php

from XOOPS 2.3.3 with the one from XOOPS 2.3.2b and it works i can log to the admin page now with explorer 7 .. so its Clear the problem with the file 'cp_functions.php' ..

I use Legacy theme for me XOOPS site .. so the bug is with legacy theme ..

Hope it could be solved soon



165
xsell
Audio Module Except Debaser
  • 2009/3/11 3:51

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


Hello

Debaser seems good module but the update and support for the module seemd Dead ,is there any other Audio Module .. Audio not Video.

Thx



166
xsell
Re: How to Create Php Block?
  • 2009/3/8 3:57

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


thx trabis , i have used membership module before , it just the huge database that i have to install into XOOPS database wht made me uninstall it .. i use cron job back up script to back up my database and with membership module installed it makes the backup fails sometime .. the above file i use for online users is depand script i could use iframe code to include it block , but it didt look good ..



167
xsell
Re: How to Create Php Block?
  • 2009/3/7 21:58

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


Hey ..

just embty block and some block even stopped working after do wht u said ..the right thing to do is to make a module and add the file as block .. but i dont want star now learn php .. hope some one can make it for me i can include the sql file it just two tabels.



168
xsell
How to Create Php Block?
  • 2009/3/7 10:54

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


Hello

I did My Homework and Searched how to Add Php Code as Block , but all my trys fail .. . the php code i have it works when i run it from my site as www.sitename.com/file.php

But if i add the content as block from the admin panel i get white page or nothing shown on the block ..

This php file is small script to Show online users , it need Database , but i have it Seprate from XOOPS MySQL , i dont want this script share my XOOPS database but i want it to run from XOOPS as block .. is there any way ..

Oh by the way i can run it if i use IFRAME code to add the block as Html but iframe look ugly ..

idid add the block as php file but it didt do and thing just nothing in the block ..
<? 


////////////////////////////////

//Database settings
$server "localhost";
$db_user "user";
$db_pass "pass";
$database "db";
$dbh mysql_connect($server$db_user$db_pass);
// don't change settings below
$table "useronline";
//Connect DB
mysql_connect($server$db_user$db_pass);
//Select DB
mysql_select_db($database$dbh);


//Fetch Time 
$timeoutseconds 10;
$timestamp time(); 
$timeout $timestamp $timeoutseconds

//Delete User 
mysql_db_query($database"DELETE FROM $table WHERE ip='$_SERVER[REMOTE_ADDR]'") or die("Cannot connect to the database");
mysql_db_query($database"DELETE FROM $table WHERE timestamp<$timeout") or die("Cannot connect to the database");


//Insert User 
$ip =  $_SERVER['REMOTE_ADDR']; 
$insert mysql_db_query($database"INSERT INTO $table VALUES 
('
$timestamp','$ip','$PHP_SELF')") or die("Cannot connect to the database");  

//Fetch Users Online 
$result mysql_db_query($database"SELECT DISTINCT ip FROM $table WHERE file='$PHP_SELF'") or die("Failed!"); 
$users mysql_num_rows($result); 

// Compare IP's found in the database
while ($row mysql_fetch_array($result)) {
   
$country_query 
   SELECT country2 
   FROM iptocountry 
   WHERE ipfrom < INET_ATON("'
.$row['ip'].'") 
   ORDER BY ipfrom DESC 
   LIMIT 0,1'


   
//Set country code in array 
   
$country_exec mysql_query($country_query); 
   
$ccode_array=mysql_fetch_array($country_exec); 
   
$country_code=$ccode_array['country2'];

 
//Change to lowercase
 
$country_code strtolower($country_code); 
 
 
// Cut IP's
 
$line substr("$row[ip]",0,5);

 
// Addind xx and <br>
 
$showip chunk_split($line,30,".xx.xx &nbsp;n");
 echo 
"<br />n";

 
// spit out the results (ip.xx flag)
 
echo "$showip</a> <img src='flags/$country_code.png' border ='no'></a>n";
}
echo 
"<br />n";
echo 
"Online $users User(s)n";

// Close DB 
mysql_close($dbh); 
?>



169
xsell
Re: copyrights removal
  • 2009/3/5 2:07

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


Thx for reply.

Someone Made a paid theme for me and he was such of worry of his copyright so he stuck it where i used to have xooops copyright . and he moved XOOPS copyright in another place in theme . which i dont like . so i either remove it from there or make him edit the theme , which he might ask extra money for the edit . he offered my only 2 days for support after receiving the theme and the two day had passed .already.



170
xsell
copyrights removal
  • 2009/3/5 1:41

  • xsell

  • Quite a regular

  • Posts: 245

  • Since: 2008/9/2 1


wht is the cost of removing XOOPS copyright? how much it cost where to buy?




TopTop
« 1 ... 14 15 16 (17) 18 19 20 21 »



Login

Who's Online

156 user(s) are online (100 user(s) are browsing Support Forums)


Members: 0


Guests: 156


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits