Follow vBSEO on Twitter
vBulletin Modifications
  • Forums
  • Add-Ons
  • Template Modifications
  • Styles
  • Graphics
  • Tutorials
  • Support Center
  • Register
  • vBulletin SEO

Member Log In

Site Navigation

  • Register
  • Members List
  • Social Groups
  • Search
  • Today's Posts
  • Mark Forums Read

Latest Modifications

  • [vB 3.8.4] THX - Hack for VB. 3.8.4
    By: bluedog
  • [vB 3.8.4] Cyb - Chatbox V.2.3
    By: bluedog
  • [vB 4.0.x] PHPKD - Advanced Quick...
    By: PHPKD
  • [vB 3.6.x] StopSpam
    By: flappi282
  • [vB 3.8.x] vBulletin Chat Addon for...
    By: 123flashchat

Latest Template Mods

  • [vB 4.0.x] Remove My Profile Link...
    By: Ak Worm
  • [vB 3.8.x] Images DownloadBox...
    By: cRs!MP
  • [vB 3.8.x] Adviertise Mod On Forum...
    By: MG4
  • [vB 3.8.4] Images PassWordBox...
    By: cRs!MP
  • [vB 3.8.4] Footer Follow Ups
    By: Ak Worm

Latest Styles

  • [vB 4.0.x] 4.0.3 - VB4STYLE-TWEETA...
    By: Belon
  • [vB 4.0.x] [4.0.3] vbdesigns.de...
    By: Belon
  • [vB 3.8.4] CompletevB - Skylight
    By: DreadKnight
  • [vB 3.8.3] [vB 3.8.4] Barcelona...
    By: hoiquantinhoc.com
  • [vB 3.8.3] Natures Walk by vBSkin...
    By: Chri5

Latest Graphics

  • [vB ] [anim.]Team Ranks
    By: cRs!MP
  • [vB ] Abstract Circles (3...
    By: cRs!MP
  • [vB ] PlayStation Rank Images
    By: cRs!MP
  • [vB 3.6.12] Heavy Stroked Button...
    By: Shelley
  • [vB ] Minature Ranks.
    By: Shelley
vBulletin Modifications » Support Center » vBulletin Support » Modification Coding » Need a little PHP help please
Reply
Page 1 of 2 1 2 >

 

  • Thread Tools
Old 06-24-2009, 11:35 PM   #1
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default Need a little PHP help please
Ok, so, still working on the moderator application system, but trying to make the option to create a thread when a new application is submitted.

I currently have this:

PHP Code:
        // Make a new thread
                
require_once(DIR . '/includes/class_dm.php');
                require_once(
DIR . '/includes/class_dm_threadpost.php');

        
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');

        
$forumid = intval($vbulletin->options['usml_modapp_forumid']);
        
$foruminfo = verify_id('forum', $forumid, 0, 1);
        
$userid = fetch_userinfo($vbulletin->GPC['username']);
        
$userid = intval($userid['userid']);

        
$iconid = 1;
        
$visible = 1;
        
$allowsmilie = 1;

        
$title = 'Mod Application: ' . $vbulletin->GPC['username'];
        
$pagetext = $message;

        
$threaddm->set('forumid', $forumid);
        
$threaddm->set('userid', $userid);
        
$threaddm->set('pagetext', $pagetext);
        
$threaddm->set('title', $title);
        
$threaddm->set('allowsmilie', $allowsmilie);
        
$threaddm->set('visible', $visible);
        
$threaddm->set_info('forum', $foruminfo);
        
$threaddm->pre_save();
        
$threaddm->save(); 
But throws an after submitting saying:
Code:
Fatal error:

    * No Users Matched Your Query
    * You did not specify a username for your post.

Unable to proceed with save while $errors array is not empty in class vB_DataManager_Thread_FirstPost in [path]/includes/class_dm.php on line 810
#0 vb_error_handler(256,

    * No Users Matched Your Query
    * You did not specify a username for your post
What am I doing wrong? Do I need to add a query? If so, how do I do that? This is my first time making a mod that creates a thread automatically and I've never really messed with the database much at all.

So any help is greatly appreciated! :D

Thanks in advance!
Reply With Quote My Problem Was Solved :)
Old 06-25-2009, 07:04 PM   #2
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Ok, this is the closest I got to it working but I got this error:
PHP Code:
Fatal error:

    * 
That username is already in use or does not meet the administrator's standards. If you are HMBeaty and you have forgotten your password, click here.

Unable to proceed with save while $errors array is not empty in class vB_DataManager_Thread_FirstPost in [path]/includes/class_dm.php on line 810
#0 vb_error_handler(256,

    * That username is already in use or does not meet the administrator'
s standards. If you are HMBeaty and you have forgotten your password, click here. 
And this is what I have in my php file:
PHP Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # U.S. Military Life Moderator Application Package v1.1.0        # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright © U.S. Military Life 2009                        # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------------------------------------------------------- # ||
|| # http://www.USMilitaryLife.com                          # ||
|| #################################################################### ||
\*======================================================================*/

// ####################### SET PHP ENVIRONMENT ########################### 
error_reporting(E_ALL & ~E_NOTICE); 

// #################### DEFINE IMPORTANT CONSTANTS ####################### 
define('NO_REGISTER_GLOBALS', 1); 
define('THIS_SCRIPT', 'modapp'); // change this depending on your filename 

// ################### PRE-CACHE TEMPLATES AND DATA ###################### 
// get special phrase groups 
$phrasegroups = array('global'); 

// get special data templates from the datastore 
$specialtemplates = array(); 

// pre-cache templates used by all actions 
$globaltemplates = array( 
    
'moderator_app'
); 

// pre-cache templates used by specific actions 
$actiontemplates = array(); 

// ######################### REQUIRE BACK-END ############################ 
require_once('./global.php');

// ####################################################################### 
// ######################## START MAIN SCRIPT ############################ 
// ####################################################################### 

// ####################################################################### 
// Some more definitions
$imp_vars = array(
            
'do' => ''
);

$pages = array(
            
'main',
            
'send'
);
$addresses = explode(",", $vbulletin->options['usml_mod_application_options_emails']);

$imp_vars['do'] = $_REQUEST['do'];

if (!(
in_array($imp_vars['do'], $pages)))
{
    
$imp_vars['do'] = 'main';
}

// Check to see if applications are turned on/off
if ($vbulletin->options['usml_mod_application_options_on'] == 0)
{
    
print_no_permission();
}
// Check usergroup permissions
if (is_member_of($vbulletin->userinfo, explode(',',$vbulletin->options['usml_modapp_ugperms'])))
{
    
print_no_permission();
}
// Check users post count permissions
if ($vbulletin->userinfo[posts] < $vbulletin->options['usml_modapp_pcperms'])
{
    
print_no_permission();
}

// Set-up the navbar
$navbits = array(); 
$navbits[] = 'Moderator Application';

// End boring stuff
// ####################################################################### 

if ($imp_vars['do'] == 'main')
{
    
$navbits = construct_navbits($navbits); 
    eval(
'$navbar = "' . fetch_template('navbar') . '";'); 
    eval(
'print_output("' . fetch_template('moderator_app') . '");');
}

if (
$imp_vars['do'] == 'send')
{
    
$vbulletin->input->clean_array_gpc('p', array(
                        
'position_applying' => TYPE_NOHTML,
                        
'username' => TYPE_NOHTML,
                        
'additional_usernames' => TYPE_NOHTML,
                        
'first_name' => TYPE_NOHTML,
                        
'last_name' => TYPE_NOHTML,
                        
'birth_month' => TYPE_NOHTML,
                        
'birth_day' => TYPE_NOHTML,
                        
'birth_year' => TYPE_NOHTML,
                        
'city' => TYPE_NOHTML,
                        
'state' => TYPE_NOHTML,
                        
'why_help' => TYPE_NOHTML,
                        
'skills' => TYPE_NOHTML,
                        
'ever_used_backend' => TYPE_NOHTML,
                        
'know_options' => TYPE_NOHTML,
                        
'moderate_others' => TYPE_NOHTML,
                        
'moderated_forums' => TYPE_NOHTML,
                        
'how_long' => TYPE_NOHTML,
                        
'ever_resigned' => TYPE_NOHTML,
                        
'reason_resigned' => TYPE_NOHTML,
                        
'still_active' => TYPE_NOHTML,
                        
'comments' => TYPE_NOHTML,
                        
'email' => TYPE_NOHTML,
                        
'tel_1' => TYPE_NOHTML
    
));

    
// Check all the variables
    
if ($vbulletin->GPC['position_applying'] == '')
    {
        
$errors[] = 'You did not specify which position you are applying for.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['username'] == '')
    {
        
$errors[] = 'You did not specify your username.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['first_name'] == '')
    {
        
$errors[] = 'You did not specify your first name.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['last_name'] == '')
    {
        
$errors[] = 'You did not specify your last name.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['birth_month'] == '')
    {
        
$errors[] = 'You did not specify your birth month.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['birth_day'] == '')
    {
        
$errors[] = 'You did not specify your birth day.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['birth_year'] == '')
    {
        
$errors[] = 'You did not specify your birth year.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['city'] == '')
    {
        
$errors[] = 'You did not specify your city.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['state'] == '')
    {
        
$errors[] = 'You did not specify your state.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['why_help'] == '')
    {
        
$errors[] = 'You did not specify why you want to help this forum.';
    }

    
// Check all the variables
    
if ($vbulletin->GPC['skills'] == '')
    {
        
$errors[] = 'You did not specify what skills you can bring to this forum.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['ever_used_backend'] == '')
    {
        
$errors[] = 'You did not specify if you ever used the backend of a vBulletin forum.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['know_options'] == '')
    {
        
$errors[] = 'You did not specify if you know any of the options.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['moderate_others'] == '')
    {
        
$errors[] = 'You did not specify if you moderate on other forums.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['moderate_others'] == 'Yes' AND $vbulletin->GPC['moderated_forums'] == '')
    {
        
$errors[] = 'You did not specify what forum(s) you moderate.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['moderate_others'] == 'Yes' AND $vbulletin->GPC['how_long'] == '')
    {
        
$errors[] = 'You did not specify how long you have been moderating other forums.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['ever_resigned'] == '')
    {
        
$errors[] = 'You did not specify if you have ever resigned from a staff position.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['ever_resigned'] == 'Yes' AND $vbulletin->GPC['reason_resigned'] == '')
    {
        
$errors[] = 'You did not include a reason wny you resigned from a staff position.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['still_active'] == '')
    {
        
$errors[] = 'You did not specify if will still be an active member of our community if you do not get the position you have applied for.';
    }
    
// Check all the variables
    
if ($vbulletin->GPC['email'] == '' AND $vbulletin->GPC['tel_1'] == '')
    {
        
$errors[] = 'You did not specify an email address or a telephone number, you must specify at least one of the two.';
    }

    
// Print the errors
    
if (count($errors) > 0)
    {
        foreach (
$errors AS $error)
        {            
            
$new_errors .= $error . "<br />\n";
        }
        
        
$errors = "The following errors were found; <br />";
        
$errors .= $new_errors;
        
        
$submit = false;
    } else {
        
$submit = true;
    }
    
    if (
$submit)
    {
        if (
$vbulletin->GPC['email'])
        {
            
$contact = "E-mail: " . $vbulletin->GPC['email'] . ".
"
;
        }
        
        if (
$vbulletin->GPC['tel_1'])
        {
            
$contact .= "Telephone Number: " . $vbulletin->GPC['tel_1'] . ".
"
;
        }

        
// Build Emails
        
$subject = "Moderator Application";
        
$message = "Hello,
    
A new moderator application has just been submitted!

Position applying for: " 
. $vbulletin->GPC['position_applying'] . ".
Username: " 
. $vbulletin->GPC['username'] . ".
Additional Usernames: " 
. $vbulletin->GPC['additional_usernames'] . ".
First Name: " 
. $vbulletin->GPC['first_name'] . ".
Last Name: " 
. $vbulletin->GPC['last_name'] . ".
Birthday: " 
. $vbulletin->GPC['birth_month'] . "/" . $vbulletin->GPC['birth_day'] . "/" . $vbulletin->GPC['birth_year'] . ".
Location: " 
. $vbulletin->GPC['city'] . ", " . $vbulletin->GPC['state'] . ".
Why do you want to help this forum:
" 
. $vbulletin->GPC['why_help'] . ".

What skills can you bring to this forum:
" 
. $vbulletin->GPC['skills'] . ".

Have you ever used the backend of a vBulletin forum: " 
. $vbulletin->GPC['ever_used_backend'] . ".
Do you know any of the options: " 
. $vbulletin->GPC['know_options'] . ".
Do you moderate on other forums: " 
. $vbulletin->GPC['moderate_others'] . ".
If yes, what other forum(s) do you moderate:
" 
. $vbulletin->GPC['moderated_forums'] . ".

How long have you been moderating other forums: " 
. $vbulletin->GPC['how_long'] . ".
Have you ever resigned from a staff position: " 
. $vbulletin->GPC['ever_resigned'] . ".
If yes, please include details/reasons why: 
" 
. $vbulletin->GPC['reason_resigned'] . "

If you do not get the position you have applied for, will you still be an active member of our community?: " 
. $vbulletin->GPC['still_active'] . ".
Enter any additional information: 
" 
. $vbulletin->GPC['comments'] . "

" 
. $contact . "
IP Address: " 
. IPADDRESS . "
Host: " 
. @gethostbyaddr(IPADDRESS) . "

Regards,
Your site."
;
        
    
        
// Send Emails
        
if (!class_exists('vB_Mail'))
        {
            require_once(
DIR . '/includes/class_mail.php');
        }
        
        foreach (
$addresses AS $address)
        {
            if (
$vbulletin->options['use_smtp'])
            {
                
$mail =& new vB_SmtpMail($vbulletin);
            }
            else
            {
                
$mail =& new vB_Mail($vbulletin);
            }
        
            
$mail->start($address, $subject, $message, $vbulletin->options['webmasteremail']);
            
$mail->send();
            
            unset(
$mail);
        }

        
// Make a new thread
            
require_once(DIR . '/includes/class_dm.php');
            require_once(
DIR . '/includes/class_dm_threadpost.php');

        
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');

        
$forumid = intval($vbulletin->options['usml_modapp_forumid']);
        
$foruminfo = verify_id('forum', $forumid, 0, 1);
        
$userid = $vbulletin->userinfo['userid'];

        
$iconid = 1;
        
$visible = 1;
        
$allowsmilie = 1;

        
$title = 'Mod Application: ' . $vbulletin->GPC['username'];
        
$pagetext = $message;

        
$threaddm->set('username', $vbulletin->GPC['username']);
        
$threaddm->set('forumid', $forumid);
        
$threaddm->set('userid', $userid);
        
$threaddm->set('pagetext', $pagetext);
        
$threaddm->set('title', $title);
        
$threaddm->set('allowsmilie', $allowsmilie);
        
$threaddm->set('visible', $visible);
        
$threaddm->set_info('forum', $foruminfo);
        
$threaddm->pre_save();
        
$threaddm->save();

        
$newtext = "Thank you for enquiring, your request will be processed and we will respond to you shortly.";
        
        
$navbits = construct_navbits($navbits); 
        eval(
'$navbar = "' . fetch_template('navbar') . '";'); 
        eval(
'print_output("' . fetch_template('moderator_app') . '");');
    } else {
        
$imp_vars['do'] = 'errors';
        
$vbgpc =& $vbulletin->GPC;
        
        
$navbits = construct_navbits($navbits); 
        eval(
'$navbar = "' . fetch_template('navbar') . '";'); 
        eval(
'print_output("' . fetch_template('moderator_app') . '");');    
    }
}

// ####################################################################### 
// ######################### END MAIN SCRIPT ############################# 
// ####################################################################### 
?>
Can anyone PLEASE tell me what I need to add/change? I'm about ready to pull my hair out on this one
Reply With Quote
Old 06-25-2009, 07:10 PM   #3
Idan
Coder
Idan's Avatar

Activity Longevity
0/20 18/20
Today Posts
0/3 sssss1484
Location: Israel
Age: 29
Idan is on a distinguished road
It's been a while since i tried to do new thread via plugin, but if i were to try & do it now my action would be as follows:
i would try to follow same concept code that currently exists inside newthread.php vbuletin core file.

In 3.8.x source code it's in code lines 148 - 281

(there are alot of fields you can define in code, writing here the most basic i would use, to see this works...)

PHP Code:
require_once(DIR . '/includes/functions_newpost.php');


$target_foruminfo = fetch_foruminfo($forumid); 
$newpost = array( 
                
'userid' => $user_id, 
                
'username' => $username, 
                
'message' =>  "msg text here", 
                
'title' => "title goes here",
                
'poststarttime' => time(),
                
'emailupdate' => 0
); 

build_new_post('thread', $target_foruminfo, array(), array(), $newpost, $errors);

// Check if any errors during post
if (sizeof($errors) > 0) 
{ 
       
// Post of new thread failed !
       
$error_info = construct_errors($errors); 
       
//echo $error_info; 
       // do anything you want here - likely to redirect !
       // ...
} 

// Fix forums counters
build_forum_counters($forumid); 
I haven't tested the above code, just writing what i think should be working.
Hope this helps you my friend
Regards,
Idan.

* Support will only be given via forums !
* If this post solved/aided your problem, please click "mark as aid" / "mark as solution" as explained in here
Reply With Quote
Old 06-25-2009, 07:20 PM   #4
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Well, no errors this time, but it didn't create a thread :(
Reply With Quote
Old 06-25-2009, 07:22 PM   #5
Idan
Coder
Idan's Avatar

Activity Longevity
0/20 18/20
Today Posts
0/3 sssss1484
Location: Israel
Age: 29
Idan is on a distinguished road
Status: Offline Default
hmm.. did you replaced all my dummy vars with real ones ?
(dummy vars such as $forumid, $username, $user_id, etc.)

EDIT: also if from external file & not from plugin, might also need to include

PHP Code:
require_once('./global.php'); 
Regards,
Idan.

* Support will only be given via forums !
* If this post solved/aided your problem, please click "mark as aid" / "mark as solution" as explained in here
Reply With Quote
Old 06-25-2009, 07:27 PM   #6
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Not really sure on how to replace what you suggested. lol

Again, I've never really coded PHP to this extent and this is my FIRST time creating a mod that creates a thread automatically. So, I'm not sure what to put where as far as that lol
Reply With Quote
Old 06-25-2009, 07:34 PM   #7
Idan
Coder
Idan's Avatar

Activity Longevity
0/20 18/20
Today Posts
0/3 sssss1484
Location: Israel
Age: 29
Idan is on a distinguished road
Status: Offline Default
i used those vars as place holder for real values that needs to enter.

for example where i wrote forumid, you need to place the actual forumid into which this post gonna be placed onto.

Lets assume example & how would this reflect in code:
please assume we want to post with:
forumid = 1
username = "some name"
user_id = 1

the code would look like:
PHP Code:
require_once(DIR . '/includes/functions_newpost.php'); 


// here are my settings for this test
$forumid = 1;
$user_id = 1;
$username = "some name";

$target_foruminfo = fetch_foruminfo($forumid);  
$newpost = array(  
                
'userid' => $user_id,  
                
'username' => $username,  
                
'message' =>  "msg text here",  
                
'title' => "title goes here", 
                
'poststarttime' => time(), 
                
'emailupdate' => 0 
);  

build_new_post('thread', $target_foruminfo, array(), array(), $newpost, $errors); 

// Check if any errors during post 
if (sizeof($errors) > 0)  
{  
       
// Post of new thread failed ! 
       
$error_info = construct_errors($errors);  
       
//echo $error_info;  
       // do anything you want here - likely to redirect ! 
       // ... 

      
echo "new thread failed";
}  else {
     echo 
"new thread added :)";
}

// Fix forums counters 
build_forum_counters($forumid);  

echo 
"counter fixed - all should be ok"; 
EDIT:
i've Added some extra echo to page code above, so you may see if this works or not.
i assumed before you have some php knowledge and only placed "generic" layout of code concept i would use for it.
so if this test works, then when load complete you'll see new post under forum id of "1".
If no such forumid on your site, please update to some other existing forumid.

The user_id & username should be set to values of some "dummy" user you've created, unless you want to post under your own name, then place your own name values. Just make sure the user id & username exists...
Solution to original question
Regards,
Idan.

* Support will only be given via forums !
* If this post solved/aided your problem, please click "mark as aid" / "mark as solution" as explained in here

Last edited by Idan; 06-25-2009 at 07:38 PM.
Reply With Quote
Old 06-25-2009, 07:41 PM   #8
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Ok, Idan. I THINK I got it working now. You are awesome man!! Thank you very much!!! I really can't even thank you enough!

Going to test a couple more things and will post back with an update!

:D
Reply With Quote
Old 06-25-2009, 07:43 PM   #9
Redline
Advanced Coder

Redline's Avatar

Activity Longevity
0/20 13/20
Today Posts
0/3 ssssss226
Location: Camp Lejeune, NC
Redline is on a distinguished road
Send a message via ICQ to Redline Send a message via AIM to Redline Send a message via MSN to Redline Send a message via Yahoo to Redline Send a message via Skype™ to Redline
Status: Offline Default
Ok, fully tested and works PERFECT!!! Thank you so very much Idan! :D
Reply With Quote
Old 06-25-2009, 07:47 PM   #10
Idan
Coder
Idan's Avatar

Activity Longevity
0/20 18/20
Today Posts
0/3 sssss1484
Location: Israel
Age: 29
Idan is on a distinguished road
Status: Offline Default
Quote:
Originally Posted by Redline View Post
Ok, fully tested and works PERFECT!!! Thank you so very much Idan! :D
glad i could help out bro
if there is anything else you need just ask, will gladly help with what i know
Regards,
Idan.

* Support will only be given via forums !
* If this post solved/aided your problem, please click "mark as aid" / "mark as solution" as explained in here
Reply With Quote

Reply
Page 1 of 2 1 2 >

« Help regarding FTp Folder | Tweaking the "Proceed" button »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Show Printable Version Show Printable Version
Email this Page Email this Page

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
Broken PHP with SUSE Update Ken Iovino Announcements 2 06-17-2006 02:14 AM
PHP Vulnerabilities in <= 4.3.9 and <= 5.0.2 Junior Announcements 0 05-11-2005 08:19 AM



All times are GMT. The time now is 05:17 AM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.
Transverse Styles
  • Top
  • Archive
  • vBSEO
  • Contact Us
LinkBack
LinkBack URL LinkBack URL
About LinkBacks About LinkBacks
Bookmark & Share
Digg this Thread! Digg this Thread!
Add Thread to del.icio.us Add Thread to del.icio.us
Bookmark in Technorati Bookmark in Technorati
Furl this Thread! Furl this Thread!