mccay_a
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 3.1.1. but still HTTP error with flash-uploadAs a test do the following. It may not solve the issue but the result will help me diagnose more
Access your website through what ever mechanism you can. find teh .htaccess file and take a backup of it ( This is critical )
then edit your file and replace everything with the solution 1 lines. if that dont work, try replacing all with solution 2 lines
Regards, MICK
Solution 1
RewriteEngine On
RewriteBase /#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
RewriteRule . index.php [L]<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>AddHandler phpini-cgi .php .htm
Action phpini-cgi /cgi-bin/php5-custom-ini.cgiSolution 2
AddHandler phpini-cgi .php .htm
Action phpini-cgi /cgi-bin/php5-custom-ini.cgiRewriteEngine 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]
RewriteRule . index.php [L]Forum: Fixing WordPress
In reply to: WordPress 3.1.1. but still HTTP error with flash-uploadSorry Squishy. I am a tech guy and a visitor to many forums, and my job role requires me to pick up on sneaky posts that advertise when others dont even realise that they are being led.
In that case, I will actually look through my config and try to find out what I changed to get this working ( I keep record in most part for all fixes I apply to my site )
Regards, MICK
Forum: Fixing WordPress
In reply to: WordPress 3.1.1. but still HTTP error with flash-uploadSquishy, you look like you are trying to advertise a site rather than get help for an issue.
Do you actually need help
Forum: Fixing WordPress
In reply to: WordPress 3.1.1. but still HTTP error with flash-uploadI had solved thsi issue, let me remember and see if i can help
MICK
Forum: Fixing WordPress
In reply to: WordPress 3.1.1. but still HTTP error with flash-uploadI have the same problem, but it is with all files. It worked then i did something and it stopped working
I am working on it and will psot with my fix when i find it, but heres a few brain dumps so that others may have ideas
1) It could be a plugin ( there was a post online stating that a plugin applied a security mod to .htaccess that screwed flash player security rights)
2) .htacces file that works on my old site have module loads for the upload.php file, but this doesnat appear to work on my latest wordpress<IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule>
Regards mccay_A
Forum: Themes and Templates
In reply to: Help with badly written themenever mind – worked that out too. Thanks for the help
Regards, mccay_a
Forum: Themes and Templates
In reply to: Help with badly written themeSome way of Centering the content should work, but i will look myself also
Forum: Themes and Templates
In reply to: Help with badly written themeI was able to edit the footer code and add custom code to add flash player. So seems fine.
One issue I have is that I have set width to be the full width of teh sidebar but I wish it to be slightly smaller so you can see the sides of the window
If you know the answer i would be grateful
?> <!-- Sidebar --> <div class="sidebar sidebar-right"> <object width="160" height="600"> <param name="movie" value="https://loopmasters.postaffiliatepro.com/accounts/default1/banners/160-600-2.swf?clickTAG=http%3A%2F%2Fwww.loopmasters.com%23a_aid%3D4e25f8395c35c%26a_bid%3D1445e46d"> <param name="loop" value="true"/> <param name="menu" value="false"/> <param name="quality" value="medium"/> <param name="wmode" value="Opaque"/> <embed src="https://loopmasters.postaffiliatepro.com/accounts/default1/banners/160-600-2.swf?clickTAG=http%3A%2F%2Fwww.loopmasters.com%23a_aid%3D4e25f8395c35c%26a_bid%3D1445e46d" width="190" height="600" loop="true" menu="false" swLiveConnect="FALSE" wmode="Opaque" allowscriptaccess="always"></embed> </object> </div> <!-- Sidebar -->
Forum: Themes and Templates
In reply to: Help with badly written themeYour a star Clayton
I did notice the encrypted content and dynamic content of the footer, but never thought that they would be lazy enough to use this
I have removed encoded content and will replace with decoded content to my liking. And I may not be a php programmer, but i am a certified ethical hacker, so you can be sure i go through the site with a fine hair comb to ensure no cross site scripting or malicious content
I have solved lower text issue so all that is left now, is reverse page listing at top of page
Regards, mccay_a
Forum: Networking WordPress
In reply to: Multi Site.- Master Site Posts from sub sitesThanks very much. It is exactly what I was looking form
The one good thing about open source software is “where there’s a need, their is someone developing a solution”
Regards, mccay_a
Forum: Networking WordPress
In reply to: Deploy Identical Sub SitesSorry, forgot to tell you plugin
https://www.ads-software.com/extend/plugins/add-cloned-sites-for-wpmu-batch/
Does work with 3.1.2, but generates error. Still seems to work though, but again, I will test tomorrow night
Regards, mccay_a
Forum: Networking WordPress
In reply to: Deploy Identical Sub SitesFound the answer ( or at least I hope I have. )
This plugin created the site, but I have not had the time to test if the categories, links etc copy
I will test and let you know
However, I don’t think it copies content, but as simple export using WordPress and import to new site once you create it should be suffice
I will test and let you know
Regards, mccay_a
Forum: Hacks
In reply to: Double Post PageI was hoping to not be a burden, as I have learnt to make limited changes to php myself, but I am honestly completely lost
What you have provided is the link to the code to create a posts page, based on a category, but i can not find in the code how i would specify the category, and based on the line in this doc “Save this to pageofposts.php and then assign PageofPosts as the Template when creating the action Page:” I get the creation of the php, but what does “assign as the template” mean
I will browse arround for other posts on this topic to try and work it out, but if you have links to more detailed information for novice, or can advise, i would appreciate that
Regards, Alan