Uploading flash flipbook to mu wordpress site

Upload your files over FTP to some dedicated location, like wp-content/flashbook/ or wp-content/uploads/flashbook/, and manually include the markup in your page. Presumably, the Flash only runs on one page so this shouldn’t be too cumbersome. Actually embedding Flash isn’t as simple as linking to it, but there is plenty of information on the web. This … Read more

How to change archieve frequency of the media file in uploads folder for wordpress blog

Assuming you want to set your weekly changing subdirs like, eg ‘2013/W35’ /where 35 stands for 35th week of 2013 (‘W’ param of php date() function), you can use: add_filter(‘upload_dir’, ‘set_folder_to_week’, 999); function set_folder_to_week ( $upload_data ) { $y = date(‘Y’); $w = ‘W’ . date(‘W’); $subdir = “/$y/$w”; $dir = $upload_data[‘basedir’] . $subdir; $url … Read more

Embed HTML5 files/subfolders in post?

This plugin should do exactly what you’re looking for: http://wordpress.org/plugins/shortcurl/ it will allow you to embed a shortcode in your post that should go grab external content and place it exactly how you’d like it to. Since it’s not an iFrame, you should also be able to style the content appropriately without much issue (if … Read more

Add SWF file to wordpress through custom template

wordpress is not alowing me to upload the swf file into the media library Actually you can insert this code to the functions.php: add_filter(‘upload_mimes’, ‘add_custom_upload_mimes’); function add_custom_upload_mimes($existing_mimes){ $existing_mimes[‘swf’] = ‘text/swf’; //allow swf files return $existing_mimes; } Then you try to upload your swf file to the media library. As for homepage, you can install a … Read more

Issue when uploading past 8MB?

In your php.ini make sure you’re changing both of the following lines. upload_max_filesize = 250M post_max_size = 250M If you are using FastCGI as your PHP engine you’ll also need to up its limit in Apache. Try adding FcgidMaxRequestLen to your VirtualHost (see http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html#fcgidmaxrequestlen for more info on the directive). Finally, if you’re on NGINX … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)