cyclonecode
Forum Replies Created
-
This seems very strange? What hosting provider are you using? Can you give me a link to the site? If you have (s)ftp/ssh access to the server you should be able to change the permission of the
.htaccessfile manually. Try the following solutions and see if it solves the problem:// Try setting permission to read-write for owner
chmod 0644 .htaccess
// Or also setting the execute permission (only used by some servers)
chmod 0755 .htaccessThis above could also be done using a FTP client, for instance FileZilla, right click on the .htaccess file and choose “File permission” and enter 644 or 755 in the text box and click save, then try to access you site again.
I can try to fix this issue for you, but then you must give me access to the server in question so I can see if I can successfully revert to permission. If this seems fine, please email me the credentials on [email protected]
Forum: Plugins
In reply to: [WP Giosg] wp-giosg.php nopriv typoThis issue is fixed in version 1.0.3.
Forum: Plugins
In reply to: [WP Giosg] wp-giosg.php nopriv typoIt seems like you are correct. Thank you for pointing this out. I will make an update to fix this as soon as possible.
Forum: Plugins
In reply to: [Cision Block] Regulatory filterIt would be really easy to do this by copying the cision-block.php template in to the root of you active theme and modifying it a little bit to check if an item is a regulatory or non-regulatory release. Something like this:
echo ‘<h1>’ . ($item->IsRegulatory ? ‘R’ : ”) . $item->Title . ‘<h1>’;
Forum: Plugins
In reply to: [Custom PHP Settings] Changes not appliedHello
Can you verify that the settings is written to your .htaccess or php.ini file?
Open you .htaccess file and look for the following section:# BEGIN CUSTOM PHP SETTINGS
php_value post_max_size 256M
php_value max_input_vars 5000
php_value upload_max_filesize 128M
php_value max_execution_time 300
# END CUSTOM PHP SETTINGSI am also interested in what hosting provider you are using? It might be an issue with that they don’t allow you to change any settings.
Are your permalinks working as they should? If not then this might be an issue with the webserver configuration, for instance if using apache then you must configure the server to allow override through the use of .htaccess files.
Forum: Plugins
In reply to: [Cision Block] Cision feed into WP postsHm I am not really sure I understand what you are trying to do here? Do you want to just connect a single cision press release to a post in WordPress? If that is the case; this is not possible right now, but it would be simple to implement support for this. The question then is how would such a reference look, will it be a cision press release id, an URL or what do you think? One solution then would be to add a single post shortcode, something like [cision-block-post id=CISION_PRESSRELEASE_ID] or similar.
Forum: Plugins
In reply to: [Cision Block] Cision Block Read moreSorry for the very late response, I have been very busy with work. Is this still an issue? I think you created an admin account for me right? I will have a look into this as soon as possible if it is still a problem.
Forum: Plugins
In reply to: [Cision Block] InstallationshjälpHejsan såg detta först nu. Kontakta mig gärna via e-post [email protected] istället om du behöver hjälp.
Forum: Plugins
In reply to: [Custom PHP Settings] After making a change My site can’t be reachedHello @wasams I would be very interested in knowing what went wrong and how you solved this?
Forum: Plugins
In reply to: [Custom PHP Settings] After making a change My site can’t be reachedHello
It seems like you manage to solve this problem.In cases where you have used the plugin to make changes to your .htaccess file, you could simply remove anything between these markers in the file:
# BEGIN CUSTOM PHP SETTINGS
# END CUSTOM PHP SETTINGS
If you instead are running PHP in cgi mode and the plugin has modified a .user.ini_file then you will need to remove the custom settings from this file and reload your page.
Since you already seemed to have fixed this, I would be very interested in what actually went wrong and how you solved it, since this can be very helpful in the future for others who are facing the same problem.
Regards,
KristerForum: Plugins
In reply to: [Custom PHP Settings] no allowedHello again
Ok, well then I will definitely add an update which also will add the customised settings in
php.inias well as the file specified inuser_ini.filenamein cases where PHP is running in CGI/FCGI mode.
I will let you know when this update is in place.Regards,
KristerForum: Plugins
In reply to: [Custom PHP Settings] no allowedHello
Currently only the ini file that is configured in you
php.iniuser_ini.filenamedirective (by default .user.ini) or the.htaccessfile will be used. I am actually thinking of making an update for this, since some hosting companies are using custom filenames for user defined ini files likephp.iniand so on.When you are saying “and the .ini analisis says it is on /homepages/4/d276499298/htdocs/clickandbuilds/mysite/wp-admin/php.ini” what kind of analysis is this? I mean where do you get this value?
Regards,
KristerForum: Plugins
In reply to: [Cision Block] Regulatory PR does not show in IE and Edge@ricsam There is a “Display mode” field where you can select “Regulatory” in order to show only regulatory press releases. The same can also be done using
view_mode=2in the shortcode.Hope this helps.
Regards,
KristerForum: Plugins
In reply to: [Custom PHP Settings] GoDaddy Upload LimitHello
This might be because they do not allow you to customise the PHP settings using a
.htaccessor.user.inifile. What server are you running? Is this an nginx server then it will probably not work since.htaccessfiles are used by apache and they might not allow custom user ini files. You could easily check if this is the case by changing a value likememory_limit=758Mand then check if this setting is marked as red in the settings table; if not then they probably not allow you to change setting in this way. I would try to send them an email and ask if you are able to modify PHP settings or if they have some restrictions.Looking on this question it seems like you should be able to create your own
php.inifile with customised settings:
https://stackoverflow.com/questions/16140917/how-to-access-the-php-ini-file-in-godaddy-shared-hosting-linuxIf this works then I might actually add an update to the plugin which will create an
php.inifile to support this environment.Would be great if you could check what kind of server you are running from the
wp-admin/tools.php?page=custom-php-settings&tab=php§ion=server-varspage.
Also try checking theUser INI filefrom thewp-admin/tools.php?page=custom-php-settings&tab=php§ion=php-infopage.You are not able to upload the file using FTP/SFTP or something similar?
Regards,
KristerForum: Plugins
In reply to: [Custom PHP Settings] Custom PHP settings – can’t delete pluginI have now added an updated which solves this issue. You should be able to simply update the plugin to version 1.2.6 and then you can delete it successfully.