Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter krizzel

    (@krizzel)

    ah found it in your description page, its predefined, thanks! How about toggle / yes/no fields?

    Thread Starter krizzel

    (@krizzel)

    ok, looks easy enough, where do you define [pcustom] though, or is that a predefined shortcode?

    Thread Starter krizzel

    (@krizzel)

    perfect, before I purchase the addon, can you please clarify how the setup would work. For example:

    – I have 2 custom fields custom_a & custom_b that I display when writing a post and manually fill with content for every post

    – I want to submit posts by email using your plugin and populate those 2 fields just as I would do when filling them manually while writing the post in the wordpress editior

    How would I implement this with your plugin?

    Thanks a lot!!

    Thread Starter krizzel

    (@krizzel)

    ive put all details in a new thread as i changed my code a bit and this is getting too unstructured. This can be closed.

    Thread Starter krizzel

    (@krizzel)

    Actually i was missing a part from my htaccess file, here is the complete content:

    #Made Multi-Site with Multi-Site Enabler 1.5#
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    
    ## EXPIRES CACHING ##
    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/jpg "access 1 year"
    ExpiresByType image/jpeg "access 1 year"
    ExpiresByType image/gif "access 1 year"
    ExpiresByType image/png "access 1 year"
    ExpiresByType text/css "access 1 month"
    ExpiresByType application/pdf "access 1 month"
    ExpiresByType text/x-javascript "access 1 month"
    ExpiresByType application/x-shockwave-flash "access 1 month"
    ExpiresByType image/x-icon "access 1 year"
    ExpiresDefault "access 2 days"
    </IfModule>
    ## EXPIRES CACHING ##
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
    Thread Starter krizzel

    (@krizzel)

    Doesnt work for me, it always redirect to “http://sg.applebun.com/cgi-sys/defaultwebpage.cgi&#8221;

    I have no idea why, again, the single post pages, dashboard etc on sg.applebun.com work, just the index.php immediately goes to above address.

    – DNS Wildcard is set and pointing at public html folder which is the root install of wordpress
    – htaccess file is changed accordingly
    – wp-config file is changed accordingly
    – blog.dir is created in wp-content
    – I’ve flushed my DNS Memory multiple times

    Even if i call http://sg.applebun.com/index.php directly -> goes to http://sg.applebun.com -> goes to above error

    This is my htaccess content:

    #Made Multi-Site with Multi-Site Enabler 1.5#
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    
    ## EXPIRES CACHING ##
    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType image/jpg "access 1 year"
    ExpiresByType image/jpeg "access 1 year"
    ExpiresByType image/gif "access 1 year"
    ExpiresByType image/png "access 1 year"
    ExpiresByType text/css "access 1 month"
    ExpiresByType application/pdf "access 1 month"
    ExpiresByType text/x-javascript "access 1 month"
    ExpiresByType application/x-shockwave-flash "access 1 month"
    ExpiresByType image/x-icon "access 1 year"
    ExpiresDefault "access 2 days"
    </IfModule>
    ## EXPIRES CACHING ##

    This is my wp-config content:

    define(‘WP_ALLOW_MULTISITE’, true);
    define ('MULTISITE', '1');
    define ('SUBDOMAIN_INSTALL', '1');
    define ('DOMAIN_CURRENT_SITE', 'applebun.com');
    define ('PATH_CURRENT_SITE', '/');
    define ('SITE_ID_CURRENT_SITE', 1);
    define ('BLOG_ID_CURRENT_SITE', 1);
    $base = '/';

Viewing 6 replies - 1 through 6 (of 6 total)