batooo
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Separated cache based on value from PHPI`m using PHP version of ua-parser but they also have c++ version. Its very simple and accurate. Also updates are very often on regex logic.
Why not including into Litespeed, so users can easily use this variables in many situations:
- Separated cache for robots or maybe based on browser family, eq: Chrome
- Also using into plugin, like ‘Use Litespeed Mobile Detector’ for separated views
- Also blocking not-important crawlers eq: If is Spider and family != GoogleBot, return 404
Something similar as your GEO feature.
Hm?
Forum: Fixing WordPress
In reply to: Google Cloud CDNSimple answer:
you cant.Long answer:
You can but you need to manually host your website on google cloud platform. Google Cloud CDN does not support custom origin servers!Best answer:
Try some wordpress hosting company that use google cloud. [providers redacted], they both use google cloud platform.Per the Forum welcome, we reserve the right to close topics like this that mention specific hosts due to the amount of spam that they attract. Please do not mention specific hosts here for any reason. Talking about what attributes to look for is fine, but do not mention hosts by name. Doing so will force us to close this topic. Thanks
- This reply was modified 8 years, 1 month ago by bcworkz. Reason: hosting provider recommendations redacted
Forum: Plugins
In reply to: [Social Like Box and Page by WpDevArt] Problems with SSL HTTPSget free ssl on https://myfreessl.com/ and ask your hosting provider how to install it.
Forum: Plugins
In reply to: [Cloudflare] http to httpsget free ssl on https://myfreessl.com/ and ask your hosting provider how to install it.
Create your ssl for free on https://myfreessl.com/ then contact your server provider how to install.
1. generating rewrite rules in htaccess….
2. Any better way?I need this to be done via code, not manual since i`m making auto wordpress installer.
Forum: Fixing WordPress
In reply to: how to change/delete is proudly powered by WordPress …Forum: Fixing WordPress
In reply to: how to show entries for a categoryForum: Fixing WordPress
In reply to: Change this theme headerlink to site or to header.php and css file
Forum: Fixing WordPress
In reply to: Add flash video to homepage and make it autoplayFirst create new function.
function flashembed($file, $width, $height) {
$swfdir = “https://test.perfectwebtutorials.com//wp-content/themes/default/swf/”; // change to your url, where your swf files are
echo “<OBJECT classid=\”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\”
codebase=\”https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\” WIDTH=$width HEIGHT=$height>
<PARAM NAME=movie VALUE=\”$swfdir/$file.swf\”>
<PARAM NAME=quality VALUE=high>
<PARAM NAME=menu VALUE=false>
<EMBED src=\”$swfdir/$file.swf\” quality=high WIDTH=$width HEIGHT=$height TYPE=\”application/x-shockwave-flash\” PLUGINSPAGE=\”https://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\” menu=\”false\”></EMBED>
</OBJECT>”;
}Then call it anywhere where u cant to insert swf file.
<?php flashembed(filename, 300, 150); ?>
U are done.
Forum: Fixing WordPress
In reply to: Add flash video to homepage and make it autoplayOh, ill record video tutorial about this in 2 hours, check later.
Forum: Fixing WordPress
In reply to: query posts by comment_count and category idThanks a lot man! It works!