PHP-Nuke Titanium HQ
     
Lonestar Nuke-Evolution Modules
PHP-Nuke Titanium v4.0.4 / PHP v8.2.17
Sponsor Tron for PHP-Nuke Titanium
::: There is so much more here to see, it takes 30 seconds to register an account and we don't even verify with e-mail! Just register we promise you won't be sorry... ::: Login or Register
IPHub is an IP lookup website featuring Proxy/VPN detection. A free API is available, so you can perform fraud checks on online stores, detect malicious players on online games and much more! Look at this! Click here Look at this! to sign up for FREE today at ipHub ::: Country Music: The Soul Circus Cowboys ::: Sponsor: Brandon Maintenance Management, LLC Phone: 813-846-2865 ::: Sponsor: Big Country Radio - The EJ Morning Show :::

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 268

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 268

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 268

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 268

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 276

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 276

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 268

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 268

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 268

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 268

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/includes/auth.php on line 328

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/modules/Forums/viewtopic.php on line 406

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/modules/Forums/viewtopic.php on line 536

Warning: Undefined array key "session_logged_in" in /home/dev4/public_html/modules/Forums/viewtopic.php on line 788

Warning: Undefined array key "session_id" in /home/dev4/public_html/includes/functions.php on line 1015

 
Recent Topics   Next 5 >>  
Forum Replies Last Post
Oh yes ! Now here is some Northern fried wierd shit! 💩
Started by RECTOR
PHP-Nuke Titanium - Modules (Root) 13 Thu Oct 26, 2023 5:33 pm
by Technocrat
What year is it!?
Started by Technocrat
PHP-Nuke Titanium - Community 0 Thu Oct 26, 2023 5:05 pm
by Technocrat
Dragonfly
Started by Critical
PHP-Nuke Titanium - Community 2 Thu Apr 20, 2023 6:50 am
by Critical
Can you PM me the private link to the PHP 9 Repo
Started by YuckFou
PHP-Nuke Titanium - PHP 1 Tue Apr 18, 2023 11:08 am
by CodeBuzzard
Your_Account Module question?
Started by CyBorg
PHP-Nuke Titanium - Modules (Root) 1 Thu Apr 06, 2023 7:39 am
by Negan

PHP-Nuke Titanium Installer problem!
Post new topic Reply to topic printer-friendly view List users that have viewed this topic Thank Post   Forum Index PHP-Nuke Titanium - MariaDB
View previous topic View next topic
CyBorg Reply with quote
Developer
Developer
Joined Oct 15, 2022
Reputation: 17.9
votes: 1
online
PHP-Nuke Titanium Installer problem!
by CyBorg Thu Oct 20, 2022 3:34 pm


  • When you run the install it keeps setting the user to 22 instead of 2.
  • It is not setting the default home module.
  • We need a string check on Sitename so that if there is an apostrophe it fixes it without the manual need for escape characters.
  • I also assume we need this for Slogan as well.


NOTE: MariaDB allows '' for escaping, unlike Postgres!

When you install it creates a MySQL error for the user groups because there is no user 2

That is because all the user groups have the admin set to user #2

Change the function in the installer

goto function validate_admin()

Where it inserts the info for the admin it is probably using NULL for the user id number hoping that auto-increment does its job.

Find where it inserts value for the admin and change NULL to 2

I'm still going over all the files making sure we do not have any errors for the final release date.



Back to top
View user's profile Send CyBorg a private message
Thankful People
2 user(s) is/are thankful for this post.
TheGhost Reply with quote
Administrator
Developer
VIP Member
Joined Aug 23, 2022
Reputation: 15.1
votes: 3
online
PHP-Nuke Titanium Installer problem!
by TheGhost Thu Oct 20, 2022 6:56 pm

— CyBorg

  • When you run the install it keeps setting the user to 22 instead of 2.
  • It is not setting the default home module.
  • We need a string check on Sitename so that if there is an apostrophe it fixes it without the manual need for escape characters.
  • I also assume we need this for Slogan as well.


NOTE: MariaDB allows '' for escaping, unlike Postgres!

When you install it creates a MySQL error for the user groups because there is no user 2

That is because all the user groups have the admin set to user #2

Change the function in the installer

goto function validate_admin()

Where it inserts the info for the admin it is probably using NULL for the user id number hoping that auto-increment does its job.

Find where it inserts value for the admin and change NULL to 2

I'm still going over all the files making sure we do not have any errors for the final release date.


I fixed everything and just finished the commit. It's on the distro and I will create a release tonight as well.

Thanks CyBorg


Back to top
View user's profile Send TheGhost a private message Send TheGhost an email. Visit user's website Visit user's Facebook: ernest.buffington.1
Sponsor
CodeBuzzard Reply with quote
Developer
Developer
VIP Member
Joined Aug 28, 2022
Reputation: 28.7
votes: 3
online
PHP-Nuke Titanium Installer problem!
by CodeBuzzard Thu Oct 20, 2022 7:06 pm

— CyBorg

  • When you run the install it keeps setting the user to 22 instead of 2.
  • It is not setting the default home module.
  • We need a string check on Sitename so that if there is an apostrophe it fixes it without the manual need for escape characters.
  • I also assume we need this for Slogan as well.


NOTE: MariaDB allows '' for escaping, unlike Postgres!

When you install it creates a MySQL error for the user groups because there is no user 2

That is because all the user groups have the admin set to user #2

Change the function in the installer

goto function validate_admin()

Where it inserts the info for the admin it is probably using NULL for the user id number hoping that auto-increment does its job.

Find where it inserts value for the admin and change NULL to 2

I'm still reviewing all the files to ensure we do not have any errors for the final release date.


Dude, you have a memory like an elephant!

Everything is running smooth enough that I think I will set up my live site now. I'm pretty happy with the speed and results.

This site is very responsive and the load time is amazing for the amount and size of the graphics.

Ghost did a great Job.

Thank you for helping Cyborg


Back to top
View user's profile Send CodeBuzzard a private message
Display posts from previous:

Post new topic Reply to topic printer-friendly view List users that have viewed this topic Thank Post   Forum Index PHP-Nuke Titanium - MariaDB All times are UTC - 5 Hours

Page 1 of 1


 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum

Related topics
 Topics   Replies   Author   Views   Last Post 
No new posts PHP-Nuke Titanium v4.0.3 Install Issue 16 Terd 3828 Wed Feb 15, 2023 5:33 am
TheGhost View latest post
No new posts PHP-Nuke Titanium install help! 0 Jamilig 702 Sat Feb 11, 2023 9:07 pm
Jamilig View latest post
No new posts Database Error in admin module themes.php (Fixed) 1 CyBorg 885 Fri Jan 27, 2023 6:27 am
TheGhost View latest post
No new posts Admin Area Menu Option Bugs 0 fabpot 640 Tue Jan 17, 2023 9:35 am
fabpot View latest post
No new posts cPanel admin login is broken! 1 NukeSheriff 967 Sat Aug 27, 2022 8:46 pm
TheGhost View latest post