Jump to content

roboa

Members
  • Posts

    108
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

roboa's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. checkinstall.php: checkdb.php: phpVMS Virtual Airline Administration Software Database Check
  2. PHP version 5.2.13 and seeing as I don't have the issue with localhost through the same browser (firefox) I'm gonna guess cookies and sessions are allowed. edit: If anybody wants to view the issue to get a better idea please feel free to send me a pm.
  3. Hi all, I really just can't work out what's going on here at all. I'm logged into the site, yet, when I click on the link back to the hompage, the pilot links that appear when logged in (in place of login boxes) just go back to the login boxes. This leads you to believe you have been logged out however when you use the boxes and log back in you get told you were already logged in!? Another issue, which I presume is linked to this, when you click on the link for the admin panel you are asked to "please login first". This only happens on the live site and not on my offline localhost development site. FF errors are: Any help is appreciated!
  4. Ok, any ideas from these erros? : Warning: Error in parsing value for 'top'. Declaration dropped. Source File: http://localhost/xl/lib/css/phpvms.css Line: 116 Warning: Error in parsing value for 'filter'. Declaration dropped. Source File: http://localhost/xl/lib/css/phpvms.css Line: 212 Error: GIcon is not defined Source File: http://localhost/xl/lib/js/phpvms.js Line: 21 Error: GIcon is not defined Source File: http://localhost/xl/lib/js/phpvms.js Line: 21 Error: XML tag name mismatch (expected meta) Source File: http://localhost/xl/index.php/schedules/Scripts/AC_RunActiveContent.js Line: 29, Column: 2 Source Code: </head>
  5. It is when I'm logged in. What I should have made more clear is that im getting the By dep/arr/ac etc. in list format instead of in the tab formats. Thanks though Nabeel!
  6. Hi guys, I can't get the schedule tabs to show up either with a custom skin or the default skin. Any ideas why this may be? If it makes a difference this is currently being run on localhost. thanks!
  7. It'll work in a stylesheet or in the head whichever. But it is a bit neater in a stylesheet, thats the only difference
  8. cheers Nabeel! I really appreciate it
  9. This code is for the phpBB forums and it does work but it leaves the user inactive and they're username is [first name][lastname][pilot no.]. How can I put gaps between that stuff and get the user active? This is the code I have in the ForumRegister module as ForumRegister.php <?php class ForumRegister extends CodonModule { public function __construct() { CodonEvent::addListener('ForumRegister'); } public function EventListener($eventinfo) { if($eventinfo[0] == 'registration_complete') { $userinfo = $eventinfo[2]; $fname = $userinfo['firstname']; $lname = $userinfo['lastname']; $pass = $userinfo['password1']; $email = $userinfo['email']; $code = $userinfo['code']; //mysql_query("INSERT INTO phpbb_users (username, user_password, group_id, user_timezone, user_dst, user_lang, user_type, user_actkey, user_dateformat, user_style, user_regdate) VALUES ($userr, $pass, '2','1.0', '0','en','0','','d M Y H:i', '1', time())"); $get_uinfo = mysql_query("SELECT * FROM phpvms_pilots WHERE firstname='".$fname."' AND lastname='".$lname."' AND email='".$email."'"); echo "Result Select: ".mysql_error()."<br>"; $uinfo = mysql_fetch_array( $get_uinfo ); //echo "Uinfo: ".$uinfo['pilotid']; $str = $uinfo['pilotid']; $pilot_id = str_pad ($str,4,"0",STR_PAD_LEFT); $pilot_id = $fname.$lname.$code.$pilot_id; $pilot_id_klein = strtolower($pilot_id); //echo "Pass: ".$pass."<br>"; $passMD5 = md5($pass); //echo "Pass MD5: ".$passMD5."<br>"; echo "PilotID: ".$str."<br>"; $tm = time(); mysql_query("INSERT INTO phpbb_users (username, username_clean, user_password, user_email, group_id, user_timezone, user_dst, user_rank, user_lang, user_colour, user_type, user_actkey, user_dateformat, user_style, user_regdate) VALUES ('".$pilot_id."', '".$pilot_id_klein."', '".$passMD5."', '".$email."', '9','0.0', '0', '2','en','0099FF','1','5BN4938HB2','D M d, Y g:i a', '2', '".$tm."')"); //mysql_query("INSERT INTO phpbb_users (username, user_password) VALUES ('".$pilot_id."', '".md5($userinfo['password'])."')"); //echo "Result: ".mysql_error()."<br>"; //print_r($userinfo); } } } ?> cheers, roboa p.s I have phpBB and phpVMS in the same db if it helps
  10. here you go mate. stick this in the <head> part of the page: A:link {text-decoration: none; color: #858585;} A:visited {text-decoration: none; color: #858585;} A:active {text-decoration: none; color: #858585;} A:hover {text-decoration: none; color: #ffffff;}
  11. The routemap I'm trying to call it into another page
  12. If you're using something like frontpage or dreamweaver then you dont. In fact all you need to make the template is HTML which you then skin into the site. Trust me it's very easy. And you need to know HTML as a bare minimum to create any site
  13. I presume your ok with skinning? You just want to make your entire page design including your drop down and then use all that to skin phpvms. For all I know, your design could mean that the menu goes in the footer.tpl! This is a good resource of drop down menus for you: http://dynamicdrive.com/dynamicindex1/indexc.html If you need any specific help skinning I'll do my best to help you out if you send me a pm
×
×
  • Create New...