Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)
  • halalan

    (@halalan)

    Thanks for the follow up, we look forward to the soon to be updated fix.

    halalan

    (@halalan)

    I also have the same issue with the latest update, I had to ROLL BACK my version of PPOM to a earlier version to get it to work. I hope they fix whatever the simple BUG is!

    Thread Starter halalan

    (@halalan)

    Great! And great plugin I am trying it out on a new site! Keep up the good work, and great response time!

    Thread Starter halalan

    (@halalan)

    I don’t use Akismet. I use SI captcha or Google captcha

    Thread Starter halalan

    (@halalan)

    OKAY, the above is the htaccess file all my sites use, it was set up to protect my sites from ongoing malicious attacks and has worked. But, it now is causing a conflict with the new MEDIA UPLOAD. When I edited the above file and just used the below in the htaccess file it all worked!

    # 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

    However, I wish to just know what edit I could make to the original htaccess file if anyone can figure it out please post it here.

    Thread Starter halalan

    (@halalan)

    I confirmed on the Artisteer forums that no one else is having any issues in regads to this.
    I do have an extensive .htaccess file that was written to help stop attacks against my site. My site has been working just fine with it for well over a year.

    Is it possible some code in it, is causing problems with the new Media Uploader?

    Here is the code to that file for those tech savy folks:

    # Use PHP5 as default
    AddHandler application/x-httpd-php5 .php
    
    Options -Indexes
    
    ## RewriteEngine enabled
    RewriteEngine On
    
    # redirect_to= string fix - fixes issues with plugins that use the redirect_to= string
    RewriteCond %{QUERY_STRING} redirect_to=(.*) [NC]
    RewriteRule . - [S=30]
    
    ## Disallow access to htaccess.txt, configuration.php, configuration.php-dist and php.ini
    RewriteRule ^(htaccess\.txt|configuration\.php(-dist)?|php\.ini)$ - [F]
    
    RewriteCond %{QUERY_STRING} \.\.\/\.\.\/ [NC,OR]
    RewriteCond %{QUERY_STRING} \/etc\/passwd [NC,OR]
    RewriteCond %{QUERY_STRING} \.txt?? [NC,OR]
    RewriteCond %{QUERY_STRING} proc\/self\/environ [OR]
    RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
    RewriteCond %{QUERY_STRING} base64_decode.*\(.*\) [OR]
    RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
    RewriteCond %{QUERY_STRING} (\<|%3C).*iframe.*(\>|%3E) [NC,OR]
    #RewriteCond %{QUERY_STRING} ^.*(\[|\]|\(|\)|<|>|?|"|;|\?|\*|=$).* [NC,OR]
    RewriteCond %{QUERY_STRING} ^.*("|'|<|>|\|{||).* [NC,OR]
    RewriteCond %{QUERY_STRING} ^.*(%24&x).* [NC,OR]
    RewriteCond %{QUERY_STRING} ^.*(%0|%A|%B|%C|%D|%E|%F|127\.0).* [NC,OR]
    RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
    RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
    RewriteCond %{QUERY_STRING} ^(.*)cPath=https://(.*)$ [NC,OR]
    RewriteCond %{QUERY_STRING} ^(.*)/self/(.*)$ [NC,OR]
    RewriteCond %{QUERY_STRING} ^.*(\[|\]|\(|\)|<|>).* [NC,OR]
    RewriteRule ^(.*)$ index.php [R=404,L]
    
    ## File injection protection
    #RewriteCond %{REQUEST_METHOD} GET
    #RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]\=http:\/\/(.*)
    #RewriteRule ^(.*)$ - [R=404,L]
    
    ## SQLi first line of defense
    ## May cause problems on legitimate requests
    RewriteCond %{QUERY_STRING} concat.*\( [NC,OR]
    RewriteCond %{QUERY_STRING} union.*select.*\( [NC,OR]
    RewriteCond %{QUERY_STRING} union.*all.*select.* [NC]
    RewriteCond %{QUERY_STRING} ^.*(globals|encode|localhost|loopback).* [NC,OR]
    RewriteCond %{QUERY_STRING} ^.*(execute|exec|sp_executesql|request|select|insert|union|declare|drop|delete|create|alter|update|order|char|set|cast|convert|meta|script|truncate).* [NC]
    RewriteRule ^(.*)$ - [R=404,L]
    
    <FilesMatch "^(wp-config\.php|install\.php|\.htaccess|php\.ini|php5\.ini|readme\.html)">
     Deny from all
    # Allow from 88.55.66.200
    </FilesMatch>
    
    # Stream Video Player - Adding FLV Videos is Blocked By BPS
    RewriteCond %{REQUEST_URI} ^/wp-content/plugins/stream-video-player/ [NC]
    RewriteRule . - [S=30]
    
    ### Add handlers - Breaks themes
    #AddHandler php-cgi .php .inc
    #AddType 'text/html; charset=UTF-8' .html
    #AddType text/plain .ini .sh .bsh .bash .awk .nawk .gawk .csh .var .c .in .h .asc .md5 .sha .sha1
    #RewriteCond %{REQUEST_FILENAME} !-f  # Existing File
    #RewriteCond %{REQUEST_FILENAME} !-d  # Existing Directory
    #RewriteRule . /index.php [L]
    
    ## Denies any direct request for files in wp-content ending in .php with a 403 Forbidden (may break plugins/themes)
    #RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /wp-content/.*$ [NC]
    #RewriteCond %{REQUEST_FILENAME} ^.+\.(php|html|htm|txt)$
    #RewriteRule .* - [F,NS,L]
    
    ## Denies any direct request for files wp-includes ending in .php with a 403 Forbidden
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /wp-includes/.*$ [NC]
    RewriteCond %{THE_REQUEST} !^[A-Z]{3,9}\ /wp-includes/js/.+/.+\ HTTP/ [NC]
    RewriteCond %{REQUEST_FILENAME} ^.+\.php$
    RewriteRule .* - [F,NS,L]
    
    ## Blocks some common exploits with a 403 Forbidden
    RewriteCond %{REQUEST_URI} !^/(wp-login.php|wp-admin/|wp-content/plugins/|wp-includes/).* [NC]
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ ///.*\ HTTP/ [NC,OR]
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*\?\=?(http|ftp|ssl|https):/.*\ HTTP/ [NC,OR]
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*\?\?.*\ HTTP/ [NC,OR]
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*\.(asp|ini|dll).*\ HTTP/ [NC,OR]
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*\.(htpasswd|htaccess|aahtpasswd).*\ HTTP/ [NC]
    RewriteRule .* - [F,NS,L]
    
    ## Denies any request for a URL containg characters other than "a-zA-Z0-9.+/-?=&"
    #RewriteCond %{REQUEST_URI} !^/(wp-login.php|wp-admin/|wp-content/plugins/|wp-includes/).* [NC]
    #RewriteCond %{THE_REQUEST} !^[A-Z]{3,9}\ [a-zA-Z0-9\.\+_/\-\?\=\&]+\ HTTP/ [NC]
    #RewriteRule .* - [F,NS,L]
    
    ## Denies any POST request with a content type other than application/x-www-form-urlencoded|multipart/form-data
    RewriteCond %{REQUEST_METHOD} =POST
    RewriteCond %{HTTP:Content-Type} !^(application/x-www-form-urlencoded|multipart/form-data.*(boundary.*)?)$ [NC]
    RewriteCond %{REQUEST_URI} !^/(wp-login.php|wp-admin/|wp-content/plugins/|wp-includes/).* [NC]
    RewriteRule .* - [F,NS,L]
    
    #RewriteEngine On
    #RewriteCond %{REQUEST_METHOD} POST
    #RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
    #RewriteCond %{HTTP_REFERER} !.*yourdomain.com.* [OR]
    #RewriteCond %{HTTP_USER_AGENT} ^$
    #RewriteRule (.*) https://%{REMOTE_ADDR}/$ [R=301,L]
    
    # 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 halalan

    (@halalan)

    Added note: Could it have anything to do with the fact that I run artisteer in a subdirectory not the main directory domain.

    Example. https://www.mysite.com is the main domain but my wordpress is installed in https://www.mysite.com/wordpress however everthing has always ran correctly until the 3.5 upgrade.

    Thread Starter halalan

    (@halalan)

    I created the site with Artisteer version 3 for those that may know more about it.

    Thread Starter halalan

    (@halalan)

    Good news for anyone else with this strange issue of the VISUAL editor not showing up when your trying to add a new POST or PAGE. The guys have issued a newer .04.1.beta release that did FIX THE ISSUE !

    Great work and quick response time. I highly recommend this cool plugin and the guys who work on it.

    Thread Starter halalan

    (@halalan)

    Okay, I just emailed directly two snap shots of the difference with the plugin activated and deactivated.

    I am using wordpress 3.04 latest version and php5 on server with bluehost.

    Additionally…if this helps. I switched over to the Twenty 1.1 standard theme that comes with wordpress and it DID NOT fix it either.

    And..if you click to EDIT a exhisting page or post the visual editor icons all show up fine. ONLY WHEN YOUR ADDING A NEW PAGE OR POST does it cause the problem.

    Hopefully this may help.. :-} Great plugin, let me know what else I can do to try to pinpoint the..minor <– issue.

    I finally got mine to work for the FIRST time once I went and set my memory in the MAIN php.ini file to 128M. In some versions of wordpress it has its own memory setting. Is it possible even though you set it in the Main php it is getting reset within the wordpress directory? Just a thought.

    In wordpress it isn;t in the PHP file its in another file name where memory is set.. I JUST CANT REMEMBER IT RIGHT NOW ?? Just a thought to check into.

    Just upgraded and still same problem when trying to view the PDF file. I get the:

    This is the error message: “Adobe Reader could not open ‘myvoucher.pdf’ because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn’t correctly decoded).

    Maybe I need to delete the plugin completely and try to reinstall? I will try it just for the heck of it.

    I am still not having any luck, I tried the new update large file, but it would not properly activate in the backend, I reloaded the older version and get that now memory error. Only plugin to do that to me.

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 7864320 bytes) in /home1/ctoanet/public_html/mainstreethardy/wp-content/plugins/voucherpress/tcpdf/unicode_data.php on line 16485

    I just emailed you a sample pdf file from my site that won’t open. I also have tried every font choice just to see..NO LUCK. I am sure it is something simple. One of those..that make you kick yourself once it is figured out. Good luck..great plugin..looking forward to test out a working version.

    I just updated wordpress to newest release, had hoped just maybe that might help..NOPE. Oh well.. ANYBODY FIGURE OUT A FIX TO VIEW THE PDF FILE??

    ERROR I STILL GET WITH ALL FONT CHOICES WHEN PDF TRIES TO OPEN:

    This is the error message: “Adobe Reader could not open ‘myvoucher.pdf’ because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn’t correctly decoded).

    Incentive..GET IT WORKDING I WILL MAKE A $25 DONATION !!! Others join in and lets motivate the developer..

Viewing 15 replies - 1 through 15 (of 20 total)