Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > Project U-232
Reply
  #1  
Old 29th January 2018, 20:21
DanuTz241987 DanuTz241987 is offline
Member
 
Join Date: Feb 2016
Posts: 11
Default U-232 V4 Code - when I want to create an account, it redirects me
Good evening, I installed the vps - U-232 V4 Code
all good and beautiful.
when I want to create an account, redirects me back to the Signup page.
when i look in phpmyadmin to users. is empty.
so do not let me set up ...
a little help please
Thank you
Reply With Quote
  #2  
Old 29th January 2018, 20:40
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,241
Default
Using PHP7 and MariaDB ?
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #3  
Old 30th January 2018, 09:18
DanuTz241987 DanuTz241987 is offline
Member
 
Join Date: Feb 2016
Posts: 11
Default
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 133
Server version: 5.5.58-MariaDB-1ubuntu0.14.04.1 (Ubuntu)
----------
php

PHP 5.5.9-1ubuntu4.22 (cli) (built: Aug 4 2017 19:40:28)
Copyright (c) 1997-2014 The PHP Group
Reply With Quote
  #4  
Old 30th January 2018, 13:29
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,241
Default
You should try php7 or php 5.6.33 and see if it gives same results.
Your version is old
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #5  
Old 30th January 2018, 15:41
DanuTz241987 DanuTz241987 is offline
Member
 
Join Date: Feb 2016
Posts: 11
Default
php -v
PHP 7.0.27-1+ubuntu14.04.1+deb.sury.org+1 (cli) (built: Jan 11 2018 23:19:41) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
with Zend OPcache v7.0.27-1+ubuntu14.04.1+deb.sury.org+1, Copyright (c) 1999-2017, by Zend Technologies
root@vmi156767:~# service apache2 restart
* Restarting web server apache2 [ OK ]
this is how I see it after deleting php5 and updating to php 7


index pages

Code:
array(         'gallery'      ),     /** include css **/     'css' => array(         'bbcode',         'index-portals'       ) ); $stdfoot = array(     /** include js **/     'js' => array(          'shout',          'java_klappe',      'jquery.cookie',      'portals',      'jquery-ui-i18n.min',      'jquery.bgiframe-2.1.2',      'jquery-ui.min'     ) ); $lang = array_merge(load_language('global') , load_language('index')); $HTMLOUT = ''; //Start Portals Div $HTMLOUT .=''; //==Global blocks by elephant //==Curuser blocks by pdq     if (curuser::$blocks['index_page'] & block_index::IE_ALERT && $BLOCKS['ie_user_alert']) { $HTMLOUT .="";     require_once (BLOCK_DIR . 'index/ie_user.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::ANNOUNCEMENT && $BLOCKS['announcement_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/announcement.php'); $HTMLOUT .="
";     }      if ($CURUSER['class'] >= UC_STAFF &&  curuser::$blocks['index_page'] & block_index::STAFF_SHOUT &&  $BLOCKS['staff_shoutbox_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/staff_shoutbox.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::SHOUTBOX && $BLOCKS['shoutbox_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/shoutbox.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::NEWS && $BLOCKS['news_on']) { $HTMLOUT .="";      require_once (BLOCK_DIR . 'index/news.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::ADVERTISEMENTS && $BLOCKS['ads_on']) { $HTMLOUT .="";        require_once (BLOCK_DIR . 'index/advertise.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::FORUMPOSTS && $BLOCKS['forum_posts_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/forum_posts.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::MOVIEOFWEEK && $BLOCKS['movie_ofthe_week_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/mow.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::LATEST_TORRENTS && $BLOCKS['latest_torrents_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/latest_torrents.php'); $HTMLOUT .="
";     } /*     if (curuser::$blocks['index_page'] & block_index::LATEST_TORRENTS_SCROLL && $BLOCKS['latest_torrents_scroll_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/latest_torrents_scroll.php'); $HTMLOUT .="
";     } */     if (curuser::$blocks['index_page'] & block_index::STATS && $BLOCKS['stats_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/stats.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::ACTIVE_USERS && $BLOCKS['active_users_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/active_users.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::IRC_ACTIVE_USERS && $BLOCKS['active_irc_users_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/active_irc_users.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::LAST_24_ACTIVE_USERS && $BLOCKS['active_24h_users_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/active_24h_users.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::BIRTHDAY_ACTIVE_USERS && $BLOCKS['active_birthday_users_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/active_birthday_users.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::LATEST_USER && $BLOCKS['latest_user_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/latest_user.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::ACTIVE_POLL && $BLOCKS['active_poll_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/poll.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::XMAS_GIFT && $BLOCKS['xmas_gift_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/gift.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::RADIO && $BLOCKS['radio_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/radio.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::TORRENTFREAK && $BLOCKS['torrentfreak_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/torrentfreak.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::DISCLAIMER && $BLOCKS['disclaimer_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/disclaimer.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::DONATION_PROGRESS && $BLOCKS['donation_progress_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/donations.php'); $HTMLOUT .="
";     } //End Portals Div $HTMLOUT .="
";  echo stdhead('Home', true, $stdhead) . $HTMLOUT . stdfoot($stdfoot); ?>
Click the image to open in full size.Click the image to open in full size.

Last edited by DanuTz241987; 30th January 2018 at 15:58.
Reply With Quote
  #6  
Old 30th January 2018, 16:24
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,241
Default
it seems your webserver isnt properly configured.
you need to properly edit your php.ini and install some apache2 mods which are required
also apache2.conf needs editing.
i think these steps are written in the readme file
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)

Last edited by DND; 30th January 2018 at 16:43.
Reply With Quote
  #7  
Old 30th January 2018, 20:21
DanuTz241987 DanuTz241987 is offline
Member
 
Join Date: Feb 2016
Posts: 11
Default
the page returned to normal.
I still can not create my account.
redirects me back to signup
Reply With Quote
  #8  
Old 30th January 2018, 20:25
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,241
Default
then it must be something wrong with the cookies.
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
  #9  
Old 31st January 2018, 10:23
DanuTz241987 DanuTz241987 is offline
Member
 
Join Date: Feb 2016
Posts: 11
Default
I have deleted all cookies from chrome, in vain do not let me create an account
Reply With Quote
  #10  
Old 31st January 2018, 10:55
DND DND is offline
VIP
 
Join Date: Dec 2008
Posts: 1,241
Default
read your logs. your error logs.
i never hard problems with any versions of U-232.
something is definetly broken on how you "install" it
__________________
Need HELP!? I can install:

  1. Server/VPS (Debian,CentOS,Ubuntu,Fedora, FreeBSD) Optimization and ... + Modules
  2. Webserver Windows/Linux (Apache/Lighttpd/Nginx/Mysql/PhpMyAdmin/SSL) Optimization and ... + Modules
  3. Seedbox Windows/Linux (uTorrent,rTorrent,libTorrent,ruTorrent) + Modules
  4. Multiple source code engines
  5. Linux Server Administration (security, cryptography/encryption, proxy, load balancer, custom ddos firewall)
Reply With Quote
Reply

Tags
account , code , create , redirects , u232 , v4

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 22:17. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.