Jump to content

snoopytamp

Members
  • Posts

    12
  • Joined

  • Last visited

Posts posted by snoopytamp

  1. I agree with Neil Johnson that the code database of wordpress is a mess. I suggest you create your own and do the calculation on your own and not rely on a wordpress plugin. i tried using a certain plugin before for a client's website. it's such a pain in the a** when the plugin has a bug or something.

  2. I purchased the Premium html email plugin

    But it seems like this plugin isn't finished yet? When I activated it, all my emails got the same template, so that the same email goes out to the customer at every stage of the shop progress and to the shop owner telling that there is a new order.

    I can see that the plugin includes lhej-options-no-tabs.php in the option page. There is a file called lhej-options.php that have tabs for all the different emails, I tried to change the lemonsky.php to include lhej-options.php instead of lhej-options-no-tabs.php, but that didnt work.

    Am I doing something wrong? Or are you selling a plugin that isn't finished developed yet?

    Are there also a documentation for this plugin explaining which codes that are supported (%order_totals% etc) ?

     

    i think the best way that you can do is to contact the developer of that plugin. you have not mentioned what plugin is it, so I can't really say if it's finished or not yet.

  3. hi guys. i have problems. when i rotate my screen for a landscape view, the controls get lost. how to fix it? this is my code

     

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".TeamActivity" >

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_marginTop="10dp">

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Home Club" />

    <EditText
    android:id="@+id/editText1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:ems="10" >

    <requestFocus />
    </EditText>
    </LinearLayout>
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:orientation="vertical" >

    <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Home Team" />

    <EditText
    android:id="@+id/editText2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:ems="10" />
    </LinearLayout>
    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:orientation="vertical" >

    <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Away Club" />

    <EditText
    android:id="@+id/editText3"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:ems="10" />
    </LinearLayout>

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:orientation="vertical" >

    <TextView
    android:id="@+id/textView3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Away Team" />

    <EditText
    android:id="@+id/editText4"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:ems="10" />
    </LinearLayout>

    <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="10dp"
    >

    <Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="bottom"
    android:layout_alignParentRight="true"
    android:onClick="WeatherConditionsActivity"
    android:text="Next" />

    <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="bottom"
    android:layout_alignParentLeft="true"
    android:onClick="OpenVenueActivity"
    android:text="Back" />
    </RelativeLayout>

    </LinearLayout>

  4. I've encountered a small hand full of servers in the past that due to some kind of incorrect configuration have problem routing to themselves, you could be seeing something like that. If you have SSH access to the server, login and try grabbing the file with wget or the curl commandline tool. Check to make sure the domain resolves properly. Check the firewall rules to see if maybe there is a rule blocking the traffic.

    I've also encountered the same problem and like what kicken did, I checked the firewall. Found out that it was just the firewall blocking the traffic.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.