ignivamanish / wordpress-job-manager

Automatically exported from code.google.com/p/wordpress-job-manager
0 stars 0 forks source link

Register page disappeared #214

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Enter http://www.estagioscascavel.com.br/estagios/?page_id=4
2. Click at register
3. Page 404.

What is the expected output? What do you see instead?
Suppousely should be show the register page for new users.

What version of Job Manager are you using?
0.7.12

What version of WordPress are you using?
3.0.1

Please provide any additional information below.
The client noted this error when registering. And there is no error before I 
upgrade for new version. I have none plugins installed, just google statistycs, 
Sitemaps, WP Pagenavi and SI captcha.

Original issue reported on code.google.com by michelle...@unipar.br on 19 Aug 2010 at 8:38

GoogleCodeExporter commented 8 years ago
It seems the register page was somehow deleted. Please run the following query 
on your WordPress database:

INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, 
`post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, 
`ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, 
`post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, 
`guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6, 1, '2010-07-20 02:06:55', '2010-07-20 02:06:55', '', 'Register', '', 
'publish', 'closed', 'closed', '', 'register', '', '', '2010-07-20 02:06:55', 
'2010-07-20 02:06:55', '', 4, 
'http://www.estagioscascavel.com.br/estagios/?page_id=6', 0, 'jobman_register', 
'', 0);

Original comment by pendergast.gary on 19 Aug 2010 at 10:24

GoogleCodeExporter commented 8 years ago
Hello, sweety, thanks for being so helpful.

But... it doesn't work. This query was already inserted before.

Weird, too much. And it's not a problem with theme, because it was functional, 
and i've change to default, and it doesn't work too.

Have some idea?

Original comment by michelle...@unipar.br on 20 Aug 2010 at 12:32

GoogleCodeExporter commented 8 years ago
Huh, the page must be already there - can you send the output of:

SELECT * FROM wp_posts WHERE ID=6;

Original comment by pendergast.gary on 20 Aug 2010 at 12:34

GoogleCodeExporter commented 8 years ago
It's the same that you had send me before.

I'm afraid that site's owner has installed something, and I can't identify...

There is some way to create a new page, and replace 6 for another one?

Original comment by michelle...@unipar.br on 20 Aug 2010 at 12:48

GoogleCodeExporter commented 8 years ago
The problem is that the Register page is a special page that Job Manager uses - 
if you can send me the output of the query in comment 3 (SELECT * FROM wp_posts 
WHERE ID=6;), I can tell you what to do to fix it.

Original comment by pendergast.gary on 20 Aug 2010 at 12:56

GoogleCodeExporter commented 8 years ago
Holly créps xD
I think is that what you want:

-- phpMyAdmin SQL Dump
-- version 3.2.4
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tempo de Geração: Ago 19, 2010 as 09:50 PM
-- Versão do Servidor: 5.1.45
-- Versão do PHP: 5.2.9

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Banco de Dados: `achave_site`
--

-- --------------------------------------------------------

--
-- Estrutura da tabela `wp_posts`
--

CREATE TABLE IF NOT EXISTS `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` text NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1000 ;

--
-- Extraindo dados da tabela `wp_posts`
--

INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, 
`post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, 
`ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, 
`post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, 
`guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(6, 1, '2010-07-20 02:06:55', '2010-07-20 02:06:55', '', 'Register', '', 
'publish', 'closed', 'closed', '', 'register', '', '', '2010-07-20 02:06:55', 
'2010-07-20 02:06:55', '', 4, 
'http://www.estagioscascavel.com.br/estagios/?page_id=6', 0, 'jobman_register', 
'', 0);

Original comment by michelle...@unipar.br on 20 Aug 2010 at 1:01

GoogleCodeExporter commented 8 years ago
I've been looking into this further, it seems there's a bug - in your 
job-manager directory, replace frontend.php with the one attached. This fix 
will also be included in the next release.

Original comment by pendergast.gary on 20 Aug 2010 at 1:11

Attachments:

GoogleCodeExporter commented 8 years ago
It's alive!
It's walking!!!
=D

Thanks a lot! Soon I'll be send to your project Portuguese brazilian language, 
to contribute. Thank you!!! (L)

Original comment by michelle...@unipar.br on 20 Aug 2010 at 1:14