jeantech
Forum Replies Created
-
Forum: Installing WordPress
In reply to: WordPress 2.5 plugins and manage tab not workingWell i found the cause of my problem with the default theme !!! ??
I’m using the french version of WordPress 2.5 and in this release they have change the encoding of the style.css file from ISO to UTF-8.
So i put back the file in ISO and Voila !
The theme page now work perfectly !
Forum: Installing WordPress
In reply to: Fresh install of 2.5 but can’t make postsI have the same problem on a test site using Windows Server 2003 and IIS everything was fine until version 2.5.
The only solution i found so far was to remove the anchor tag in the description of the default theme.
Follow the link
https://www.ads-software.com/support/topic/164503?replies=6Forum: Installing WordPress
In reply to: WordPress 2.5 plugins and manage tab not workingI still can’t find the source of the problem in the code but here is my changes to make version 2.5 work.
To make the “Themes” page and the “Page Template Box” in the edit “Page” fonctionnal, you have to remove the anchor tag in the Description of the default theme.
(wp-content/default/style.css)
[before]
Description: The default WordPress theme based on the famous Kubrick.
[after]
Description: The default WordPress theme based on the famous Kubrick.
To make the “Plugins” page fonctionnal, you have to remove every anchor tag in the Description of every plugins and also remove the “Plugin URI” and “Author URI” reference.
(wp-content/plugins/hello.php)
[before]
Plugin Name: Hello Dolly
Plugin URI: https://www.ads-software.com/#
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
Author: Matt Mullenweg
Version: 1.5
Author URI: https://photomatt.net/
[after]
Plugin Name: Hello Dolly
Description: This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from <cite>Hello, Dolly</cite> in the upper right of your admin screen on every page.
Author: Matt Mullenweg
Version: 1.5
(wp-content/plugins/askimet/askimet.php)
[before]
Plugin Name: Akismet
Plugin URI: https://akismet.com/
Description: Akismet checks your comments against the Akismet web service to see if they look like spam or not. You need a WordPress.com API key to use it. You can review the spam it catches under "Comments." To show off your Akismet stats just put <?php akismet_counter(); ?> in your template. See also: WP Stats plugin.
Version: 2.1.4
Author: Matt Mullenweg
Author URI: https://photomatt.net/
[after]
Plugin Name: Akismet
Description: Akismet checks your comments against the Akismet web service to see if they look like spam or not. You need a WordPress.com API key to use it. You can review the spam it catches under "Comments." To show off your Akismet stats just put <?php akismet_counter(); ?> in your template. See also: WP Stats plugin.
Version: 2.1.4
Author: Matt Mullenweg
Forum: Installing WordPress
In reply to: WordPress 2.5 plugins and manage tab not workingI’m getting close but i need some help…
…all my problems are connected, i can’t access the “Themes” page because WordPress is stuck trying to read the header infos inside the “styles.css” file. Same thing with the “Plugins”. The “Page Template Box” in the new and edit page is also reading infos from inside the file.
Can someone point me in the right direction !?!
With version 2.3.3 only the Read and Write permissions was needed… must i change something with version 2.5 ???
Forum: Installing WordPress
In reply to: WordPress 2.5 plugins and manage tab not workingHum… after a few test i found that the “Page Template Box” is causing the problem in the page form (edit-page-form.php). When the code is not there the page doesn’t hang anymore. So “get_page_template” or “page_template_dropdown” is to blame but why ???
Still no luck with the access to the “Theme” and “Plugin” page from the dashboard…
Forum: Installing WordPress
In reply to: WordPress 2.5 plugins and manage tab not workingI’ve got the same problem with a new install of version 2.5 on a Windows Server 2003 (IIS 6).
Version 2.3.3 is running fine !
I can’t also write or edit a page, the edit page start to load but hang and part of the page is missing. I’m locking the server for several minutes until the process stop… weird ??? Everything else is okay…
…I’m lost !!!