steelz09
Forum Replies Created
-
Forum: Plugins
In reply to: autoblogging / rss feeds help pleasebump
Forum: Installing WordPress
In reply to: Install WordPress on different domainsJosh,
Thanks!
That was easy and worked flawlessly.
Forum: Plugins
In reply to: Twiiter Feed Pluginbump…anyone have a recommendation?
Forum: Fixing WordPress
In reply to: 404 – Page Not Found Error When PostingI’ve seem this problem both with and without exec-php. But lately it seems like its only php causing the problem?
Forum: Fixing WordPress
In reply to: 404 – Page Not Found Error When Postingdoes nobody respond to these threads or does nobody know the answer?
Forum: Fixing WordPress
In reply to: 404 – Page Not Found Error When PostingThis is still a major problem for me.. does anyone have a resolution?
For example, I try to post a page (w/ php code, using exec-php) with the following contents:
<?php
$dbhost = “placeholder”;
$dbuser = “placeholder”;
$dbpass = “placeholder”;$connection = mysql_connect($dbhost, $dbuser, $dbpass) or die(‘Error connecting to database’);
$dbname = ‘dbname’;if (!mysql_select_db($dbname, $link)) {
echo ‘Could not select database’;
exit;
}
$sql = “fgsgdgdgfsgsdfgsgdfgsdgsdgfgsdgdsgs”;?>
^^^^^^^ The ABOVE WORKS AND ALLOWS ME TO SAVE THE PAGE ^^^^^^
Then I try to modify the above page and do this (JUST A MINOR CHANGE)
<?php
$dbhost = “placeholder”;
$dbuser = “placeholder”;
$dbpass = “placeholder”;$connection = mysql_connect($dbhost, $dbuser, $dbpass) or die(‘Error connecting to database’);
$dbname = ‘planetst_main’;if (!mysql_select_db($dbname, $link)) {
echo ‘Could not select database’;
exit;
}
$sql = “SELECT * FROM TABLENAME ORDER BY COLNAME ASC”;?>
^^^^^^^ WHEN I TRY TO SAVE THIS I GET A 404 ERROR PAGE NOT FOUND. THIS HAPPENS WHEN I TRY TO POST THE PAGE OR SAVE IT AS A DRAFT. THEN IT LOGS ME OUT OF THE ADMIN PANEL.. ^^^^^^
Does anyone have any experience with this type of error(s). Very strange.. This should cause an error. Very frustrating!
Any help would be greatly appreciated.
Regards,
John
Forum: Fixing WordPress
In reply to: 404 – Page Not Found Error When PostingShane,
If it was a permissions problem why would it only occur.. sometimes?
For example, I could be writing an article and save it as a draft and it works. Then, i’ll write a little more and save (following the same process) and then I get the 404 error.
Any thoughts?
Thanks,
John
Forum: Fixing WordPress
In reply to: 404 – Page Not Found Error When Postingbump
Forum: Fixing WordPress
In reply to: Embedding PHP, etc into posts / pagesThank you.