
Kieran
Members-
Posts
176 -
Joined
-
Last visited
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Kieran
-
Ok, Please explain what you mean by 'Pilot Transfer'
-
Hey there, a ) I'm not quite sure what you mean by 'transfer', please ellaborate. b ) This forum is for paid serviced only, are you willing to pay for this? Thanks, Kieran
-
Hey, I've sent you an email real quick (kieran@kieranmchugh.co.uk). I'm up to date with the latest web 2.0 standards and I've been coding and designing for just on eight years now. I've yet to begin my service for advanced jQuery, web 2.0 design, intuitive UI etc. but I'm planning on doing so very soon. I'm on WLM a lot of the day and contactable by email. I've enclosed my current project in my email. Many thanks, Kieran. EDIT --> My Shop thread is now available in this forum section
-
This is perhaps what I'm thinking... Because I have to accept registrations manually, using the event + hook isn't ideal. User 'Confirms Password' in a form on the prc somewhere > form details passed to external php script , along with email and username > script creates account > script redirects to confirmation page. Perhaps a bit of AJAX thrown in there to smooth it all out? AJAX isn't my strong point so I'd have to do a bit of research.
-
You will definately need: - An Intel Processor - NVIDIA Graphics Card - 4GB+ Ram - So 64-bit OS - Windows 7 has lots of performance improvements, making for better framerates (I have home premium, it suffices!) - Bigger hard drive the better. As for software, you would need: - To do regular defragments to keep it all clean - Something to shut down unnecessary processes in the background, I use GameBooster.
-
Hey, I need to get phpVMS to parse some custom php.ini files (to change the timezone)... How would I go about doing this? Thanks
-
Thanks I've got one integrated now... In a lightbox, I want to display the standalone live map using either an inline DIV or iframe. How would I go about extracting the live map alone? Thanks, Kieran.
-
Hey there, Im a complete jQuery novice and I understand phpVMS integrates jQuery as standard. I'm looking to implement this jQuery Lightbox with phpVMS so that I can display links and images using it. I understand this isn't the ideal place to ask, but the guys at jQuery may never have even heard of phpVMS. http://fancybox.net/home Any jQuery experts who can guide me with installation in the more abnormal phpVMS environment are appreciated. PS. Efforts at following their instructions fail (rather epically, actually) Thanks, Kieran
-
<?php // We're in phpBB define('IN_PHPBB', true); $phpbb_root_path = 'forum/'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.php'); include($phpbb_root_path . 'includes/functions_user.php'); include('core/codon.config.php'); ?> This code is the part in question, it hasn't been modified since the thread started.
-
Just taking another glance at what you said earlier, about including both phpBB and phpVMS together. The only conflict, at the moment, is a Template class (see the error above). If we could somehow overcome this, then both APIs could work in harmony.
-
Do you think it might be safer to work through a database? Ie. The reg script passes information to the table phpvms_forumRegForProcessing, On registration approval, the script gets data from the table and uses it to create a phpBB forum account. Might be safer than throwing variables all over the show.
-
Thanks for pointing me in the right direction, i'll get back to you shortly... There doesn't seem to be an event for when a user is approved... We wouldn't want a declined user to have a forum account, now, would we?
-
You may be on a version of phpBB older than 3.0.6. Now, they use phpBB's own cryptology method.
-
My testing suggests otherwise, putting an MD5 hash into the phpBB database will not work, as phpBB does not use MD5 at all. I would rather stick to both the phpBB and phpVMS API if possible.
-
EDIT: Used an ORDER BY to fix that out... Nabeel, we could do with you expertise over on the phpBB AutoRegistration Dev Thread, Thanks... Kieran
-
Got it working now, the DB::debug was empty but I relaised that the ` character should really have been " or ' . However, it doesn't seem to be ordering the query results correctly? It always seems to return the FIRST post and never the most recent.
-
Phpbb no longer uses md5 hashes, ans an SQL query is out of range because there are about 5 or 6 tables that get updated then a user registers.
-
However we need to include core/codon.config.php as well. I get this template error though... Fatal error: Call to undefined method template::SetTemplatePath() in /home/kieranm1/public_html/lv/core/app.config.php on line 293 When trying to include /core/classes/Template.class.php, this happens: Fatal error: Cannot redeclare class template in /home/kieranm1/public_html/lv/forum/includes/template.php on line 2 I think we need Nabeel's expertise on this one...
-
I wish it was, but unfortunately, it isn't that simple... The include files have includes inside those. Eg. includes/functions.php might look for a /config.php. Because includes/functions.php is in the 'includes' folder, then its OK. But trying to access /home/forum/includes/functions.php externally means that it tries to look in /home/forum/config.php which, of course, is wrong.
-
Hello, This script is going well, but I have hit a brick wall for the time being. It is near impossible to include BOTH the phpBB Config files AND the phpVMS config files. This is because both of those config files contain further includes. No matter where you put this forum registration script, the sub-includes will always produce an error because they are missing. eg. AutoReg.php is in /home/ ppBB's config is in /home/forum/includes/ when including phpBB's file, it wants something in includes/, but because it is in /home/, it looks in /home/includes/ which is not correct. If anybody has advice on overcoming the issue then I would be grateful and release the script. Kieran
-
Thank you for that, I now have a Custom.class.php as well. I have this code on my page now: $news = Custom::GetNewsItemByCategory('notam', 1); But I'm stuck as to what to do with it, an attempt at a For-each loop displays an 'Invalid Argument Supplied' error.
-
Right I have a function like this (I have successfully coded the add-news section): public static function GetNewsItemByCategory($category,$limit) { if (!$limit) { return DB::get_results('SELECT *, UNIX_TIMESTAMP(postdate) AS postdate FROM '.TABLE_PREFIX.'news WHERE category=`'.$category.'`'); } elseif ($limit) { return DB::get_results('SELECT *, UNIX_TIMESTAMP(postdate) AS postdate FROM '.TABLE_PREFIX.'news WHERE category=`'.$category.'` LIMIT '. $limit); } } Now how would I integrate this into my page, so that I could echo all of the news from a specific category?
-
I'm definately using http:// in front. There no formatting either though?
-
Hey, For some reason, when I send a mass mail, all pictures are broken (Red X's) and the formatting vanishes. Does this happen to anybody else? Thanks, Kieran
-
Glad you like it I recommend some CSS Styles as this one is bland.