Web服务器上未启用Putenv()

时间:2019-03-21 22:45:34

标签: php pimcore pimcore-v5

我尝试使用Pimcore CMS。现在,我尝试将所有文​​件加载到Web服务器。我完成了所有配置,但是当我尝试加载该端时,出现错误,表明未启用componentDidMount() { // get all items via category ID and owner ID const restApi = new API({ url: 'api' }) restApi.createEntity({ name: 'items' }) // api/items/<categoryId>/<ownerId> restApi.endpoints.items.getTwo({ id_a: this.props.categoryId, id_b: this.props.ownerId }).then(({ data }) => this.setState({ appData: data })) } render() { const { classes } = this.props; let classNameHolder = [classes.redAvatar, classes.greenAvatar, classes.blueAvatar, classes.purpleAvatar]; this.state.appData.map(element => { this.state.images.push(element.imageUrl); }); return ( < Card > <CardHeader avatar={ <Avatar aria-label="Recipe" className={classNameHolder[Math.floor(Math.random() * classNameHolder.length)]}> {this.props.userName.charAt(0).toLocaleUpperCase()} </Avatar>} title={this.props.userName} disableTypography={true} /> <CardActionArea disabled={this.state.images.length === 1 ? true : false}> <CardMedia id={this.props.ownerId} className={classes.media} image={this.state.images[this.state.imageIndex]} onClick={this.handleOnClick} /> </CardActionArea> </Card > ); } }

此外,也无法在此服务器上编辑putenv()文件。 php.ini文件甚至还有解决方案?还是我必须更换网络服务器?其他服务器支持吗?

非常感谢

0 个答案:

没有答案