Welcome to PHP-Nuke   Professional Content Management System - Official Website
 the future of the web...


  Main Menu
· Home
· AvantGo
· Club
· Commercial License
· Community
· Downloads
· FAQ
· Feedback
· PHP-Nuke 8.1
· PHP-Nuke_HOWTO
· Private_Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Top
· Topics
· Your_Account
· Downloads

  Who is Online
There are currently, 248 guest(s) and 1 member(s) that are online.

You are Anonymous user. You can register for free by clicking here

PHP-Nuke 8.1 FINAL Released

PHP-Nuke version 8.1 has been released. Preferences administration system has been totaly re-written and reorganized, added BB2Nuke forums 2.0.21, added AutoTheme GPL edition, several security fixes, added more variables check on few modules, fixed several bugs in Topics module, added referers in abridge or unabridge modes, added function to let administrators decide if the users can change the theme or not and many more.


IF YOU ARE AN AUTHOR

“NOW YOU CAN SELL YOUR OWN MODULES, THEMES, TEMPLATES, BLOCKS, AND SO ON, THROUGH PHPNUKE STORE” CONTACT US IN SALESPHPNUKE@GMAIL.COM

New version

New version of PHPnuke 9.0 will be available soon.

Your opinion is really important! Do not forget to give us your opinion about PHPnuke at our suggestions box.

Click here to submit your opinion




 
  PHP-Nuke Themes Themes: Free PHP-Nuke Themes

astalavistabd writes "PHPNuke-Downloads has more than 300+ free phpnuke themes. You can download all these php-nuke templates without registration. Themes includes flash phpnuke theme, clan/gaming phpnuke theme and many more.

Download free phpnuke theme
"
 
 
  Posted by nukelite on Tuesday, July 15 @ 06:19:15 CDT (1376 reads)
(Read More... | Themes | Score: 4.54)
 

 
  PHP-Nuke Addons Addons: View Members by Months Module Released

xia writes "
I've made an admin module that can let you view members by months.



"
 
 
  Posted by nukelite on Tuesday, July 15 @ 06:18:23 CDT (415 reads)
(Read More... | Addons | Score: 0)
 

 
  PHP-Nuke Themes Themes: Business Theme for PHP-Nuke ver 8.0 w/PSD

drakken20 writes "I have available a new theme for PHP-Nuke ver 8.0.
It is 14.99 .

It is a business or corporate theme.

Complete with PSD file for you to edit and modify as you need.

Designs are added weekly for the most part...

Check it out at this link

The site is a work in progress as I am writing the frontend of the script and using the Digicommerce Admin for the administration. and still may have bugs.

Thanks for your time."
 
 
  Posted by nukelite on Tuesday, July 15 @ 06:16:07 CDT (434 reads)
(Read More... | Themes | Score: 0)
 

 
  PHP-Nuke Themes Themes: Nuke Theme Browser 2

maqrox writes "
Nuke Theme Browser version 2 Beta is now avaliable for download!

New in version 2

- Redesigned user interface
- No need to install MySQL ODBC Driver any more
- Support any of the .Net platforms 1.x or above
- Renaming of themes
- Duplicating of themes in place!
- Added a favorites folder

http://www.nukethemebrowser.com"
 
 
  Posted by nukelite on Tuesday, July 08 @ 13:29:19 CDT (725 reads)
(Read More... | Themes | Score: 0)
 

 
  PHP-Nuke Themes Themes: New PHP Nuke themes for ver 8.0

drakken20 writes "I have available several PHP-Nuke themes for ver 8.0.

They are all original and include the PSD file for Adobe Photoshop CS2 for easy editing and remaking to your needs.

There are also templates that are PSD file only for Adobe Photoshop CS2 . They can be used for making themes for anything you need.

You can browse my store by going to CCentral.net .

Also, you can view my themes live by clicking here and selecting the theme from the dropdown box located in the top left block.

Thanks
"
 
 
  Posted by nukelite on Tuesday, July 08 @ 13:26:20 CDT (844 reads)
(Read More... | Themes | Score: 0)
 

 
  PHP-Nuke Themes Themes: Age Of Conan PHPNuke Theme 1 Released

PortalThemes writes "PortalThemes - Age of Conan PHP-Nuke Theme Released

AoC1 is a gorgeous fast loading PHPNuke Theme designed for an Age of Conan Guild site.



Preview the AoC1 theme at the PortalThemes PHPNuke Themes test site.

(Select AoC1 in the top left dropdown list.)

Includes a matching forum theme.

PSD file included for the header.



Be sure to checkout our wide selection of PHPNuke Themes at our PHPNuke Themes Site

PortalThemes.com

"
 
 
  Posted by nukelite on Wednesday, July 02 @ 12:47:57 CDT (1324 reads)
(Read More... | Themes | Score: 3.66)
 

 
  PHP-Nuke Themes Themes: 7 FREE 100% Css/xHtml themes for nuke

whitehat writes "I would like to announce a new website related to nuke.
You can find 7 free 100% css/xHtml Transitional themes.
5 of these themes handle the same layout but comes in 5 various color.
Visit www.nukecss.com
or directly goto the Theme_Gallery

"
 
 
  Posted by nukelite on Wednesday, July 02 @ 12:47:27 CDT (1016 reads)
(Read More... | 788 bytes more | Themes | Score: 3)
 

 
  PHP-Nuke Blocks Blocks: Block Create

motili writes " Hi all!
Im want create server status block with these codes

if (eregi("block-Onlineplayers.php", $PHP_SELF)) {
Header("Location: index.php");
die();
}
//set server, port and timeout information
$server = "same adress";
$portg = "7777";
$portl = "2106";
$timeout = "1";

//try to open a connection to the game and login server
$game = @fsockopen("$server", $portg, $errno, $errstr, $timeout);
$login = @fsockopen("$server", $portl, $errno, $errstr, $timeout);

//let us know if the servers are up or not
echo $game ? "" : "";
echo $login ? "" : "";

//set host, username and password for MySQL
$dbhost = "some adress";
$dbuser = "some user";
$dbpass = "some password";

//connect to MySQL or return an error
$conn = mysql_connect("$dbhost", "$dbuser", "$dbpass")
or die('Could not connect: ' . mysql_error());

//set database name
$dbname = "some database";

//select database or return an error
$dbselect = mysql_select_db("$dbname") or die ('Could not select database');

//select all records from the characters table where that character is currently online
$chars = mysql_query("SELECT online FROM characters where online='1'") or die ('Query failed: ' . mysql_error());

//count how many online characters there are
$rows = mysql_num_rows($chars);

//convert the number of online characters to a string
$count =(string)$rows;

//convert each digit in the string to a graphic
for ($i=0; $i < strlen($count); $i++) { echo(''); }

//close MySQL connection
mysql_close();

?>


Im already create the block-Onlineplayers.php and the block with administrator just the content is showing out the block and inside the block is show this:

"There isn't content right now for this block."

Also the status need to be centered in the block and the last timer code is show after the login status and need to be down after the login status.
Please help me someone.Thx "
 
 
  Posted by nukelite on Wednesday, July 02 @ 12:27:55 CDT (815 reads)
(Read More... | Blocks | Score: 3)
 

 
  PHP-Nuke Addons Addons: Fusion Security

noobified writes "We have decided to resume the fusion project and as such have added it to sourceforge. We have officially been handed the project and intent to take it further as time permits. For thos interested in helping with development head over to sourceforge and check it out.

Fusion Security

We intent to make fusion available to a large selection of nuke distro's including php-nuke 7.6 through to 8.1, all the patched series, raven nuke and nuke evolution.

"
 
 
  Posted by nukelite on Wednesday, July 02 @ 12:27:06 CDT (803 reads)
(Read More... | 7127 bytes more | Addons | Score: 3)
 

 
  PHP-Nuke Addons Kose Yazilari 5.0

mutluedin writes "Good news for Turkish Nukers. I've released new version of Kose Yazilari module. The new version of this module is for PhpNuke 8.1 patched 3.4. Please download it: http://www.bankaciyiz.biz/modules.php?name=Downloads&d_op=getit&lid=795
See it in action: http://www.bankaciyiz.biz/modules.php?name=Kose_Yazilari
For help: http://www.bankaciyiz.biz/modules.php?name=Forums&file=viewforum&f=58"
 
 
  Posted by nukelite on Wednesday, June 25 @ 07:00:51 CDT (1303 reads)
(Read More... | 678 bytes more | Score: 0)
 

  Site Stats
Total Page Views
190,756,490

Montly Page Views
2,218,668

Total Registered Users
181,082

PHP-Nuke's Downloads
8,347,643

Real Time Updated

  Categories
· All Categories
· Addons
· Blocks
· Hosting
· Languages
· Questions
· Themes
· YANS

  Surveys
Would you like to see Mac OS X for PC?

Yes
No



Results
Polls

Votes 14529

  Big Story
There isn't a Biggest Story for Today, yet.

  User's Login
Nickname

Password

Security Code: Security Code
Type Security Code

Don't have an account yet? You can create one. As a registered user you have some advantages like theme manager, comments configuration and post comments with your name.

  Past Articles
Wednesday, June 25
· ABC Tagboard: New block messenger for php-nuke
· Dark Metal Red PHPNuke Theme released!
· Vea Theme For Php Nuke
Wednesday, June 18
· PHP Nuke In Indonesia.
· Multiheadlines 2.1 for PHP-Nuke - Web based agreggator AND generator
· Block forum centers phpBB 3
Tuesday, June 10
· MD Themes
· Lobo Links Free Submissions for Phpnuke Sites
· DD-Focus Evo Nuke Theme
· News Themes for PHP-Nuke with forum phpBB3
· Free WoW Burning Crusade Theme
· Http Blacklisting
· Sales-n-Stats 2.1 released
· Release of IV-Distinct
· Ts Contact 1.0 Multilanguage
· Age of Conan PHPNuke theme released!
Saturday, May 24
· Ts Gallery 1.0
· NukeFace V3 Released!
· FREE css themes for php-nuke
· 4 New Themes From PHP-Clans.com
· WOW and COD4 themes released
· phpBB 3.X bridge for phpnuke
Tuesday, April 22
· Feedback Resecured 1.0.6 Released Today, Update Now
· 3 New Themes Released From Clan Themes
· doctornuke's ajax shoutbox beta2 for phpnuke8.0
· Fever Theme for Phpnuke
· CSS Driven PhpNuke Theme Released
Monday, April 14
· Release of Neon Version 2
· Dynamic Keywords 1.1.0 Released, Now With Dynamic Description Support
Monday, April 07
· NM PHP Syntax Code Display Module

Older Articles


HomepageYour AccountSubmit NewsDownloadsOnline ManualCommunityCLUB Commercial License F.A.Q.
© 2000-2006 by PHPNuke.org. All Rights Reserved.
Website engine code is © copyright by PHP-Nuke.
PHP-Nuke is a free software released under the GNU/GPL
All the comments are property of their posters.
Images, logo, content and design are © copyright by PHPNuke.org. All Rights Reserved.
Powered by PHP-Nuke