|

|
|

|
View unanswered posts | View active topics
| Author |
Message |
|
trinkaltbier
|
Post subject: MLM Install Issues Posted: Mon Oct 10, 2011 6:08 pm |
|
|
Joined: Mon Oct 10, 2011 6:04 pm Posts: 9
|
|
I read all the frustration; I prayed it would not happen to me. I have been using a cpanel server for well on 10 years, and I just cannot get MLM to go. It has seriously delayed my implementation!
I have changed permissions, set up databases with full permissions, changed just about everything, every which way back and forth. Still get the 404 error and no set up of the DB. Is there something I am missing here? Something cpanel related?
Auto install fails, unfortunately.
|
|
| Top |
|
 |
|
stanbusk
|
Post subject: Re: MLM Install Issues Posted: Mon Oct 10, 2011 6:38 pm |
|
|
 |
| Site Admin |
 |
Joined: Wed Dec 28, 2005 9:13 pm Posts: 6807
|
What version of MaxBulk Mailer are you using? Note that in forums you will only see problems, nobody posts a message is everything works 
|
|
| Top |
|
 |
|
trinkaltbier
|
Post subject: Re: MLM Install Issues Posted: Mon Oct 10, 2011 7:49 pm |
|
|
Joined: Mon Oct 10, 2011 6:04 pm Posts: 9
|
|
I moved it to another folder and it worked. I think the folder I was putting into on the server had another use (with phplist). I am using 8.3.3. Now I am figuring everything else out...thanks for the prompt response and I will post more as issues arise.
|
|
| Top |
|
 |
|
trinkaltbier
|
Post subject: Re: MLM Install Issues Posted: Mon Oct 10, 2011 11:45 pm |
|
|
Joined: Mon Oct 10, 2011 6:04 pm Posts: 9
|
|
OK, now I am having problems with the "auto" subscribe page, as described in other posts. Both auto subscribe pages list the lists I have added by name, but when you hit submit, it says "You must select a list" and shows nothing.
My perusal of older posts does not show a fix for this. I do not know enough about php to see what is going on, but I did check with ls - l and the chown and permissions are the same as the single and multiple subscribe pages that do work (but show the lists as lst1 and lst2 etc.).
Any suggestions? I have to list the names by what they are actually called.
|
|
| Top |
|
 |
|
stanbusk
|
Post subject: Re: MLM Install Issues Posted: Tue Oct 11, 2011 8:54 am |
|
|
 |
| Site Admin |
 |
Joined: Wed Dec 28, 2005 9:13 pm Posts: 6807
|
The 'subscribe_auto_single.php' page has a little error in it, use this version instead: Attachment:
subscribe_auto_single.php.zip [3.3 KiB]
Downloaded 117 times
|
|
| Top |
|
 |
|
trinkaltbier
|
Post subject: Re: MLM Install Issues Posted: Tue Oct 11, 2011 3:15 pm |
|
|
Joined: Mon Oct 10, 2011 6:04 pm Posts: 9
|
|
I will check and see. But hey, I guess if I am using the opt1, opt2 fields and such that I need to create my own fixed page? Or do I just add the information gathering fields to this form.
Can I sort and send by options that are given to me in those fields? (Maybe it's an export?)
We use the fields to further narrow interest areas.
|
|
| Top |
|
 |
|
stanbusk
|
Post subject: Re: MLM Install Issues Posted: Tue Oct 11, 2011 3:51 pm |
|
|
 |
| Site Admin |
 |
Joined: Wed Dec 28, 2005 9:13 pm Posts: 6807
|
|
Yes, you have to modify the sample subscribe pages. Those page are mainly examples. You have to modify the heading PHP code and add the fields to the form.
I don't understand your second question.
|
|
| Top |
|
 |
|
julienjp
|
Post subject: Re: MLM Install Issues Posted: Fri Dec 16, 2011 9:48 pm |
|
|
Joined: Tue Dec 13, 2011 7:24 pm Posts: 24
|
|
I guess the million dollar question is... How do you do that?
I have tried to look at the examples and modify the code based on the other fields. But since I am not a master PHP coder, it all looks like latin to me.
To you Stanbusk, its easy. But thats because you built the software. People like me have no idea what the codes mean and what they are doing.
I would gladly pay you to make the changes since you know exactly what to do. If you don't have the time, I understand. If you could point me where I can find out what exactly what each block of code means, it would really help me understand what to do.
Thanks
Julien
|
|
| Top |
|
 |
|
stanbusk
|
Post subject: Re: MLM Install Issues Posted: Mon Dec 19, 2011 8:30 am |
|
|
 |
| Site Admin |
 |
Joined: Wed Dec 28, 2005 9:13 pm Posts: 6807
|
|
What page do you want to modify, please tell me the name, and what field(s) do you want tot add?
|
|
| Top |
|
 |
|
trinkaltbier
|
Post subject: Re: MLM Install Issues Posted: Mon Dec 19, 2011 4:30 pm |
|
|
Joined: Mon Oct 10, 2011 6:04 pm Posts: 9
|
|
I am back and working on this again.
1) Adding lists to subscribe multiple page
First, I guess wherever it says 'list1', I change that to the name of the mailing list. If the mailing list is Beer Beacon, a line such as this
if ( isset( $_REQUEST['list1'] ) && !empty( $_REQUEST['list1'] ) ) { $list1 = $_REQUEST['list1']; }
becomes
if ( isset( $_REQUEST['Beer Beacon'] ) && !empty( $_REQUEST['Beer Beacon'] ) ) { $list1 = $_REQUEST['Beer Beacon']; }
Yes?
2) Adding MORE lists (as there are only three on multiple form) and adding more fields for user information.
It seems to me there is a lot of things to change if you are going up to 7 lists. If might be easier to have 3 subscribe forms. It would be nice if you had an example of such a maxed out form, with lots of extra fields (opt1,2,3) etc.
But just looking at it, I see changed to be made in Parameter Checking, Parameter Checking and Error Handling and in the HTML area. Let me know if there is a tutorial for this somewhere. I wish this could be more automated).
|
|
| Top |
|
 |
|
stanbusk
|
Post subject: Re: MLM Install Issues Posted: Mon Dec 19, 2011 5:02 pm |
|
|
 |
| Site Admin |
 |
Joined: Wed Dec 28, 2005 9:13 pm Posts: 6807
|
Quote: 1) Adding lists to subscribe multiple page
First, I guess wherever it says 'list1', I change that to the name of the mailing list. If the mailing list is Beer Beacon, a line such as this
if ( isset( $_REQUEST['list1'] ) && !empty( $_REQUEST['list1'] ) ) { $list1 = $_REQUEST['list1']; }
becomes
if ( isset( $_REQUEST['Beer Beacon'] ) && !empty( $_REQUEST['Beer Beacon'] ) ) { $list1 = $_REQUEST['Beer Beacon']; }
Yes? Not at all. Let the line as is. You only need to change the form, for example: Code: <td height="24"> <select name="list"> <option <?php if ( $list == "My list about ostriches" ) { echo "selected=\"selected\""; } ?> value="My list about ostriches">My list about ostriches</option> <option <?php if ( $list == "My list about lions" ) { echo "selected=\"selected\""; } ?> value="My list about lions">My list about lions</option> <option <?php if ( $list == "My list about apes" ) { echo "selected=\"selected\""; } ?> value="My list about apes">My list about apes</option> </select></td> <td height="24"></td> About your other question, actually I made the form with Adobe Dreamweaver. For example to add a 'gender' field to the form you should add, below the last name table row: Code: <tr height="24"> <td width="40%" height="24"> <div align="right"> <font size="-1" color="#0059a5" face="Verdana"><b>Gender</b></font></div> </td> <td width="15" height="24"></td> <td height="24"><input type="text" name="opt1" size="30" <?php echo " value=\"$opt1\""; ?> /></td> <td height="24"></td> </tr> In parameter checking you add: Code: if ( isset( $_REQUEST['opt1'] ) && !empty( $_REQUEST['opt1'] ) ) { $opt1 = $_REQUEST['opt1']; } and the URL on line 43 should be: Code: $url = $lm_path . "?cmd=$cmd&list=$list&email=$email&firstname=$firstname&lastname=$lastname&opt1=opt1"; If you need more fields do the same with opt2, opt3 and so on.
|
|
| Top |
|
 |
|
trinkaltbier
|
Post subject: Re: MLM Install Issues Posted: Tue Dec 20, 2011 1:18 am |
|
|
Joined: Mon Oct 10, 2011 6:04 pm Posts: 9
|
|
I presume the lists should be in the order that they show in the mlm admin? So if I added a new form, I should make sure I put it in the right place?
<td height="24"> <select name="list"> <option <?php if ( $list == "My list about ostriches" ) { echo "selected=\"selected\""; } ?> value="My list about ostriches">My list about ostriches</option> <option <?php if ( $list == "My list about lions" ) { echo "selected=\"selected\""; } ?> value="My list about lions">My list about lions</option> <option <?php if ( $list == "My list about apes" ) { echo "selected=\"selected\""; } ?> value="My list about apes">My list about apes</option> </select></td> <td height="24"></td>
|
|
| Top |
|
 |
|
trinkaltbier
|
Post subject: Re: MLM Install Issues Posted: Tue Dec 20, 2011 3:07 am |
|
|
Joined: Mon Oct 10, 2011 6:04 pm Posts: 9
|
|
My list looks like this, not like the one above (from subscribe_multiple.php)
<td width="15" height="24"></td> <td height="24"><input type="checkbox" name="list1" value="list1" <?php if ( $cmd == "" || $list1 == "list1" ) { echo "checked=\"checked\""; } ?> /><font size="2" face="Arial"> List1<br /> </font><input type="checkbox" name="list2" value="list2" <?php if ( $cmd == "" || $list2 == "list2" ) { echo "checked=\"checked\""; } ?> /><font size="2" face="Arial"> List2<br /> </font><input type="checkbox" name="list3" value="list3" <?php if ( $cmd == "" || $list3 == "list3" ) { echo "checked=\"checked\""; } ?> /><font size="2" face="Arial"> List3</font></td> <td height="24"><font size="-2" color="#ff9c9c" face="Geneva,Arial,Helvetica,sans-serif">Required</font></td>
|
|
| Top |
|
 |
|
stanbusk
|
Post subject: Re: MLM Install Issues Posted: Tue Dec 20, 2011 9:09 am |
|
|
 |
| Site Admin |
 |
Joined: Wed Dec 28, 2005 9:13 pm Posts: 6807
|
|
This is the example code. What I sent you is the same lines but modified to show other list names. I did that to show you what you have to modify.
|
|
| Top |
|
 |
|
julienjp
|
Post subject: Re: MLM Install Issues Posted: Wed Dec 28, 2011 3:51 pm |
|
|
Joined: Tue Dec 13, 2011 7:24 pm Posts: 24
|
stanbusk wrote: The 'subscribe_auto_single.php' page has a little error in it, use this version instead: Attachment: subscribe_auto_single.php.zip Do you have an updated version of the subscribe_auto_multiple.php? It looks like there might be an error in this file too. After many attemps to modify the page. I decided to start fresh with a completely new install. I tested the original page unmodified and it still give the same error.. Sorry but we can't process your request Please fix the following issues You have to select a list Can you please check and make sure the original file has no bugs in it before I continue trying to get this to work the way I want it to. Thanks so much for your help. Julien
|
|
| Top |
|
 |
Who is online |
Users browsing this forum: No registered users and 0 guests |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|
|
|

|