Recent content by armaclans

  1. armaclans

    Creating pages inside a plugin

    Is it possible to create a page inside a plugin? How would I go about doing that?
  2. armaclans

    Creating a homepage that doesn't have rankings

    I have a plugin that I am writing to go with my theme. I want to override the index so that {$content} is not rankings but instead a file that I created in the plugins folder $TMPL['content'] = $this->do_plugin_skin('./plugins/ClanlistThemePlugin','homepage'); I started playing with adding an...
  3. armaclans

    1.4 changelog

    Thank you sir!
  4. armaclans

    1.4 changelog

    Is there going to be a changelog sometime soon of the visiolist update 1.4?
  5. armaclans

    Lost password and Premium notifications

    I believe for security reasons Google SMTP is blocked from sending out emails on my hosting box, when I found this out, I did a very bad thing and changed the code to a different email instead of just changing the email in Visiolist admin. Now it's weird to hear about the delayed email, while...
  6. armaclans

    Lost password and Premium notifications

    I did some extreme digging, and found this, on line 164 in "sources/misc/skin.php" }else{ $headers = 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/plain; charset=UTF-8' . "\r\n"; $headers .= "From: {$CONF['list_name']}...
  7. armaclans

    Lost password and Premium notifications

    temp.armaclans.com/email1.php <?php mail('armaclans@gmail.com', 'the subject', 'the message', null,'-fme@thedevinmiller.com'); ?> temp.armaclans.com/email2.php <?php $to = 'armaclans@gmail.com'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: me@thedevinmiller.com' . "\r\n"...
  8. armaclans

    Lost password and Premium notifications

    Yes all SMTP boxes are empty
  9. armaclans

    [Buy Premium] - Feature not secure

    One more step, If you go to your skin, "join_premium_review.html" there is a line of code that calls the paypal submit form, <form name="pp_value" action="https://www.paypal.com/cgi-bin/webscr" method="post"> needs to be changed to <form name="pp_value"...
  10. armaclans

    Lost password and Premium notifications

    By admin settings are you talking about hosting admin settings or visiolist.. and if you are talking about Visiolist, I do not see any option that says enable SMTP Also, am I doing something wrong with paypal.. I just tested Auto Approve Premium Members, and created a sandbox account, went...
  11. armaclans

    Lost password and Premium notifications

    Ok I tried asking hostprovider - "bluehost" they didnt understand what I was trying to ask. I have my own dedicated box, so I can see the error logs, and nothing shows up when the lost password function is triggered. ALSO, when signing up, the email is never sent out saying welcome.. I...
  12. armaclans

    Lost password and Premium notifications

    Awesome, And I cannot see that to be an issue with email notfications, not only do we have the best of the best hosting, but also with a company that is extremely popular... And I have tested the lost password with multiple emails, hotmail, google, yahoo, etc.. nothing in either spam or inbox...
  13. armaclans

    Lost password and Premium notifications

    To buy premium, a user is directed to paypal, once the transaction is complete, the admin "us" has a notifier in the admin panel of how many premium members need to be approved... Occasionally, users will pay for premium and we will get the paypal notification, but we do not get notified in the...
  14. armaclans

    If value is found in array.

    I have a custom join field with a tag {$acf_hoursop}. it is checkboxes This field has: internal values, mon tue wed thurs fri sat sun If I want to check if a value exists wouldn't the code be a simple if in array statement? if (in_array('mon', $TMPL['acf_hoursop'])) {...
Top