Quote:
Originally Posted by turnipofdoom
in reference to the above post, there were two problems
if you are below mysql5 you need to remove ENGINE=MYISAM from the XML and from ap_recruit_functions.php
Also in some cases (i have no idea why) $PHP_SELF is an issue, if it is, you will need to open your template for the game you're using adv_portal_GAME_recruit_updater
change
Code:
<form method="POST" name="recruitment" id="recruitment" action="$PHP_SELF/$vba_options[portal_homeurl]?do=recruit_update" onSubmit="postMethod(); return false;">
to
<form method="POST" name="recruitment" id="recruitment" action="http://www.yoururl.com/$vba_options[portal_homeurl]?do=recruit_update" onSubmit="postMethod(); return false;">
|
Actually you shouldn't do that. You need to change it to the homepage + the URL for the cmps page you put it on. So as an example, if you put the update recruitment module on a page called recruitment_updater, in cmps the url would look like such:
yourdomain.com/index.php?pageid=recruitment_updater
So, to properly point the template you would have to change it to (using the page example above):
Code:
<form method="POST" name="recruitment" id="recruitment" action="http://www.yoururl.com/index.php?pageid=recruitment_updater&do=recruit_update" onSubmit="postMethod(); return false;">